From a029ecc8f4e810333d9ff0908e415e0e661ec295 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 30 Apr 2024 17:20:11 +0200 Subject: [PATCH 001/119] chore(config/graph): add decentralized host config, update linea v3 --- config/graph/src/index.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index aab7a325dd..54cb5a265c 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -126,6 +126,11 @@ export const GOLDSKY_COMMUNITY_HOST = export const WAGMI_METIS_HOST = 'metis.graph.wagmi.com/subgraphs/name' export const METIS_0XGRAPH_HOST = 'metisapi.0xgraph.xyz/subgraphs/name' +const SUSHI_DOMAIN_RESTRICTED_API_KEY = '5d5d00365d2b8f675e12952d6eb5b9b0' +export const DECENTRALIZED_NETWORK_HOST = `https://gateway-arbitrum.network.thegraph.com/api/${ + process.env['SUSHI_GRAPH_KEY'] ?? SUSHI_DOMAIN_RESTRICTED_API_KEY +}/subgraphs/id/` + export const CHAIN_NAME: Record = { [ChainId.ARBITRUM]: 'Arbitrum', [ChainId.AVALANCHE]: 'Avalanche', @@ -358,7 +363,7 @@ export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v3/v3-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushi-v3/v3-core-fix`, [ChainId.BASE]: `${STUDIO_HOST}/v3-base/v0.0.1`, - [ChainId.LINEA]: `${LINEA_HOST}/sushi-v3/v3-linea`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/E2vqqvSzDdUiPP1r7PFnPKZQ34pAhNZjc6rEcdj3uE5t`, [ChainId.SCROLL]: `${STUDIO_HOST}/v3-scroll/v0.0.1`, [ChainId.KAVA]: `${KAVA_HOST}/sushi-v3/v3-kava`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v3-metis`, From f457ce1e54f8ffee344a8e1dd8c13b3cad63f799 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 30 Apr 2024 19:23:39 +0200 Subject: [PATCH 002/119] chore(config/graph): add decentralized host config, update linea v3 --- config/graph/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 54cb5a265c..67c48d5aec 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -127,9 +127,9 @@ export const WAGMI_METIS_HOST = 'metis.graph.wagmi.com/subgraphs/name' export const METIS_0XGRAPH_HOST = 'metisapi.0xgraph.xyz/subgraphs/name' const SUSHI_DOMAIN_RESTRICTED_API_KEY = '5d5d00365d2b8f675e12952d6eb5b9b0' -export const DECENTRALIZED_NETWORK_HOST = `https://gateway-arbitrum.network.thegraph.com/api/${ +export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${ process.env['SUSHI_GRAPH_KEY'] ?? SUSHI_DOMAIN_RESTRICTED_API_KEY -}/subgraphs/id/` +}/subgraphs/id` export const CHAIN_NAME: Record = { [ChainId.ARBITRUM]: 'Arbitrum', From ed63e458b7a65376c0f9434b95ec89b39d71467b Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 30 Apr 2024 19:56:08 +0200 Subject: [PATCH 003/119] chore: use linea subgraphs on decentralized network --- config/graph/src/index.ts | 7 +++---- jobs/pool/cloudbuild.yaml | 2 ++ 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 67c48d5aec..0bf7e08224 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -114,7 +114,6 @@ export const FILECOIN_HOST = 'sushi.laconic.com/subgraphs/name' export const STUDIO_HOST = 'api.studio.thegraph.com/query/32073' export const THUNDERCORE_HOST = 'graph-node.thundercore.com/subgraphs/name' export const CORE_HOST = 'thegraph.coredao.org/subgraphs/name' -export const LINEA_HOST = 'graph-query.linea.build/subgraphs/name' export const HAQQ_HOST = 'haqq.graph.p2p.org/subgraphs/name' export const PCS_STUDIO_HOST = 'api.studio.thegraph.com/query/45376' export const SUSHI_GOLDSKY_HOST = @@ -198,7 +197,7 @@ export const SUBGRAPH_HOST: Record = { [ChainId.THUNDERCORE]: THUNDERCORE_HOST, [ChainId.CORE]: CORE_HOST, [ChainId.BASE]: STUDIO_HOST, - [ChainId.LINEA]: LINEA_HOST, + [ChainId.LINEA]: DECENTRALIZED_NETWORK_HOST, [ChainId.SCROLL]: STUDIO_HOST, [ChainId.FILECOIN]: FILECOIN_HOST, [ChainId.HAQQ]: HAQQ_HOST, @@ -277,7 +276,7 @@ export const BLOCKS_SUBGRAPH_URL: Record = { [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushiswap/blocks-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushiswap/blocks-core`, [ChainId.BASE]: `${STUDIO_HOST}/blocks-base/v0.0.1`, - [ChainId.LINEA]: `${LINEA_HOST}/sushiswap/blocks-linea`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/4rj8wdVvkDGzj9w9UfT48zyXGQtLbULW4ygxDBG9Xza1`, [ChainId.SCROLL]: `${STUDIO_HOST}/blocks-scroll/v0.0.1`, [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/blocks`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/blocks-haqq`, @@ -341,7 +340,7 @@ export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/sushiswap-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushi-v2/sushiswap-core`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/sushiswap-haqq`, - [ChainId.LINEA]: `${LINEA_HOST}/sushiswap/sushiswap-linea`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/9ZQV5c7AG2bxp4TqBav73WADLVhixQahCQk5n4uoCgxm`, [ChainId.POLYGON_ZKEVM]: `${STUDIO_HOST}/v2-polygon-zkevm/v0.0.1`, [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-blast/gn`, } as const diff --git a/jobs/pool/cloudbuild.yaml b/jobs/pool/cloudbuild.yaml index 8563cfbee2..7a01ad053b 100644 --- a/jobs/pool/cloudbuild.yaml +++ b/jobs/pool/cloudbuild.yaml @@ -19,6 +19,7 @@ steps: - name: gcr.io/google.com/cloudsdktool/cloud-sdk env: - 'DATABASE_URL=${_DATABASE_URL}' + - 'SUSHI_GRAPH_KEY=${_SUSHI_GRAPH_KEY}' args: - run - deploy @@ -28,6 +29,7 @@ steps: - '--region' - us-central1 - '--set-env-vars=DATABASE_URL=$_DATABASE_URL' + - '--set-env-vars=SUSHI_GRAPH_KEY=$_SUSHI_GRAPH_KEY' id: Update Cloud Run Service entrypoint: gcloud timeout: 3600s From c27595c882ba16555199590f5cb0bc9aac3b4522 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 21 May 2024 11:17:00 +0200 Subject: [PATCH 004/119] feat(config/graph): update hosted service/studio to use decentralized network subgraphs --- config/graph/src/index.ts | 193 +++++++++++++++++++++++--------------- 1 file changed, 116 insertions(+), 77 deletions(-) diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 2f6f2669ef..2cf0d6f328 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -237,53 +237,54 @@ export const isBentoBoxChainId = ( ): chainId is BentoBoxChainId => BENTOBOX_ENABLED_NETWORKS.includes(chainId as BentoBoxChainId) -export const BENTOBOX_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushiswap/bentobox-ethereum`, - [ChainId.POLYGON]: `${GRAPH_HOST}/sushiswap/bentobox-polygon`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushiswap/bentobox-avalanche`, - [ChainId.BSC]: `${GRAPH_HOST}/sushiswap/bentobox-bsc`, - [ChainId.FANTOM]: `${GRAPH_HOST}/sushiswap/bentobox-fantom`, - [ChainId.GNOSIS]: `${GRAPH_HOST}/sushiswap/bentobox-gnosis`, - [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushiswap/bentobox-arbitrum`, - [ChainId.CELO]: `${GRAPH_HOST}/sushiswap/bentobox-celo`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushiswap/bentobox-moonriver`, - [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushiswap/bentobox-moonbeam`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushiswap/bentobox-optimism`, - [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/bentobox-harmony`, - [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/bentobox-kava`, +export const BENTOBOX_SUBGRAPH_URL: Record = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/8HYeoDopVqqvb5RJEV2TtSzFsouYPz8cownnG3mbhiGy`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/6kJg5kFoQY8B8Ge2hqswHMqZDcmsR1TLUUz7AKov69fy`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/EhYaJodF1WQjKgxx1ZC63goeCwp5swD4AQRdaKXBm2xk`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/BggyE3r5snDsjx19jgZcbiBH7cbtrkpjvyGLFHMdXekd`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/AWD9Ca7KNZg7grfWosKTRqZTjPrJVgS5P5b37pDpN4CT`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/9jn9kA6SKCNxXQSqb93zZPLdLaru4FeZBwLNWAK4nfZ2`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/JZFyMKR4jnsFQ58q7dT6nbXenTzNgE176zTejc6Gf8Z`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/5DwkvjxPGVFFaWEMM68g1yztDdhCgJEYAxS6FuhkajzR`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/73XEV6UQKpPSJn68WZBAYTwALcZtFJkFYn58ZoZUb7tn`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/7wA5gqWNP4E1dPWBsTYvz5eQSDbtYDFgyU5BGdHr2UKp`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8b4Hy4Kn7jCNAf9JFrqHb24LsqmapG4HrAsCrwdJf9Nu`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/Bioj7N3Rf2n7iBq9PVoaMie3WiuzPze9NMi7aSye7LFc`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/bentobox-bttc/gn`, } + + export const BLOCKS_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${GRAPH_HOST}/blocklytics/ethereum-blocks`, - [ChainId.GNOSIS]: `${GRAPH_HOST}/matthewlilley/xdai-blocks`, - [ChainId.POLYGON]: `${GRAPH_HOST}/matthewlilley/polygon-blocks`, - [ChainId.POLYGON_ZKEVM]: `${PCS_STUDIO_HOST}/polygon-zkevm-block/version/latest`, - [ChainId.FANTOM]: `${GRAPH_HOST}/matthewlilley/fantom-blocks`, - [ChainId.BSC]: `${GRAPH_HOST}/matthewlilley/bsc-blocks`, - [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-blocks`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/matthewlilley/avalanche-blocks`, - [ChainId.CELO]: `${GRAPH_HOST}/ubeswap/celo-blocks`, - [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushiswap/arbitrum-blocks`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/236pc6mnPH2EdGJxR5wunibyGsagq1JsSx5e2hx5tdoE`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/HHpzhtyGrTNSbhtjgZyYG4aG538fKpV21dsCBshLnKDg`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushiswap/moonriver-blocks`, - [ChainId.FUSE]: `${GRAPH_HOST}/sushiswap/fuse-blocks`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/9JvasV5RyonCHn4bFR22VtsXGNuHsQCUiMJPQoGxqeVX`, // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, - [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushiswap/moonbeam-blocks`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/beethovenxfi/optimism-blocks`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/blocks-kava`, // [ChainId.METIS]: `${METIS_HOST}/sushiswap/blocks-metis`, [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, - [ChainId.BOBA]: `${GRAPH_HOST}/sushiswap/blocks-boba`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/5d1ZCJQCEqsfCqLRRU5iQ9ewg79tuNqZLPMkgUcpmLsD`, [ChainId.BOBA_BNB]: `${SUSHI_GOLDSKY_HOST}/blocks/boba-bnb/gn`, [ChainId.BTTC]: `${SUSHI_GOLDSKY_HOST}/blocks/bttc-mainnet/gn`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushiswap/blocks-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushiswap/blocks-core`, - [ChainId.BASE]: `${STUDIO_HOST}/blocks-base/v0.0.1`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/GU5jJMiEHpomqddtbsXC3Avj3EweLHk6up1pvy2TCQQZ`, [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/4rj8wdVvkDGzj9w9UfT48zyXGQtLbULW4ygxDBG9Xza1`, - [ChainId.SCROLL]: `${STUDIO_HOST}/blocks-scroll/v0.0.1`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/F4oYLjz8kVPFcY1iGc8S4rAaHnEZsUt6ixXSvFXACcGh`, [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/blocks`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/blocks-haqq`, [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/blocks-zetachain/1.0.0/gn`, @@ -353,25 +354,60 @@ export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, } as const + +export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/5DpWu6oLUEwKYLcya5fJf3MW5CE6yEMnZ8iwekmTNAbV`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8yBXBTMfdhsoE5QCf7KnoPmQb7QAWtRzESfYjiCjGEM9`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/24xqSifM5xPfGrW8MDwRhgaDsq7uaP2762fmxjyxJzot`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/8WcZLSs8QUSJptPbpBScoDafmp8E9whnSqYJc9TMyYFs`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/J7wEPt9nDHCno143dk6whAUesPyszxPqCDKhqDqWJHuz`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/FrcJbZ3j9GZ3vF8G9uVEFQZeTD8uiCc1A1eujtxYUwYH`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/7czeiia7ZXvsW45szX2w8EK1ZNgZWZET83zYCwE6JT9x`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/6MMVBsG9hgS8BzLZfPnU8KJdGiEFbd3CyNXVG6gQKCdQ`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/DuB755c1VYFSLLhq4b783ryPcvYdsvimGuZzBpFqoapX`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/3k9M7aZqeJXWLUogc2FSFBgXuxej2qstKSUNBXcPCcK5`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-arbitrum-nova/gn`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/4KvWjKY89DefJ6mPMASCTUDAZ6dyHSu7osCNQqaaaY3y`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/9cssJAh4EyzEWqZySBFguiXyygwZZAGBE3ETsGetNUK`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/8obLTNcEuGMieUt6jmrDaQUhWyj2pys26ULeP3gFiGNv`, + [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-boba-bnb/gn`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/7pXNLCc12pRM3bBPUAP9ZoEvkgUCjaBe9QC3DV9L2qzE`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/CiW3nquNZjKDoMfR4TbSpB4ox8Pq66FDxwSsohigSdxw`, + [ChainId.KAVA]: `${KAVA_HOST}/sushi-v2/sushiswap-kava`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/sushiswap-metis`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/sushiswap-bttc/gn`, + [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/sushiswap-filecoin`, + [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/sushiswap-zetachain/1.0.0/gn`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/sushiswap-thundercore`, + [ChainId.CORE]: `${CORE_HOST}/sushi-v2/sushiswap-core`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/sushiswap-haqq`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/G4sRz1YAcEFYFewGLQ9bt76gQuP1oyuzhVSTvs9bj7qn`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, + [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-blast/gn`, + [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, +} as const + + export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, - [ChainId.ARBITRUM]: `${STUDIO_HOST}/v3-arbitrum/v0.0.1`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v3/v3-avalanche`, - [ChainId.BSC]: `${GRAPH_HOST}/sushi-v3/v3-bsc`, - [ChainId.BOBA]: `${GRAPH_HOST}/sushi-v3/v3-boba`, - [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v3/v3-ethereum`, - [ChainId.FANTOM]: `${GRAPH_HOST}/sushi-v3/v3-fantom`, - [ChainId.FUSE]: `${GRAPH_HOST}/sushi-v3/v3-fuse`, - [ChainId.GNOSIS]: `${GRAPH_HOST}/sushi-v3/v3-gnosis`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushi-v3/v3-moonriver`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-v3/v3-optimism`, - [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-v3/v3-polygon`, - [ChainId.POLYGON_ZKEVM]: `${STUDIO_HOST}/v3-polygon-zkevm/v0.0.2`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/96EYD64NqmnFxMELu2QLWB95gqCmA9N96ssYsZfFiYHg`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/4BxsTB5ADnYdgJgdmzyddmnDGCauctDia28uxB1hgTBE`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/FiJDXMFCBv88GP17g2TtPh8BcA8jZozn5WRW7hCN7cUT`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/71VWMKCvsWRqrJouxmEQwSEMqqnqiiVYSxTZvzR8PHRx`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/5nnoU1nUFeWqtXgbpC54L9PWdpgo7Y9HYinR3uTMsfzs`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/4BzEvR229mwKjneCbJTDM8dsS3rjgoKcXt5C7J1DaUxK`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/8P62wYTJvhd6Aas656hVYhsccsGo2ihrJShaEnCoLJRK`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/GFvGfWBX47RNnvgwL6SjAAf2mrqrPxF91eA53F4eNegW`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/F46W9YVQXGism5iN9NZNhKm2DQCvjhr4u847rL1tRebS`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/Dr3FkshPgTMMDwxckz3oZdwLxaPcbzZuAbE92i6arYtJ`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/CqLnQY1d6DLcBYu7aZvGmt17LoNdTe4fDYnGbE2EgotR`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/E2x2gmtYdm2HX3QXorUBY4KegfGu79Za6TEQYjVrx15c`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v3/v3-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushi-v3/v3-core-fix`, - [ChainId.BASE]: `${STUDIO_HOST}/v3-base/v0.0.1`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/Cz4Snpih41NNNPZcbj1gd3fYXPwFr5q92iWMoZjCarEb`, [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/E2vqqvSzDdUiPP1r7PFnPKZQ34pAhNZjc6rEcdj3uE5t`, - [ChainId.SCROLL]: `${STUDIO_HOST}/v3-scroll/v0.0.1`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/5gyhoHx768oHn3GxsHsEc7oKFMPFg9AH8ud1dY8EirRc`, [ChainId.KAVA]: `${KAVA_HOST}/sushi-v3/v3-kava`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v3-metis`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-bttc/gn`, @@ -394,33 +430,29 @@ export const TRIDENT_SUBGRAPH_URL: Record = { } as const export const MINICHEF_SUBGRAPH_URL = { - [ChainId.POLYGON]: `${GRAPH_HOST}/jiro-ono/minichef-staging-updates`, // new trident subgraph not synced yet - [ChainId.GNOSIS]: `${GRAPH_HOST}/jiro-ono/gnosis-minichef-staging`, - // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // subgraph broken - [ChainId.ARBITRUM]: `${GRAPH_HOST}/jiro-ono/arbitrum-minichef-staging`, - [ChainId.CELO]: `${GRAPH_HOST}/sushiswap/celo-minichef-v2`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushiswap/moonriver-minichef`, - [ChainId.FUSE]: `${GRAPH_HOST}/sushiswap/fuse-minichef`, - [ChainId.FANTOM]: `${GRAPH_HOST}/sushiswap/fantom-minichef`, - [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushiswap/moonbeam-minichef`, - [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/kava-minichef`, //block subgraph not synced yet + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/DaSTfQbRTQq63HYGuAWusisUj23PFuisbhxHkjRHknex`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/FhtxFSxNCjVGknieajtwEzjruGFhTcAW9tWuADQ3tzNK`, + // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // Broken, no fix has been deployed or migrated + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/9oRuyFt4J6nHFpL5kWfkp3yocjzmZo1D8hKjqyKNuix`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/Aodb24RhU4p1p6p4ooq1Rwu5aVXhULAvXEGg8QEaPBvg`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/ExyevfNrFJ7EhTK74MDJ823h6oKkqUpwnVP1h3EuN8oa`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/GdVirDDQ2fg43pjt2cZiH9Uar7bhGfySvm4jiQ9fVD4u`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/GJXdaT5S7BHvGNxJSLJsMH36tB4w3Z7eES6jSDJuqddg`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/35kjzcBhiTgS3LLrhRFFGVGRfapzQBDC2wEWydvG2jZc`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/8s62qVWURfEebmaYkxDBwHLmWn7qF1dyucX2Tj6n3YPj`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/5DVXnbAu4uqKLbczLeAErLsLyQdxoZ1BjvCn1buWyZf8`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8M2Tyj1bVFp9paR9rcysn17V9Y1MbMgL9YEZQ5q4aSZH`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/CuaMtyA7JyzEf5mqsrWBwhdfLFfz1QU2js17R77wAyYB`, + [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/kava-minichef`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, - [ChainId.BOBA]: `${GRAPH_HOST}/sushiswap/minichef-boba`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-bttc/gn`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushiswap/minichef-optimism`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushiswap/minichef-avalanche`, - [ChainId.BSC]: `${GRAPH_HOST}/sushiswap/minichef-bsc`, } as const -export const MASTERCHEF_V1_SUBGRAPH_NAME = - 'jiro-ono/masterchef-staging' as const -export const MASTERCHEF_V2_SUBGRAPH_NAME = 'sushiswap/master-chefv2' as const - export const MASTERCHEF_V1_SUBGRAPH_URL = - `${GRAPH_HOST}/jiro-ono/masterchef-staging` as const + `${DECENTRALIZED_NETWORK_HOST}/HoVZ6mXTx3dvoqaUwcJozuowz7xijzDLmfuBWLed6rqi` as const export const MASTERCHEF_V2_SUBGRAPH_URL = - `${GRAPH_HOST}sushiswap/master-chefv2` as const + `${DECENTRALIZED_NETWORK_HOST}/FAa1YU79pPDUKj8vtkUPZGzCcPVS6Edg1md5LsRHSKWb` as const export const FURO_ENABLED_NETWORKS = [ ChainId.ETHEREUM, @@ -434,21 +466,28 @@ export const FURO_ENABLED_NETWORKS = [ ChainId.MOONRIVER, ChainId.OPTIMISM, ChainId.POLYGON, + ChainId.HAQQ, + ChainId.CORE, + ChainId.THUNDERCORE, + ChainId.BTTC, ] as const export const FURO_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-subgraphs/furo-ethereum`, - // [ChainId.GÖRLI]: `${GRAPH_HOST}/sushi-subgraphs/furo-goerli`, - [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushi-subgraphs/furo-arbitrum`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-subgraphs/furo-avalanche`, - [ChainId.BSC]: `${GRAPH_HOST}/sushi-subgraphs/furo-bsc`, - [ChainId.FANTOM]: `${GRAPH_HOST}/sushi-subgraphs/furo-fantom`, - [ChainId.GNOSIS]: `${GRAPH_HOST}/sushi-subgraphs/furo-gnosis`, - [ChainId.HARMONY]: `${GRAPH_HOST}/sushi-subgraphs/furo-harmony`, - [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushi-subgraphs/furo-moonbeam`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushi-subgraphs/furo-moonriver`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-subgraphs/furo-optimism`, - [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-subgraphs/furo-polygon`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/D8vYJpKN5SEHUkUWKSuorsL6FRt7hAQMnywnC4e93ygf`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8eHhPeKDr646JH5KUBBcabAJzkWmLfu6pqBtpXQHa37F`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8LVoX3JPEVAak8T8GoEfdJudMoP2bsGwd9tszJxo3Rnx`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/2wBYezghRA3hEJLQB4njUZGDNxCdU3u2gsLP5yVvBqKk`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/E98zSR5UZBGBgQe2SSLZ5R6yj5GPqKDJcQJNDHTeV3cS`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/5ToxB5xubMh9osdEDeX98JBAyzUVwkReGXAT1CzQhZCB`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/9D9C3ppoDE1zuZk5adznngKomLYS8NnC9zxniSS8vzgH`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/HJxpcsmaPV3L6PsqGFBHLczeMnL7bEgmL1D65edGx8pf`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/9ZqdKjfu7o9dX1RThXHDV9EqMn5CTvgpsPKKbpANg8yC`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8KnsmppMf9k6Qvyixxwmny7dYugTV7XT4htHTfyq3d69`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/4KsDNsyJjKX6bjwVNJQmJ7Dm3wovYXSX37UR39rNaMX4`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/furo-haqq`, + [ChainId.CORE]: `${CORE_HOST}/sushi-subgraphs/furo-core`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-subgraphs/furo-thundercore`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-subgraphs/furo-bttc/gn` } as const export const KASHI_SUBGRAPH_NAME: Record = { From 784191cd30be88da65c823393bd714da03c46da0 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 21 May 2024 23:05:27 +0200 Subject: [PATCH 005/119] WIP, savepoint --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 1 + apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 10 +- apps/evm/src/ui/pool/columns.tsx | 8 +- config/graph/src/index.ts | 8 +- jobs/pool/src/lib/common/pairs.ts | 4 +- jobs/pool/src/lib/common/tokens.ts | 4 +- jobs/pool/src/pools.ts | 4 +- packages/graph-client/.graphclientrc.yml | 45 ++-- packages/graph-client/queries/bundles.graphql | 2 +- .../graph-client/queries/deprecated.graphql | 165 ++++++------ .../graph-client/queries/factories.graphql | 58 ++-- .../queries/liquidity-positions.graphql | 2 +- packages/graph-client/queries/pairs.graphql | 195 ++++++-------- packages/graph-client/queries/tokens.graphql | 14 +- .../resolvers/bundles/bundlesByChainIds.ts | 8 +- .../resolvers/depreciated/crossChainToken.ts | 16 +- .../factories/factoriesByChainIds.ts | 4 +- .../factoryDaySnapshotsByChainIds.ts | 240 ++++++++--------- .../graph-client/resolvers/factories/index.ts | 4 +- .../liquidityPositionsByChainIds.ts | 8 +- .../graph-client/resolvers/pairs/pairById.ts | 254 +++++++++++++----- .../resolvers/pairs/pairsByChainId.ts | 5 +- .../resolvers/pairs/pairsByChainIds.ts | 26 +- .../resolvers/tokens/tokensByChainId.ts | 5 +- .../resolvers/tokens/tokensByChainIds.ts | 8 +- .../resolvers/user/crossChainUserPositions.ts | 2 +- .../transformers/transformPair.ts | 15 +- 27 files changed, 597 insertions(+), 518 deletions(-) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index d153b2cdc7..e56aeb65f2 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -21,6 +21,7 @@ export const useGraphPool = (pool: Pool) => { } = useSWR(getGraphPoolUrl(pool.id), async (url) => fetch(url).then((data) => data.json()), ) + console.log({graphPool}) const { token0, token1, liquidityToken } = useTokensFromPool(pool) diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 20157e7610..54e70baaab 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -2,7 +2,7 @@ import { Pool } from '@sushiswap/client' import { getBuiltGraphSDK } from '@sushiswap/graph-client' -import { SUSHISWAP_SUBGRAPH_URL } from '@sushiswap/graph-config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' import { Card, CardContent, @@ -44,7 +44,7 @@ const fetchAll = async ( opts: UseTransactionsV2Opts, ) => { const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }) const { transactions } = await sdk.V2Transactions({ @@ -83,7 +83,7 @@ const fetchMints = async ( opts: UseTransactionsV2Opts, ) => { const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }) const { mints } = await sdk.V2Mints({ @@ -106,7 +106,7 @@ const fetchBurns = async ( opts: UseTransactionsV2Opts, ) => { const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }) const { burns } = await sdk.V2Burns({ @@ -134,7 +134,7 @@ const fetchSwaps = async ( opts: UseTransactionsV2Opts, ) => { const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }) const { swaps } = await sdk.V2Swaps({ diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 059819c2c4..e1283b134f 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -488,8 +488,8 @@ export const TX_AMOUNT_IN_V2_COLUMN = ( case TransactionType.Swap: return ( - {' '} - {row.original.tokenIn.symbol} + {' '} + { row.original.amount0In !== "0" ? row.original.pool.token0.symbol : row.original.pool.token1.symbol } ) case TransactionType.Mint: @@ -518,9 +518,9 @@ export const TX_AMOUNT_OUT_V2_COLUMN = ( return ( {' '} - {row.original.tokenOut.symbol} + { row.original.amount0Out !== "0" ? row.original.pool.token0.symbol : row.original.pool.token1.symbol } ) case TransactionType.Mint: diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 2cf0d6f328..60ee0e32e4 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -253,8 +253,6 @@ export const BENTOBOX_SUBGRAPH_URL: Record = { [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/bentobox-bttc/gn`, } - - export const BLOCKS_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/236pc6mnPH2EdGJxR5wunibyGsagq1JsSx5e2hx5tdoE`, [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, @@ -354,7 +352,6 @@ export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, } as const - export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/5DpWu6oLUEwKYLcya5fJf3MW5CE6yEMnZ8iwekmTNAbV`, @@ -388,7 +385,6 @@ export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, } as const - export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/96EYD64NqmnFxMELu2QLWB95gqCmA9N96ssYsZfFiYHg`, @@ -487,7 +483,7 @@ export const FURO_SUBGRAPH_URL: Record = { [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/furo-haqq`, [ChainId.CORE]: `${CORE_HOST}/sushi-subgraphs/furo-core`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-subgraphs/furo-thundercore`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-subgraphs/furo-bttc/gn` + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-subgraphs/furo-bttc/gn`, } as const export const KASHI_SUBGRAPH_NAME: Record = { @@ -508,7 +504,7 @@ export const isTridentChain = (chainId: ChainId): chainId is TridentChainId => export const isSushiSwapChain = ( chainId: ChainId, ): chainId is SushiSwapChainId => - Object.keys(SUSHISWAP_SUBGRAPH_URL).map(Number).includes(chainId) + Object.keys(SUSHISWAP_V2_SUBGRAPH_URL).map(Number).includes(chainId) export const isSushiSwapV3Chain = ( chainId: ChainId, diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index dc901043dd..105b210cce 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, SushiSwapChainId, TRIDENT_SUBGRAPH_URL, TridentChainId, @@ -21,7 +21,7 @@ async function getExchangePairs( chainId: SushiSwapChainId, ): Promise { const { getBuiltGraphSDK } = await import('../../../.graphclient/index.js') - const url = SUSHISWAP_SUBGRAPH_URL[chainId] + const url = SUSHISWAP_V2_SUBGRAPH_URL[chainId] if (!url) return [] const sdk = getBuiltGraphSDK({ url, diff --git a/jobs/pool/src/lib/common/tokens.ts b/jobs/pool/src/lib/common/tokens.ts index ee7e1d68c9..924e4b676d 100644 --- a/jobs/pool/src/lib/common/tokens.ts +++ b/jobs/pool/src/lib/common/tokens.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, SushiSwapChainId, TRIDENT_SUBGRAPH_URL, TridentChainId, @@ -26,7 +26,7 @@ const getExchangeTokens = async ( chainId: SushiSwapChainId, ): Promise => { const { getBuiltGraphSDK } = await import('../../../.graphclient/index.js') - const url = SUSHISWAP_SUBGRAPH_URL[chainId] + const url = SUSHISWAP_V2_SUBGRAPH_URL[chainId] if (!url) return [] const sdk = getBuiltGraphSDK({ url, diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 450deda1de..86af4c2e7a 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -2,7 +2,7 @@ import { Prisma, Protocol } from '@sushiswap/database' import { MAX_FIRST, SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, SUSHISWAP_V3_ENABLED_NETWORKS, SUSHISWAP_V3_SUBGRAPH_URL, SWAP_ENABLED_NETWORKS, @@ -122,7 +122,7 @@ function createSubgraphConfig(protocol: Protocol) { return SUSHISWAP_ENABLED_NETWORKS.map((chainId) => { return { chainId, - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], protocol: Protocol.SUSHISWAP_V2, } }) diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml index be6cc5b965..7314f4d074 100644 --- a/packages/graph-client/.graphclientrc.yml +++ b/packages/graph-client/.graphclientrc.yml @@ -43,10 +43,10 @@ sources: includeRootOperations: true includeTypes: true - - name: SushiSwap + - name: SushiSwapV2 handler: graphql: - endpoint: https://{context.url:api.thegraph.com/subgraphs/name/subgraph-qa/sushiswap-ethereum} + endpoint: https://{context.url:api.studio.thegraph.com/query/32073/v2-arbitrum/version/latest} retry: 3 transforms: - rename: @@ -121,12 +121,12 @@ sources: # - queryFieldName: pairs # keyField: id - - name: Trident - handler: - graphql: - endpoint: https://{context.url:api.thegraph.com/subgraphs/name/sushi-qa/trident-optimism} - retry: 3 - transforms: + # - name: Trident + # handler: + # graphql: + # endpoint: https://{context.url:api.thegraph.com/subgraphs/name/sushi-qa/trident-optimism} + # retry: 3 + # transforms: - name: MasterChefV1 handler: @@ -250,6 +250,14 @@ additionalTypeDefs: | # combined: BigDecimal! # } + type BucketData { + id: ID! + date: BigInt! + volumeUSD: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + transactionCount: BigInt! + } type UserPosition { id: ID! pool: String! @@ -312,9 +320,6 @@ additionalTypeDefs: | extend type Bundle { chainId: BigInt! } - extend type Factory { - chainId: BigInt! - } extend type SUSHISWAP_V3_Factory { chainId: Int! } @@ -325,17 +330,23 @@ additionalTypeDefs: | chainId: BigInt! source: String! } - extend type FactoryDaySnapshot { + extend type UniswapFactory { chainId: BigInt! } extend type Pair { chainId: BigInt! + swapFee: BigInt! address: String! + name: String! + liquidity: BigInt! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! liquidity1dChange: BigDecimal liquidity1wChange: BigDecimal volume1d: BigDecimal volume1dChange: BigDecimal volume1w: BigDecimal + feesUSD: BigDecimal! fees1d: BigDecimal fees1w: BigDecimal fees1dChange: BigDecimal @@ -426,7 +437,7 @@ additionalTypeDefs: | ): [Block!]! factoriesByChainIds( chainIds: [BigInt!]! - ): [Factory!]! + ): [UniswapFactory!]! v3factoriesByChainIds( chainIds: [BigInt!]! ): [SUSHISWAP_V3_Factory!]! @@ -556,15 +567,15 @@ additionalTypeDefs: | id: ID! chainIds: [BigInt!]! ): [UserPosition!]! - factoryDaySnapshotsByChainIds( + uniswapDayDatasByChainIds( first: Int skip: Int - where: FactoryDaySnapshot_filter - orderBy: FactoryDaySnapshot_orderBy + where: UniswapDayData_filter + orderBy: UniswapDayData_orderBy orderDirection: OrderDirection block: Block_height chainIds: [BigInt!]! - ): [FactoryDaySnapshot!]! + ): [UniswapDayData!]! crossChainToken(id: ID! now: Int! chainId: BigInt!): Token! crossChainStats( first: Int diff --git a/packages/graph-client/queries/bundles.graphql b/packages/graph-client/queries/bundles.graphql index 8f36147a43..3975ab1e1f 100644 --- a/packages/graph-client/queries/bundles.graphql +++ b/packages/graph-client/queries/bundles.graphql @@ -2,6 +2,6 @@ query Bundles($chainIds: [BigInt!]!) { bundles: bundlesByChainIds(chainIds: $chainIds) { id chainId - nativePrice + nativePrice: ethPrice } } diff --git a/packages/graph-client/queries/deprecated.graphql b/packages/graph-client/queries/deprecated.graphql index c7df549bb2..686372a8a7 100644 --- a/packages/graph-client/queries/deprecated.graphql +++ b/packages/graph-client/queries/deprecated.graphql @@ -125,86 +125,87 @@ query deprecated_TokensAndBundle( # } # } -query CrossChainToken($id: ID!, $now: Int!, $chainId: BigInt!) { - crossChainToken(id: $id, now: $now, chainId: $chainId) { - id - chainId - name - liquidityUSD - symbol - decimals - volumeUSD - feesUSD - price { - derivedNative - } - source - pairs { - pair { - chainId - liquidityUSD - volume1w - swapFee - token0 { - name - id - decimals - symbol - } - token1 { - name - id - decimals - symbol - } - id - apr - feeApr - daySnapshots(skip: 1, first: 7, orderBy: date, orderDirection: desc, where: { date_lt: $now }) { - id - date - volumeUSD - apr - } - } - } - } -} +# query CrossChainToken($id: ID!, $now: Int!, $chainId: BigInt!) { +# crossChainToken(id: $id, now: $now, chainId: $chainId) { +# id +# chainId +# name +# #liquidityUSD #doesn't exist on v2 +# symbol +# decimals +# # volumeUSD +# # feesUSD +# # price { +# # derivedNative +# # } +# source +# pairs { +# pair { +# chainId +# liquidityUSD: reserveUSD +# volume1w +# swapFee +# token0 { +# name +# id +# decimals +# symbol +# } +# token1 { +# name +# id +# decimals +# symbol +# } +# id +# apr +# feeApr +# # TODO: Fix this +# # daySnapshots(skip: 1, first: 7, orderBy: date, orderDirection: desc, where: { date_lt: $now }) { +# # id +# # date +# # volumeUSD +# # apr +# # } +# } +# } +# } +# } -query CrossChainStats( - $first: Int = 1000 - $skip: Int = 0 - $where: Pair_filter - $orderBy: Pair_orderBy - $orderDirection: OrderDirection - $block: Block_height - $chainIds: [BigInt!]! - $now: Int! -) { - crossChainStats( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - now: $now - ) { - chainId - hourSnapshots(skip: 1, first: 168, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityUSD - apr - } - daySnapshots(skip: 1, first: 730, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityUSD - apr - } - } -} +# query CrossChainStats( +# $first: Int = 1000 +# $skip: Int = 0 +# $where: Pair_filter +# $orderBy: Pair_orderBy +# $orderDirection: OrderDirection +# $block: Block_height +# $chainIds: [BigInt!]! +# $now: Int! +# ) { +# crossChainStats( +# first: $first +# skip: $skip +# where: $where +# orderBy: $orderBy +# orderDirection: $orderDirection +# block: $block +# chainIds: $chainIds +# now: $now +# ) { +# chainId +# hourSnapshots(skip: 1, first: 168, orderBy: date, orderDirection: desc) { +# id +# date +# volumeUSD +# liquidityUSD +# apr +# } +# daySnapshots(skip: 1, first: 730, orderBy: date, orderDirection: desc) { +# id +# date +# volumeUSD +# liquidityUSD +# apr +# } +# } +# } diff --git a/packages/graph-client/queries/factories.graphql b/packages/graph-client/queries/factories.graphql index 4b9574a7a1..e3bf365b23 100644 --- a/packages/graph-client/queries/factories.graphql +++ b/packages/graph-client/queries/factories.graphql @@ -2,36 +2,36 @@ query Factories($chainIds: [BigInt!]!) { factories: factoriesByChainIds(chainIds: $chainIds) { id chainId - liquidityUSD - volumeUSD + liquidityUSD: totalLiquidityUSD + volumeUSD: totalVolumeUSD pairCount - tokenCount + # tokenCount } } -query FactoryDaySnapshots( - $first: Int = 365 - $skip: Int = 0 - $where: FactoryDaySnapshot_filter - $orderBy: FactoryDaySnapshot_orderBy = date - $orderDirection: OrderDirection = desc - $block: Block_height - $chainIds: [BigInt!]! -) { - factoryDaySnapshots: factoryDaySnapshotsByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - chainId - id - date - volumeUSD - liquidityUSD - feesUSD - } -} +# query UniswapDayDatas( +# $first: Int = 365 +# $skip: Int = 0 +# $where: UniswapDayData_filter +# $orderBy: UniswapDayData_orderBy = date +# $orderDirection: OrderDirection = desc +# $block: Block_height +# $chainIds: [BigInt!]! +# ) { +# factoryDaySnapshots: factoryDaySnapshotsByChainIds( +# first: $first +# skip: $skip +# where: $where +# orderBy: $orderBy +# orderDirection: $orderDirection +# block: $block +# chainIds: $chainIds +# ) { +# chainId +# id +# date +# volumeUSD +# liquidityUSD +# feesUSD +# } +# } diff --git a/packages/graph-client/queries/liquidity-positions.graphql b/packages/graph-client/queries/liquidity-positions.graphql index 766378bc39..3e8c112fd5 100644 --- a/packages/graph-client/queries/liquidity-positions.graphql +++ b/packages/graph-client/queries/liquidity-positions.graphql @@ -1,7 +1,7 @@ fragment LiquidityPositionFields on LiquidityPosition { id chainId - balance + balance: liquidityTokenBalance user { ...UserFields } diff --git a/packages/graph-client/queries/pairs.graphql b/packages/graph-client/queries/pairs.graphql index 185a58a148..23ed22177a 100644 --- a/packages/graph-client/queries/pairs.graphql +++ b/packages/graph-client/queries/pairs.graphql @@ -2,9 +2,9 @@ fragment PairFields on Pair { id chainId address - type - swapFee - twapEnabled + # type + # swapFee EXTEND.. + # twapEnabled name token0 { name @@ -18,41 +18,41 @@ fragment PairFields on Pair { decimals symbol } - source - createdAtBlock + createdAtBlockNumber createdAtTimestamp reserve0 reserve1 - liquidity - liquidityUSD - liquidityNative + liquidity: totalSupply + liquidityUSD: reserveUSD + liquidityNative: reserveETH # token0Price # token1Price volumeUSD - volumeNative volumeToken0 volumeToken1 - feesNative feesUSD txCount - apr - aprUpdatedAtTimestamp } fragment TimeTravelPairFields on Pair { id reserve0 reserve1 - liquidity - liquidityUSD - liquidityNative + totalSupply + reserveUSD + reserveETH volumeUSD - volumeNative volumeToken0 volumeToken1 - feesNative feesUSD - apr +} + + + +query PairOnlyId($id: ID!) { + pair(id: $id) { + id + } } query PairsByChainId( @@ -99,6 +99,47 @@ query PairsByChainIds( } } + +query SushiSwapV2PoolHourData($first: Int = 1000, $skip: Int, $orderBy: PairHourData_orderBy, $orderDirection: OrderDirection, $where: PairHourData_filter) { + pairHourDatas: pairHourDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + hourStartUnix + pair { + id + } + + reserve0 + reserve1 + totalSupply + reserveUSD + + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns + } +} + + +query SushiSwapV2PoolDayData($first: Int = 1000, $skip: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter) { + pairDayDatas: pairDayDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + date + pairAddress + + reserve0 + reserve1 + totalSupply + reserveUSD + + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns + } +} + + query PairById($id: ID!) { pair: pairById(id: $id) { ...PairFields @@ -113,34 +154,15 @@ query PairById($id: ID!) { txCount1d txCount1dChange txCount1w - apr feeApr - hourSnapshots(first: 168, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityNative - liquidityUSD - transactionCount - apr - } - daySnapshots(first: 730, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityNative - liquidityUSD - transactionCount - apr - } } } query V2Transactions($first: Int = 100, $skip: Int = 0, $orderBy: Transaction_orderBy = timestamp, $orderDir: OrderDirection = desc, $where: Transaction_filter) { transactions: v2Transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber mints { id sender @@ -163,14 +185,10 @@ query V2Transactions($first: Int = 100, $skip: Int = 0, $orderBy: Transaction_or id sender to - amountIn - tokenIn { - symbol - } - amountOut - tokenOut { - symbol - } + amount0In + amount1In + amount0Out + amount1Out amountUSD logIndex } @@ -188,8 +206,8 @@ query V2Burns($first: Int = 100, $skip: Int = 0, $orderBy: Burn_orderBy = timest logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } @@ -205,8 +223,8 @@ query V2Mints($first: Int = 100, $skip: Int = 0, $orderBy: Mint_orderBy = timest logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } @@ -216,79 +234,16 @@ query V2Swaps($first: Int = 100, $skip: Int = 0, $orderBy: Swap_orderBy = timest id sender to - amountIn - tokenIn { - symbol - } - amountOut - tokenOut { - symbol - } + amount0In + amount1In + amount0Out + amount1Out amountUSD logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } - -# fragment PairWithIncentivesFields on PairWithIncentives { -# ...PairFields -# # liquidityPositions { -# # id -# # } -# # liquidityPositionSnapshots { -# # id -# # } -# incentives { -# id -# # currency { id symbol name decimals } -# apr -# } -# } - -# query PairWithIncentives( -# $first: Int -# $skip: Int -# # $where: PairWithIncentives_filter -# # $orderBy: PairWithIncentives_orderBy -# # $orderDirection: OrderDirection -# $block: Block_height -# $chainIds: [Int!]! -# ) { -# pairWithIncentives( -# first: $first -# skip: $skip -# # where: $where -# # orderBy: $orderBy -# # orderDirection: $orderDirection -# block: $block -# chainIds: $chainIds -# ) { -# ...PairWithIncentivesFields -# } -# } - -# query PairWithIncentives( -# $first: Int -# $skip: Int -# # $where: PairWithIncentives_filter -# # $orderBy: PairWithIncentives_orderBy -# # $orderDirection: OrderDirection -# $block: Block_height -# $chainIds: [Int!]! -# ) { -# pairWithIncentives( -# first: $first -# skip: $skip -# # where: $where -# # orderBy: $orderBy -# # orderDirection: $orderDirection -# block: $block -# chainIds: $chainIds -# ) { -# ...PairWithIncentivesFields -# } -# } diff --git a/packages/graph-client/queries/tokens.graphql b/packages/graph-client/queries/tokens.graphql index 444e5ed08e..bbf0432282 100644 --- a/packages/graph-client/queries/tokens.graphql +++ b/packages/graph-client/queries/tokens.graphql @@ -2,21 +2,21 @@ fragment TokenFields on Token { id chainId name - liquidityUSD + # liquidityUSD symbol decimals - volumeUSD - feesUSD - price { - derivedNative - } + volumeUSD: tradeVolumeUSD + # feesUSD + # price { + # derivedNative + # } } query TokensByChainIds( $first: Int = 20 $skip: Int = 0 $where: Token_filter - $orderBy: Token_orderBy = liquidityUSD + $orderBy: Token_orderBy = tradeVolumeUSD $orderDirection: OrderDirection = desc $block: Block_height $pagination: Pagination diff --git a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts index 2369c7ca7e..559edc1688 100644 --- a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts +++ b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' @@ -17,7 +17,7 @@ export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( ) => { return Promise.all([ ...args.chainIds - .filter((el): el is typeof TRIDENT_ENABLED_NETWORKS[number] => + .filter((el): el is (typeof TRIDENT_ENABLED_NETWORKS)[number] => TRIDENT_ENABLED_NETWORKS.includes(el), ) .map((chainId) => @@ -40,7 +40,7 @@ export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( ), ), ...args.chainIds - .filter((el): el is typeof SUSHISWAP_ENABLED_NETWORKS[number] => + .filter((el): el is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => SUSHISWAP_ENABLED_NETWORKS.includes(el), ) .map((chainId) => @@ -50,7 +50,7 @@ export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( context: { ...context, chainId, - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, }).then((bundles: Bundle[]) => diff --git a/packages/graph-client/resolvers/depreciated/crossChainToken.ts b/packages/graph-client/resolvers/depreciated/crossChainToken.ts index 0f36364024..cc26399469 100644 --- a/packages/graph-client/resolvers/depreciated/crossChainToken.ts +++ b/packages/graph-client/resolvers/depreciated/crossChainToken.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' @@ -31,10 +31,9 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( chainId: args.chainId, chainName: chainName[args.chainId], chainShortName: chainShortName[args.chainId], - url: - SUSHISWAP_SUBGRAPH_URL[ - args.chainId as typeof SUSHISWAP_ENABLED_NETWORKS[number] - ], + url: SUSHISWAP_V2_SUBGRAPH_URL[ + args.chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], }, info, }) @@ -47,10 +46,9 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( chainId: args.chainId, chainName: chainName[args.chainId], chainShortName: chainShortName[args.chainId], - url: - TRIDENT_SUBGRAPH_URL[ - args.chainId as typeof TRIDENT_ENABLED_NETWORKS[number] - ], + url: TRIDENT_SUBGRAPH_URL[ + args.chainId as (typeof TRIDENT_ENABLED_NETWORKS)[number] + ], }, info, }) diff --git a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts index 7f6337697a..1a9b231f78 100644 --- a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, } from '@sushiswap/graph-config' import { isPromiseFulfilled } from 'sushi/validate' @@ -27,7 +27,7 @@ export const factoriesByChainIds: QueryResolvers['factoriesByChainIds'] = context: { ...context, chainId, - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, }).then((factories: Factory[]) => { diff --git a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts index 4fa2525af3..f312d6a804 100644 --- a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts @@ -1,136 +1,132 @@ -import { - SUSHISWAP_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, - SushiSwapV3ChainId, - TRIDENT_SUBGRAPH_URL, - isSushiSwapChain, - isSushiSwapV3Chain, - isTridentChain, -} from '@sushiswap/graph-config' -import { ChainId, chainName, chainShortName } from 'sushi/chain' +// import { +// SUSHISWAP_V2_SUBGRAPH_URL, +// SUSHISWAP_V3_SUBGRAPH_URL, +// SushiSwapV3ChainId, +// TRIDENT_SUBGRAPH_URL, +// isSushiSwapChain, +// isSushiSwapV3Chain, +// isTridentChain, +// } from '@sushiswap/graph-config' +// import { ChainId, chainName, chainShortName } from 'sushi/chain' -import { - FactoryDaySnapshot, - Query, - QueryResolvers, - SushiSwapV3DayDatasQuery, - getBuiltGraphSDK, -} from '../../.graphclient/index.js' -import { isPromiseFulfilled } from 'sushi/validate' +// import { +// FactoryDaySnapshot, +// Query, +// QueryResolvers, +// SushiSwapV3DayDatasQuery, +// getBuiltGraphSDK, +// } from '../../.graphclient/index.js' +// import { isPromiseFulfilled } from 'sushi/validate' -const transformV3DayToSnapshot = ( - days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], - chainId: number, -): Query['factoryDaySnapshotsByChainIds'] => - days.map((day) => ({ - chainId: chainId, - id: day.id, - date: day.date, - volumeNative: day.volumeETH, - volumeUSD: day.volumeUSD, - untrackedVolumeUSD: day.volumeUSDUntracked, - liquidityNative: 0, - liquidityUSD: day.tvlUSD, - feesNative: 0, - feesUSD: day.feesUSD, - transactionCount: day.txCount, - factory: null, - })) +// const transformV3DayToSnapshot = ( +// days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], +// chainId: number, +// ): Query['factoryDaySnapshotsByChainIds'] => +// days.map((day) => ({ +// chainId: chainId, +// id: day.id, +// date: day.date, +// volumeNative: day.volumeETH, +// volumeUSD: day.volumeUSD, +// untrackedVolumeUSD: day.volumeUSDUntracked, +// liquidityNative: 0, +// liquidityUSD: day.tvlUSD, +// feesNative: 0, +// feesUSD: day.feesUSD, +// transactionCount: day.txCount, +// factory: null, +// })) -export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsByChainIds'] = - async ( - root, - args, - context, - info, - ): Promise => { - const fetchTridentSnapshots = async (chainId: number) => { - const snapshots: FactoryDaySnapshot[] = - await context.Trident.Query.factoryDaySnapshots({ - root, - args, - context: { - ...context, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: TRIDENT_SUBGRAPH_URL[chainId], - }, - info, - }) +// export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsByChainIds'] = +// async ( +// root, +// args, +// context, +// info, +// ): Promise => { +// // const fetchTridentSnapshots = async (chainId: number) => { +// // const snapshots: FactoryDaySnapshot[] = +// // await context.Trident.Query.factoryDaySnapshots({ +// // root, +// // args, +// // context: { +// // ...context, +// // chainId, +// // chainName: chainName[chainId], +// // chainShortName: chainShortName[chainId], +// // url: TRIDENT_SUBGRAPH_URL[chainId], +// // }, +// // info, +// // }) - return ( - snapshots?.map((snapshot) => ({ - ...snapshot, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - })) || [] - ) - } +// // return ( +// // snapshots?.map((snapshot) => ({ +// // ...snapshot, +// // chainId, +// // chainName: chainName[chainId], +// // chainShortName: chainShortName[chainId], +// // })) || [] +// // ) +// // } - const fetchSushiSwapV2Snapshots = async (chainId: number) => { - const snapshots: FactoryDaySnapshot[] = - await context.SushiSwap.Query.factoryDaySnapshots({ - root, - args, - context: { - ...context, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: SUSHISWAP_SUBGRAPH_URL[chainId], - }, - info, - }) +// const fetchSushiSwapV2Snapshots = async (chainId: number) => { +// const snapshots: FactoryDaySnapshot[] = +// await context.SushiSwap.Query.factoryDaySnapshots({ +// root, +// args, +// context: { +// ...context, +// chainId, +// chainName: chainName[chainId], +// chainShortName: chainShortName[chainId], +// url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], +// }, +// info, +// }) - return ( - snapshots?.map((snapshot) => ({ - ...snapshot, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - })) || [] - ) - } +// return ( +// snapshots?.map((snapshot) => ({ +// ...snapshot, +// chainId, +// chainName: chainName[chainId], +// chainShortName: chainShortName[chainId], +// })) || [] +// ) +// } - const fetchSushiSwapV3Snapshots = async (chainId: SushiSwapV3ChainId) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] - }) +// const fetchSushiSwapV3Snapshots = async (chainId: SushiSwapV3ChainId) => { +// const sdk = getBuiltGraphSDK({ +// url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], +// }) - const { uniswapDayDatas } = await sdk.SushiSwapV3DayDatas({ - first: args.first, - skip: args.skip, - orderBy: args.orderBy === 'liquidityUSD' ? 'tvlUSD' : 'date', - orderDirection: args.orderDirection, - }) +// const { uniswapDayDatas } = await sdk.SushiSwapV3DayDatas({ +// first: args.first, +// skip: args.skip, +// orderBy: args.orderBy === 'liquidityUSD' ? 'tvlUSD' : 'date', +// orderDirection: args.orderDirection, +// }) - return transformV3DayToSnapshot(uniswapDayDatas, chainId) - } +// return transformV3DayToSnapshot(uniswapDayDatas, chainId) +// } - const queries = args.chainIds.flatMap((chainId: ChainId) => { - const queries: Promise[] = [] +// const queries = args.chainIds.flatMap((chainId: ChainId) => { +// const queries: Promise[] = [] - if (isTridentChain(chainId)) { - queries.push(fetchTridentSnapshots(chainId)) - } +// if (isSushiSwapChain(chainId)) { +// queries.push(fetchSushiSwapV2Snapshots(chainId)) +// } - if (isSushiSwapChain(chainId)) { - queries.push(fetchSushiSwapV2Snapshots(chainId)) - } +// if (isSushiSwapV3Chain(chainId)) { +// queries.push(fetchSushiSwapV3Snapshots(chainId)) +// } - if (isSushiSwapV3Chain(chainId)) { - queries.push(fetchSushiSwapV3Snapshots(chainId)) - } +// return queries +// }) - return queries - }) - - return Promise.allSettled(queries).then((snapshots) => - snapshots - .filter(isPromiseFulfilled) - .map((snapshot) => snapshot.value) - .flat(), - ) - } +// return Promise.allSettled(queries).then((snapshots) => +// snapshots +// .filter(isPromiseFulfilled) +// .map((snapshot) => snapshot.value) +// .flat(), +// ) +// } diff --git a/packages/graph-client/resolvers/factories/index.ts b/packages/graph-client/resolvers/factories/index.ts index 4d19728ffa..2f70ea3023 100644 --- a/packages/graph-client/resolvers/factories/index.ts +++ b/packages/graph-client/resolvers/factories/index.ts @@ -1,6 +1,6 @@ import { Resolvers } from '../../.graphclient/index.js' import { factoriesByChainIds } from './factoriesByChainIds.js' -import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' +// import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' export const resolvers: Resolvers = { Factory: { chainId: (root, args, context, info) => @@ -8,6 +8,6 @@ export const resolvers: Resolvers = { }, Query: { factoriesByChainIds, - factoryDaySnapshotsByChainIds, + // factoryDaySnapshotsByChainIds, }, } diff --git a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts index f93e9ec5a0..416f273eb3 100644 --- a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts +++ b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts @@ -1,7 +1,7 @@ // @ts-nocheck import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' @@ -30,7 +30,7 @@ export const _liquidityPositionsByChainIds = async ( Query['liquidityPositionsByChainIds'][] >([ ...args.chainIds - .filter((el): el is typeof SUSHISWAP_ENABLED_NETWORKS[number] => + .filter((el): el is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => SUSHISWAP_ENABLED_NETWORKS.includes(el), ) .map((chainId) => @@ -40,7 +40,7 @@ export const _liquidityPositionsByChainIds = async ( context: { ...context, chainId, - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, }).then((liquidityPositions: SushiSwapTypes.LiquidityPosition[]) => { @@ -58,7 +58,7 @@ export const _liquidityPositionsByChainIds = async ( }), ), ...args.chainIds - .filter((el): el is typeof TRIDENT_ENABLED_NETWORKS[number] => + .filter((el): el is (typeof TRIDENT_ENABLED_NETWORKS)[number] => TRIDENT_ENABLED_NETWORKS.includes(el), ) .map((chainId) => diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index b758881f74..b7631b8186 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, SUSHISWAP_V3_ENABLED_NETWORKS, SUSHISWAP_V3_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, @@ -12,14 +12,16 @@ import { chainName, chainShortNameToChainId } from 'sushi/chain' import { isPromiseFulfilled } from 'sushi/validate' import { + BucketData, Pair, QueryResolvers, getBuiltGraphSDK, } from '../../.graphclient/index.js' import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { transformPair } from '../../transformers/index.js' +import { tr } from 'date-fns/locale' const sdk = getBuiltGraphSDK() @@ -48,34 +50,33 @@ const transformV3PoolToPair = ( liquidityUSD: pool.totalValueLockedUSD, liquidityNative: pool.totalValueLockedETH, volumeUSD: pool.volumeUSD, - volumeNative: 0, volumeToken0: pool.volumeToken0, volumeToken1: pool.volumeToken1, - feesNative: 0, feesUSD: pool.feesUSD, txCount: pool.txCount, apr: 0, aprUpdatedAtTimestamp: 0, createdAtTimestamp: pool.createdAtTimestamp, - createdAtBlock: pool.createdAtBlockNumber, - hourSnapshots: pool.poolHourData.map((hourData) => ({ - id: hourData.id, - date: hourData.periodStartUnix, - volumeUSD: hourData.volumeUSD, - liquidityNative: 0, - liquidityUSD: hourData.tvlUSD, - transactionCount: hourData.txCount, - apr: 0, - })), - daySnapshots: pool.poolDayData.map((dayData) => ({ - id: dayData.id, - date: dayData.date, - volumeUSD: dayData.volumeUSD, - liquidityNative: 0, - liquidityUSD: dayData.tvlUSD, - transactionCount: dayData.txCount, - apr: 0, - })), + createdAtBlockNumber: pool.createdAtBlockNumber, + + // TODO: fix this, they should be fetched separately to avoid getting result in each time travel query. + + // hourSnapshots: pool.poolHourData.map((hourData) => ({ + // id: hourData.id, + // date: hourData.periodStartUnix, + // volumeUSD: hourData.volumeUSD, + // liquidityNative: 0, + // liquidityUSD: hourData.tvlUSD, + // transactionCount: hourData.txCount, + // })), + // daySnapshots: pool.poolDayData.map((dayData) => ({ + // id: dayData.id, + // date: dayData.date, + // volumeUSD: dayData.volumeUSD, + // liquidityNative: 0, + // liquidityUSD: dayData.tvlUSD, + // transactionCount: dayData.txCount, + // })), }) export const pairById: QueryResolvers['pairById'] = async ( @@ -107,7 +108,7 @@ export const pairById: QueryResolvers['pairById'] = async ( ]) const fetchSushiSwapPair = async (block?: { number: number }) => - context.SushiSwap.Query.pair({ + context.SushiSwapV2.Query.pair({ root, args: { ...args, id: address.toLowerCase(), block }, context: { @@ -116,44 +117,114 @@ export const pairById: QueryResolvers['pairById'] = async ( chainId, chainName: chainName[chainId], chainShortName: chainShortName[chainId], - url: - SUSHISWAP_SUBGRAPH_URL[ - chainId as typeof SUSHISWAP_ENABLED_NETWORKS[number] - ], + url: SUSHISWAP_V2_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], }, info, - }).then((pair: SushiSwapTypes.Pair | null) => { + }).then((pair: SushiSwapV2Types.Pair | null) => { if (!pair) return pair - return { ...pair, chainId, address } - }) - - const fetchTridentPair = async (block?: { number: number }) => - context.Trident.Query.pair({ - root, - args: { ...args, id: address.toLowerCase(), block }, - context: { - ...context, - now, + return { + ...pair, chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: - TRIDENT_SUBGRAPH_URL[ - chainId as typeof TRIDENT_ENABLED_NETWORKS[number] - ], - }, - info, - }).then((pair: TridentTypes.Pair | null) => { - if (!pair) return pair - return { ...pair, chainId, address } + address, + type: 'ALL', + swapFee: 30, + twapEnabled: true, + reserve0: (Number(pair.reserve0) * 10 ** pair.token0.decimals) + .toString() + .split('.')[0], + reserve1: (Number(pair.reserve1) * 10 ** pair.token1.decimals) + .toString() + .split('.')[0], + name: pair.token0.symbol + '-' + pair.token1.symbol, + source: 'SUSHISWAP_V2', + liquidity: (Number(pair.totalSupply) * 10 ** 18) + .toString() + .split('.')[0], + liquidityUSD: pair.reserveUSD, + liquidityNative: pair.reserveETH, + apr: 0, + aprUpdatedAtTimestamp: 0, + feesUSD: pair.volumeUSD * 0.003, + } }) + // const fetchV2DayBuckets = async () => + // context.SushiSwapV2.Query.SushiSwapV2PoolDayDataQuery({ + // root, + // args: { + // ...args, + // id: address.toLowerCase(), + // where: { + // pairAddress: address.toLowerCase(), + // }, + // orderBy: 'date', + // orderDirection: 'desc', + // }, + // context: { + // ...context, + // now, + // chainId, + // chainName: chainName[chainId], + // chainShortName: chainShortName[chainId], + // url: SUSHISWAP_V2_SUBGRAPH_URL[ + // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + // ], + // }, + // info, + // }).then((bucket: SushiSwapTypes.SushiSwapV2PoolDayData | null) => { + // if (!bucket) return bucket + // return { + // id: bucket.id, + // date: bucket.date, + // volumeUSD: bucket.volumeUSD, + // liquidityUSD: bucket.liquidityUSD, + // liquidityNative: 0, + // transactionCount: bucket.hourlyTxns, + // } + // }) + + // const fetchV2DayHourBuckets = async () => + // context.SushiSwapV2.Query.SushiSwapV2PoolHourDataQuery({ + // root, + // args: { + // ...args, + // id: address.toLowerCase(), + // where: { + // pairAddress: address.toLowerCase(), + // }, + // orderBy: 'date', + // orderDirection: 'desc', + // }, + // context: { + // ...context, + // now, + // chainId, + // chainName: chainName[chainId], + // chainShortName: chainShortName[chainId], + // url: SUSHISWAP_V2_SUBGRAPH_URL[ + // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + // ], + // }, + // info, + // }).then((bucket: SushiSwapTypes.SushiSwapV2PoolHourDataQuery | null) => { + // if (!bucket) return bucket + // return { + // id: bucket.id, + // date: bucket.date, + // volumeUSD: bucket.volumeUSD, + // liquidityUSD: bucket.liquidityUSD, + // liquidityNative: 0, + // transactionCount: bucket.hourlyTxns, + // } + // }) + const fetchSushiSwapV3Pair = async (block?: { number: number }) => { const sdk = getBuiltGraphSDK({ - url: - SUSHISWAP_V3_SUBGRAPH_URL[ - chainId as typeof SUSHISWAP_ENABLED_NETWORKS[number] - ], + url: SUSHISWAP_V3_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], }) const { pool } = await sdk.SushiSwapV3Pool({ @@ -164,20 +235,33 @@ export const pairById: QueryResolvers['pairById'] = async ( return transformV3PoolToPair(pool, chainId) } - const fetcher = async (block?: { number: number }) => { - const fetches: ReturnType< - typeof fetchSushiSwapPair | typeof fetchTridentPair - >[] = [] + // const fetchIsV2Pool = async() => + // context.SushiSwap.Query.PairOnlyId({ + // root, + // args: { ...args, id: address.toLowerCase() }, + // context: { + // ...context, + // now, + // chainId, + // chainName: chainName[chainId], + // chainShortName: chainShortName[chainId], + // url: SUSHISWAP_V2_SUBGRAPH_URL[ + // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + // ], + // }, + // info, + // }).then((pair: SushiSwapV2Types.Pair | null) => { + // return (pair?.id !== null) + // }) - if (SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { - fetches.push(fetchSushiSwapPair(block)) - } + const poolFetcher = async (isV2: boolean, block?: { number: number }) => { + const fetches: ReturnType[] = [] - if (TRIDENT_ENABLED_NETWORKS.includes(chainId)) { - fetches.push(fetchTridentPair(block)) + if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { + fetches.push(fetchSushiSwapPair(block)) } - if (SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { + if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { fetches.push(fetchSushiSwapV3Pair(block)) } @@ -190,13 +274,43 @@ export const pairById: QueryResolvers['pairById'] = async ( }) } + // const bucketFetcher = async (isV2: boolean) => { + // const fetches: ReturnType[] = [] + + // if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { + // fetches.push(fetchV2DayHourBuckets()) + // fetches.push(fetchV2DayBuckets()) + // } + + // // if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { + // // fetches.push(fetchV3DayHourBuckets()) + // // fetches.push(fetchV3DayBuckets()) + // // } + + // const [hourSnapshots, daySnapshots] = await Promise.all( + // fetches, + // ) + // // .then((results) => { + // // return results.map((result) => result?.status === 'fulfilled') + // // ? result.value + // // : [] + // // }) + + // return { hourSnapshots, daySnapshots } + // } + + // ping and check if the pair exists in V2, if not assume it's v3 + + // const isPoolV2 = await fetchIsV2Pool() + // console.log({ isPoolV2 }) const [pair, pair1d, pair2d, pair1w] = await Promise.all([ - fetcher(), - fetcher(oneDayBlock), - fetcher(twoDayBlock), - fetcher(oneWeekBlock), + poolFetcher(true), + poolFetcher(true, oneDayBlock), + poolFetcher(true, twoDayBlock), + poolFetcher(true, oneWeekBlock), + // bucketFetcher(isPoolV2), ]) - + console.log({ pair }) if (!pair) return null return transformPair({ @@ -204,5 +318,7 @@ export const pairById: QueryResolvers['pairById'] = async ( pair1d, pair2d, pair1w, + // hourlyBuckets: buckets.hourSnapshots, + // dailyBuckets: buckets.daySnapshots, }) } diff --git a/packages/graph-client/resolvers/pairs/pairsByChainId.ts b/packages/graph-client/resolvers/pairs/pairsByChainId.ts index ac2cb1c3a7..760f165377 100644 --- a/packages/graph-client/resolvers/pairs/pairsByChainId.ts +++ b/packages/graph-client/resolvers/pairs/pairsByChainId.ts @@ -5,14 +5,13 @@ import { QueryResolvers, QuerypairsByChainIdArgs, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { _pairsByChainIds } from './pairsByChainIds.js' export const _pairsByChainId = async ( root = {}, args: QuerypairsByChainIdArgs, - context: SushiSwapTypes.Context & TridentTypes.Context, + context: SushiSwapV2Types.Context, info: GraphQLResolveInfo, ): Promise => { return _pairsByChainIds( diff --git a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts index 781fc418df..f07f012eb5 100644 --- a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts +++ b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts @@ -1,9 +1,9 @@ // @ts-nocheck import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, - TRIDENT_SUBGRAPH_URL + TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { ChainId } from 'sushi/chain' @@ -51,21 +51,21 @@ export const _pairsByChainIds = async ( ...args, where: args?.where?.type_in ? { - ...args.where, - type_in: args.where.type_in.filter( - (el) => el === 'CONSTANT_PRODUCT_POOL', - ), - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - } + ...args.where, + type_in: args.where.type_in.filter( + (el) => el === 'CONSTANT_PRODUCT_POOL', + ), + id_not_in: getBlacklist(chainId, args?.where?.id_not_in), + } : { - ...args.where, - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - }, + ...args.where, + id_not_in: getBlacklist(chainId, args?.where?.id_not_in), + }, }, context: { ...context, chainId, - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, }).then((pairs: SushiSwapTypes.Pair[]) => { @@ -94,7 +94,7 @@ export const _pairsByChainIds = async ( context: { ...context, chainId, - url: TRIDENT_SUBGRAPH_URL[chainId] + url: TRIDENT_SUBGRAPH_URL[chainId], }, info, }).then((pairs: TridentTypes.Pair[]) => { diff --git a/packages/graph-client/resolvers/tokens/tokensByChainId.ts b/packages/graph-client/resolvers/tokens/tokensByChainId.ts index 036d610573..c1f0641783 100644 --- a/packages/graph-client/resolvers/tokens/tokensByChainId.ts +++ b/packages/graph-client/resolvers/tokens/tokensByChainId.ts @@ -5,14 +5,13 @@ import { QueryResolvers, QuerytokensByChainIdArgs, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { _tokensByChainIds } from './tokensByChainIds.js' export const _tokensByChainId = async ( root = {}, args: QuerytokensByChainIdArgs, - context: SushiSwapTypes.Context & TridentTypes.Context, + context: SushiSwapV2Types.Context, info: GraphQLResolveInfo, ): Promise => { return _tokensByChainIds( diff --git a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts index 6ca8ba165c..2a56f69051 100644 --- a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts +++ b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts @@ -1,7 +1,7 @@ // @ts-nocheck import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, TRIDENT_ENABLED_NETWORKS, TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' @@ -36,7 +36,7 @@ export const _tokensByChainIds = async ( return Promise.all([ ...args.chainIds .filter((el) => TRIDENT_ENABLED_NETWORKS.includes(el)) - .map((chainId: typeof TRIDENT_ENABLED_NETWORKS[number]) => + .map((chainId: (typeof TRIDENT_ENABLED_NETWORKS)[number]) => context.Trident.Query.tokens({ root, // @ts-ignore @@ -76,7 +76,7 @@ export const _tokensByChainIds = async ( ), ...args.chainIds .filter((el) => SUSHISWAP_ENABLED_NETWORKS.includes(el)) - .map((chainId: typeof SUSHISWAP_ENABLED_NETWORKS[number]) => + .map((chainId: (typeof SUSHISWAP_ENABLED_NETWORKS)[number]) => context.SushiSwap.Query.tokens({ root, // @ts-ignore @@ -93,7 +93,7 @@ export const _tokensByChainIds = async ( chainId, chainName: chainName[chainId], chainShortName: chainShortName[chainId], - url: SUSHISWAP_SUBGRAPH_URL[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, // @ts-ignore diff --git a/packages/graph-client/resolvers/user/crossChainUserPositions.ts b/packages/graph-client/resolvers/user/crossChainUserPositions.ts index 4b843efeee..554006dab4 100644 --- a/packages/graph-client/resolvers/user/crossChainUserPositions.ts +++ b/packages/graph-client/resolvers/user/crossChainUserPositions.ts @@ -21,7 +21,7 @@ export const crossChainUserPositions: QueryResolvers['crossChainUserPositions'] chainIds: args.chainIds, where: { user: args.id.toLowerCase(), - balance_gt: 0, + liquidityTokenBalance_gt: 0, }, }), sdk.CrossChainChefUser({ diff --git a/packages/graph-client/transformers/transformPair.ts b/packages/graph-client/transformers/transformPair.ts index 0a546931dd..a97968fddd 100644 --- a/packages/graph-client/transformers/transformPair.ts +++ b/packages/graph-client/transformers/transformPair.ts @@ -1,19 +1,21 @@ import { chainShortName } from 'sushi/chain' -import type { Pair } from '../.graphclient/index.js' -import type { Incentive } from '../lib/incentives.js' +import type { BucketData, Pair } from '../.graphclient/index.js' export function transformPair({ pair, pair1d, pair2d, pair1w, + hourlyBuckets, + dailyBuckets, }: { pair: Pair pair1d?: Pair pair2d?: Pair pair1w?: Pair - incentives?: Incentive[] + hourlyBuckets?: BucketData[] + dailyBuckets?: BucketData[] }) { const liquidity1dChange = pair1d ? pair.liquidityUSD / pair1d.liquidityUSD - 1 @@ -63,7 +65,10 @@ export function transformPair({ pair1d && pair2d ? (volume2d / pair1d.liquidityUSD) * 100 : 0 const utilisation1dChange = (utilisation1d / utilisation2d) * 100 - 100 - const feeApr = pair?.apr + // TODO: calculate apr + // const feeApr = pair?.apr + const feeApr = 0 + return { ...pair, @@ -85,5 +90,7 @@ export function transformPair({ utilisation2d, utilisation1dChange, feeApr, + hourSnapshots: hourlyBuckets, + daySnapshots: dailyBuckets, } } From ffe9eac84d64293add1fc5f869a3df4ee3d7cff8 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 22 May 2024 13:47:06 +0200 Subject: [PATCH 006/119] feat: v2 pool page working with new schema --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 1 - apps/evm/src/ui/pool/PoolChartGraph.tsx | 5 +- apps/evm/src/ui/pool/PoolChartTypes.tsx | 1 - packages/graph-client/.graphclientrc.yml | 2 + packages/graph-client/queries/pairs.graphql | 32 ++- .../factories/factoriesByChainIds.ts | 4 +- .../graph-client/resolvers/factories/index.ts | 2 +- .../graph-client/resolvers/pairs/pairById.ts | 198 ++++++++---------- .../transformers/transformPair.ts | 13 +- 9 files changed, 130 insertions(+), 128 deletions(-) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index e56aeb65f2..d153b2cdc7 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -21,7 +21,6 @@ export const useGraphPool = (pool: Pool) => { } = useSWR(getGraphPoolUrl(pool.id), async (url) => fetch(url).then((data) => data.json()), ) - console.log({graphPool}) const { token0, token1, liquidityToken } = useTokensFromPool(pool) diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index 21bb953cec..5764ed445f 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -26,7 +26,6 @@ interface PoolChartProps { | PoolChartType.Volume | PoolChartType.Fees | PoolChartType.TVL - | PoolChartType.APR period: PoolChartPeriod address: string chainId: ChainId @@ -64,9 +63,7 @@ export const PoolChartGraph: FC = ({ acc[1].push(Number(cur.volumeUSD)) } else if (chart === PoolChartType.TVL) { acc[1].push(Number(cur.liquidityUSD)) - } else if (chart === PoolChartType.APR) { - acc[1].push(Number(cur.apr)) - } + } } return acc }, diff --git a/apps/evm/src/ui/pool/PoolChartTypes.tsx b/apps/evm/src/ui/pool/PoolChartTypes.tsx index 93d484a62f..7d957f78bf 100644 --- a/apps/evm/src/ui/pool/PoolChartTypes.tsx +++ b/apps/evm/src/ui/pool/PoolChartTypes.tsx @@ -5,7 +5,6 @@ export enum PoolChartType { Volume = 'Volume', TVL = 'TVL', Fees = 'Fees', - APR = 'APR', Depth = 'Depth', } diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml index 7314f4d074..e4daa0c500 100644 --- a/packages/graph-client/.graphclientrc.yml +++ b/packages/graph-client/.graphclientrc.yml @@ -357,6 +357,8 @@ additionalTypeDefs: | txCount1dChange: BigDecimal txCount1w: BigDecimal feeApr: BigDecimal + daySnapshots: [BucketData]! + hourSnapshots: [BucketData]! } extend type LiquidityPosition { chainId: BigInt! diff --git a/packages/graph-client/queries/pairs.graphql b/packages/graph-client/queries/pairs.graphql index 23ed22177a..ff0a418760 100644 --- a/packages/graph-client/queries/pairs.graphql +++ b/packages/graph-client/queries/pairs.graphql @@ -3,7 +3,7 @@ fragment PairFields on Pair { chainId address # type - # swapFee EXTEND.. + swapFee # twapEnabled name token0 { @@ -22,9 +22,12 @@ fragment PairFields on Pair { createdAtTimestamp reserve0 reserve1 - liquidity: totalSupply - liquidityUSD: reserveUSD - liquidityNative: reserveETH + totalSupply + reserveUSD + reserveETH + liquidity + liquidityUSD + liquidityNative # token0Price # token1Price volumeUSD @@ -32,6 +35,23 @@ fragment PairFields on Pair { volumeToken1 feesUSD txCount + + hourSnapshots { + id + date + volumeUSD + liquidityUSD + liquidityNative + transactionCount + } + daySnapshots { + id + date + volumeUSD + liquidityUSD + liquidityNative + transactionCount + } } fragment TimeTravelPairFields on Pair { @@ -100,7 +120,7 @@ query PairsByChainIds( } -query SushiSwapV2PoolHourData($first: Int = 1000, $skip: Int, $orderBy: PairHourData_orderBy, $orderDirection: OrderDirection, $where: PairHourData_filter) { +query V2PoolHourData($first: Int = 1000, $skip: Int, $orderBy: PairHourData_orderBy, $orderDirection: OrderDirection, $where: PairHourData_filter) { pairHourDatas: pairHourDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id hourStartUnix @@ -121,7 +141,7 @@ query SushiSwapV2PoolHourData($first: Int = 1000, $skip: Int, $orderBy: PairHour } -query SushiSwapV2PoolDayData($first: Int = 1000, $skip: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter) { +query V2PoolDayData($first: Int = 1000, $skip: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter) { pairDayDatas: pairDayDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id date diff --git a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts index 1a9b231f78..a6ffa683d9 100644 --- a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts @@ -7,7 +7,7 @@ import { import { isPromiseFulfilled } from 'sushi/validate' import { - Factory, + UniswapFactory, Query, QueryResolvers, Resolvers, @@ -52,7 +52,7 @@ export const factoriesByChainIds: QueryResolvers['factoriesByChainIds'] = } export const resolvers: Resolvers = { - Factory: { + UniswapFactory: { chainId: (root, args, context, info) => Number(root.chainId || context.chainId || 1), }, diff --git a/packages/graph-client/resolvers/factories/index.ts b/packages/graph-client/resolvers/factories/index.ts index 2f70ea3023..d948eb190a 100644 --- a/packages/graph-client/resolvers/factories/index.ts +++ b/packages/graph-client/resolvers/factories/index.ts @@ -2,7 +2,7 @@ import { Resolvers } from '../../.graphclient/index.js' import { factoriesByChainIds } from './factoriesByChainIds.js' // import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' export const resolvers: Resolvers = { - Factory: { + UniswapFactory: { chainId: (root, args, context, info) => Number(root.chainId || context.chainId || 1), }, diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index b7631b8186..8075314ca5 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -5,23 +5,19 @@ import { SUSHISWAP_V2_SUBGRAPH_URL, SUSHISWAP_V3_ENABLED_NETWORKS, SUSHISWAP_V3_SUBGRAPH_URL, - TRIDENT_ENABLED_NETWORKS, - TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' import { chainName, chainShortNameToChainId } from 'sushi/chain' +import { withoutScientificNotation } from 'sushi/format' import { isPromiseFulfilled } from 'sushi/validate' - import { BucketData, Pair, QueryResolvers, getBuiltGraphSDK, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' +import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' import { transformPair } from '../../transformers/index.js' -import { tr } from 'date-fns/locale' const sdk = getBuiltGraphSDK() @@ -40,10 +36,20 @@ const transformV3PoolToPair = ( token0: pool.token0, token1: pool.token1, source: 'SUSHISWAP_V3', - reserve0: (Number(pool.totalValueLockedToken0) * 10 ** pool.token0.decimals) + reserve0: withoutScientificNotation( + ( + Number(pool.totalValueLockedToken0) * + 10 ** pool.token0.decimals + ).toFixed(), + ) .toString() .split('.')[0], - reserve1: (Number(pool.totalValueLockedToken1) * 10 ** pool.token1.decimals) + reserve1: withoutScientificNotation( + ( + Number(pool.totalValueLockedToken1) * + 10 ** pool.token1.decimals + ).toFixed(), + ) .toString() .split('.')[0], liquidity: pool.liquidity, @@ -131,15 +137,21 @@ export const pairById: QueryResolvers['pairById'] = async ( type: 'ALL', swapFee: 30, twapEnabled: true, - reserve0: (Number(pair.reserve0) * 10 ** pair.token0.decimals) + reserve0: withoutScientificNotation( + (Number(pair.reserve0) * 10 ** pair.token0.decimals).toFixed(), + ) .toString() .split('.')[0], - reserve1: (Number(pair.reserve1) * 10 ** pair.token1.decimals) + reserve1: withoutScientificNotation( + (Number(pair.reserve1) * 10 ** pair.token1.decimals).toFixed(), + ) .toString() .split('.')[0], name: pair.token0.symbol + '-' + pair.token1.symbol, source: 'SUSHISWAP_V2', - liquidity: (Number(pair.totalSupply) * 10 ** 18) + liquidity: withoutScientificNotation( + (Number(pair.totalSupply) * 10 ** 18).toFixed(), + ) .toString() .split('.')[0], liquidityUSD: pair.reserveUSD, @@ -150,75 +162,55 @@ export const pairById: QueryResolvers['pairById'] = async ( } }) - // const fetchV2DayBuckets = async () => - // context.SushiSwapV2.Query.SushiSwapV2PoolDayDataQuery({ - // root, - // args: { - // ...args, - // id: address.toLowerCase(), - // where: { - // pairAddress: address.toLowerCase(), - // }, - // orderBy: 'date', - // orderDirection: 'desc', - // }, - // context: { - // ...context, - // now, - // chainId, - // chainName: chainName[chainId], - // chainShortName: chainShortName[chainId], - // url: SUSHISWAP_V2_SUBGRAPH_URL[ - // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - // ], - // }, - // info, - // }).then((bucket: SushiSwapTypes.SushiSwapV2PoolDayData | null) => { - // if (!bucket) return bucket - // return { - // id: bucket.id, - // date: bucket.date, - // volumeUSD: bucket.volumeUSD, - // liquidityUSD: bucket.liquidityUSD, - // liquidityNative: 0, - // transactionCount: bucket.hourlyTxns, - // } - // }) + const fetchV2DayBuckets = async () => { + const sdk = getBuiltGraphSDK({ + url: SUSHISWAP_V2_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], + }) - // const fetchV2DayHourBuckets = async () => - // context.SushiSwapV2.Query.SushiSwapV2PoolHourDataQuery({ - // root, - // args: { - // ...args, - // id: address.toLowerCase(), - // where: { - // pairAddress: address.toLowerCase(), - // }, - // orderBy: 'date', - // orderDirection: 'desc', - // }, - // context: { - // ...context, - // now, - // chainId, - // chainName: chainName[chainId], - // chainShortName: chainShortName[chainId], - // url: SUSHISWAP_V2_SUBGRAPH_URL[ - // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - // ], - // }, - // info, - // }).then((bucket: SushiSwapTypes.SushiSwapV2PoolHourDataQuery | null) => { - // if (!bucket) return bucket - // return { - // id: bucket.id, - // date: bucket.date, - // volumeUSD: bucket.volumeUSD, - // liquidityUSD: bucket.liquidityUSD, - // liquidityNative: 0, - // transactionCount: bucket.hourlyTxns, - // } - // }) + const { pairDayDatas } = await sdk.V2PoolDayData({ + first: 730, + where: { + pairAddress: address.toLowerCase(), + }, + orderBy: 'date', + orderDirection: 'desc', + }) + return pairDayDatas.map((bucket) => ({ + id: bucket.id, + date: bucket.date, + volumeUSD: bucket.dailyVolumeUSD, + liquidityUSD: bucket.reserveUSD, + liquidityNative: 0, + transactionCount: bucket.dailyTxns, + })) + } + + const fetchV2DayHourBuckets = async () => { + const sdk = getBuiltGraphSDK({ + url: SUSHISWAP_V2_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], + }) + + const { pairHourDatas } = await sdk.V2PoolHourData({ + first: 168, + where: { + pair: address.toLowerCase(), + }, + orderBy: 'hourStartUnix', + orderDirection: 'desc', + }) + return pairHourDatas.map((bucket) => ({ + id: bucket.id, + date: bucket.hourStartUnix, + volumeUSD: bucket.hourlyVolumeUSD, + liquidityUSD: bucket.reserveUSD, + liquidityNative: 0, + transactionCount: bucket.hourlyTxns, + })) + } const fetchSushiSwapV3Pair = async (block?: { number: number }) => { const sdk = getBuiltGraphSDK({ @@ -236,7 +228,7 @@ export const pairById: QueryResolvers['pairById'] = async ( } // const fetchIsV2Pool = async() => - // context.SushiSwap.Query.PairOnlyId({ + // context.SushiSwapV2.Query.PairOnlyId({ // root, // args: { ...args, id: address.toLowerCase() }, // context: { @@ -274,43 +266,37 @@ export const pairById: QueryResolvers['pairById'] = async ( }) } - // const bucketFetcher = async (isV2: boolean) => { - // const fetches: ReturnType[] = [] - - // if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { - // fetches.push(fetchV2DayHourBuckets()) - // fetches.push(fetchV2DayBuckets()) - // } + const bucketFetcher = async (isV2: boolean) => { + // const fetches: ReturnType[] = [] - // // if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { - // // fetches.push(fetchV3DayHourBuckets()) - // // fetches.push(fetchV3DayBuckets()) - // // } + if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { + // fetches.push(fetchV2DayHourBuckets()) + // fetches.push(fetchV2DayBuckets()) + const [ hourSnapshots, daySnapshots ] = await Promise.all([ + fetchV2DayHourBuckets(), + fetchV2DayBuckets(), + ]) + return { hourSnapshots, daySnapshots } + } - // const [hourSnapshots, daySnapshots] = await Promise.all( - // fetches, - // ) - // // .then((results) => { - // // return results.map((result) => result?.status === 'fulfilled') - // // ? result.value - // // : [] - // // }) + // if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { + // fetches.push(fetchV3DayHourBuckets()) + // fetches.push(fetchV3DayBuckets()) + // } - // return { hourSnapshots, daySnapshots } - // } + } // ping and check if the pair exists in V2, if not assume it's v3 // const isPoolV2 = await fetchIsV2Pool() // console.log({ isPoolV2 }) - const [pair, pair1d, pair2d, pair1w] = await Promise.all([ + const [pair, pair1d, pair2d, pair1w, buckets] = await Promise.all([ poolFetcher(true), poolFetcher(true, oneDayBlock), poolFetcher(true, twoDayBlock), poolFetcher(true, oneWeekBlock), - // bucketFetcher(isPoolV2), + bucketFetcher(true), ]) - console.log({ pair }) if (!pair) return null return transformPair({ @@ -318,7 +304,7 @@ export const pairById: QueryResolvers['pairById'] = async ( pair1d, pair2d, pair1w, - // hourlyBuckets: buckets.hourSnapshots, - // dailyBuckets: buckets.daySnapshots, + daySnapshots: buckets.daySnapshots, + hourSnapshots: buckets.hourSnapshots, }) } diff --git a/packages/graph-client/transformers/transformPair.ts b/packages/graph-client/transformers/transformPair.ts index a97968fddd..d2221028fd 100644 --- a/packages/graph-client/transformers/transformPair.ts +++ b/packages/graph-client/transformers/transformPair.ts @@ -7,15 +7,15 @@ export function transformPair({ pair1d, pair2d, pair1w, - hourlyBuckets, - dailyBuckets, + hourSnapshots, + daySnapshots, }: { pair: Pair pair1d?: Pair pair2d?: Pair pair1w?: Pair - hourlyBuckets?: BucketData[] - dailyBuckets?: BucketData[] + hourSnapshots: BucketData[] + daySnapshots: BucketData[] }) { const liquidity1dChange = pair1d ? pair.liquidityUSD / pair1d.liquidityUSD - 1 @@ -69,7 +69,6 @@ export function transformPair({ // const feeApr = pair?.apr const feeApr = 0 - return { ...pair, id: `${chainShortName[pair.chainId]}:${pair.id}`, @@ -90,7 +89,7 @@ export function transformPair({ utilisation2d, utilisation1dChange, feeApr, - hourSnapshots: hourlyBuckets, - daySnapshots: dailyBuckets, + hourSnapshots, + daySnapshots, } } From c48f50dd017ae5c008363c598641fcdf74d8ca1c Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 22 May 2024 16:12:46 +0000 Subject: [PATCH 007/119] chore(optimization): #1 --- apis/extractor/package.json | 6 +- apis/router/package.json | 6 +- apis/tokens/package.json | 4 +- apps/evm/next.config.mjs | 7 +- apps/evm/package.json | 9 +- .../SushiXSwap2/adapters/SquidAdapter.ts | 4 +- .../swap/useCrossChainTrade/useSquidRoute.ts | 2 +- apps/evm/src/ui/stake/VotingPowerProvider.tsx | 4 +- config/wagmi/package.json | 2 +- jobs/pool/package.json | 4 +- packages/bonds-sdk/package.json | 2 +- packages/client/package.json | 2 +- packages/extractor/package.json | 2 +- packages/graph-client/.graphclientrc.yml | 20 +- packages/graph-client/package.json | 2 +- .../graph-client/queries/concetrated.graphql | 181 --- .../graph-client/queries/deprecated.graphql | 165 --- .../graph-client/queries/masterchef.graphql | 21 - .../graph-client/queries/sushiswap-v3.graphql | 230 ++-- .../resolvers/concentrated/index.ts | 2 - .../concentrated/poolsByTokenPair.ts | 8 +- .../resolvers/concentrated/ticksById.ts | 51 - packages/react-query/package.json | 8 +- packages/steer-sdk/package.json | 8 +- packages/sushi/package.json | 6 +- .../entities/NonfungiblePositionManager.ts | 4 +- .../src/router/get-currency-combinations.ts | 3 +- packages/ui/package.json | 4 +- packages/wagmi/package.json | 12 +- pnpm-lock.yaml | 1059 +++++++---------- protocols/route-processor/package.json | 2 +- protocols/tines-sandbox/package.json | 2 +- 32 files changed, 640 insertions(+), 1202 deletions(-) delete mode 100644 packages/graph-client/queries/concetrated.graphql delete mode 100644 packages/graph-client/resolvers/concentrated/ticksById.ts diff --git a/apis/extractor/package.json b/apis/extractor/package.json index 3806321201..ce383aacf0 100644 --- a/apis/extractor/package.json +++ b/apis/extractor/package.json @@ -30,13 +30,13 @@ "dependencies": { "@sentry/node": "7.110.0", "@sushiswap/extractor": "workspace:*", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "cors": "2.8.5", "dotenv": "16.3.1", "express": "4.18.2", "sushi": "workspace:*", - "viem": "2.8.14", - "wagmi": "2.5.20", + "viem": "2.10.11", + "wagmi": "2.9.2", "zod": "3.21.4" }, "devDependencies": { diff --git a/apis/router/package.json b/apis/router/package.json index 2b69797465..6e9302dfbe 100644 --- a/apis/router/package.json +++ b/apis/router/package.json @@ -31,13 +31,13 @@ "dependencies": { "@sentry/node": "7.110.0", "@sushiswap/extractor": "workspace:*", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "cors": "2.8.5", "dotenv": "16.3.1", "express": "4.18.2", "sushi": "workspace:*", - "viem": "2.8.14", - "wagmi": "2.5.20", + "viem": "2.10.11", + "wagmi": "2.9.2", "zod": "3.21.4" }, "devDependencies": { diff --git a/apis/tokens/package.json b/apis/tokens/package.json index 2c16debcac..d7b5ac7a2d 100644 --- a/apis/tokens/package.json +++ b/apis/tokens/package.json @@ -30,11 +30,11 @@ "@sushiswap/wagmi-config": "workspace:*", "@upstash/redis": "1.22.1", "@vercel/node": "3.0.9", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "drizzle-orm": "^0.29.5", "postgres": "^3.4.3", "sushi": "workspace:*", - "viem": "2.8.14", + "viem": "2.10.11", "zod": "3.21.4" }, "devDependencies": { diff --git a/apps/evm/next.config.mjs b/apps/evm/next.config.mjs index 4dcc7d22c1..4a06670ed1 100644 --- a/apps/evm/next.config.mjs +++ b/apps/evm/next.config.mjs @@ -2,12 +2,15 @@ import defaultNextConfig from '@sushiswap/nextjs-config' import { withAxiom } from 'next-axiom' +import withBundleAnalyzer from '@next/bundle-analyzer' +const bundleAnalyzer = withBundleAnalyzer({ enabled: true }) + const ACADEMY_URL = process.env.ACADEMY_URL || 'https://academy.sushi.com' const BLOG_URL = process.env.BLOG_URL || 'https://blog.sushi.com' const FURO_URL = process.env.FURO_URL || 'https://furo.sushi.com' /** @type {import('next').NextConfig} */ -const nextConfig = { +const nextConfig = bundleAnalyzer({ ...defaultNextConfig, logging: { fetches: { @@ -95,7 +98,7 @@ const nextConfig = { // widenClientFileUpload: true, // automaticVercelMonitors: true, // }, -} +}) /** @type {import('@sentry/nextjs').SentryWebpackPluginOptions} */ // const sentryWebpackPluginOptions = { diff --git a/apps/evm/package.json b/apps/evm/package.json index 7952b16a6d..b4acdeda36 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -20,6 +20,7 @@ "@heroicons/react-v1": "npm:@heroicons/react@v1", "@hookform/resolvers": "3.3.1", "@layerzerolabs/scan-client": "0.0.6", + "@next/bundle-analyzer": "^14.2.3", "@octokit/auth-app": "4.0.7", "@radix-ui/react-slot": "1.0.2", "@sentry/nextjs": "7.110.0", @@ -46,8 +47,8 @@ "@upstash/redis": "1.22.1", "@vercel/analytics": "1.1.1", "@vercel/edge-config": "0.4.1", - "@wagmi/connectors": "^4.1.14", - "@wagmi/core": "2.6.17", + "@wagmi/connectors": "^5.0.2", + "@wagmi/core": "2.10.2", "cors": "2.8.5", "d3": "7.8.4", "date-fns": "2.30.0", @@ -74,8 +75,8 @@ "sushi": "workspace:*", "swr": "2.1.5", "tiny-invariant": "1.3.1", - "viem": "2.8.14", - "wagmi": "2.5.20", + "viem": "2.10.11", + "wagmi": "2.9.2", "zod": "3.21.4" }, "devDependencies": { diff --git a/apps/evm/src/lib/swap/useCrossChainTrade/SushiXSwap2/adapters/SquidAdapter.ts b/apps/evm/src/lib/swap/useCrossChainTrade/SushiXSwap2/adapters/SquidAdapter.ts index 394c4ae7d4..65ef677814 100644 --- a/apps/evm/src/lib/swap/useCrossChainTrade/SushiXSwap2/adapters/SquidAdapter.ts +++ b/apps/evm/src/lib/swap/useCrossChainTrade/SushiXSwap2/adapters/SquidAdapter.ts @@ -1,8 +1,8 @@ import { ChainType, DexName, - Hook, - RouteRequest, + type Hook, + type RouteRequest, SquidCallType, } from '@0xsquid/squid-types' import { UseTradeReturn } from '@sushiswap/react-query' diff --git a/apps/evm/src/lib/swap/useCrossChainTrade/useSquidRoute.ts b/apps/evm/src/lib/swap/useCrossChainTrade/useSquidRoute.ts index be0115a32f..34a59fcaa3 100644 --- a/apps/evm/src/lib/swap/useCrossChainTrade/useSquidRoute.ts +++ b/apps/evm/src/lib/swap/useCrossChainTrade/useSquidRoute.ts @@ -1,4 +1,4 @@ -import { RouteRequest } from '@0xsquid/squid-types' +import type { RouteRequest } from '@0xsquid/squid-types' import { useQuery } from '@tanstack/react-query' import { useSquid } from './useSquid' diff --git a/apps/evm/src/ui/stake/VotingPowerProvider.tsx b/apps/evm/src/ui/stake/VotingPowerProvider.tsx index e33a4bb626..503c027d53 100644 --- a/apps/evm/src/ui/stake/VotingPowerProvider.tsx +++ b/apps/evm/src/ui/stake/VotingPowerProvider.tsx @@ -1,6 +1,5 @@ 'use client' -import snapshot from '@snapshot-labs/snapshot.js' import { MASTERCHEF_ADDRESS, useAccount, @@ -89,6 +88,9 @@ export const VotingPowerProvider: FC<{ queryFn: async () => { if (!address) throw new Error() + // The import is unnecessarily big and gets bundled with the whole app + const snapshot = (await import('@snapshot-labs/snapshot.js')).default + const resp = await snapshot.utils.getVp( address, '1', diff --git a/config/wagmi/package.json b/config/wagmi/package.json index 6362321301..6568ed5265 100644 --- a/config/wagmi/package.json +++ b/config/wagmi/package.json @@ -45,7 +45,7 @@ "@sushiswap/jest-config": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "jest": "29.7.0", "sushi": "workspace:*", "typescript": "5.2.2" diff --git a/jobs/pool/package.json b/jobs/pool/package.json index be955fb123..bd3b88daf8 100644 --- a/jobs/pool/package.json +++ b/jobs/pool/package.json @@ -61,7 +61,7 @@ "@sushiswap/graph-config": "workspace:*", "@sushiswap/steer-sdk": "workspace:*", "@sushiswap/wagmi-config": "workspace:*", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "@whatwg-node/fetch": "0.8.4", "connect-timeout": "1.9.0", "date-fns": "2.29.3", @@ -71,7 +71,7 @@ "lodash.zip": "4.2.0", "sushi": "workspace:*", "tsx": "^4.7.1", - "viem": "2.8.14", + "viem": "2.10.11", "zod": "3.21.4" }, "devDependencies": { diff --git a/packages/bonds-sdk/package.json b/packages/bonds-sdk/package.json index 22a289fbb9..44a3e476e2 100644 --- a/packages/bonds-sdk/package.json +++ b/packages/bonds-sdk/package.json @@ -67,7 +67,7 @@ "jest": "29.7.0", "ts-jest": "29.1.1", "typescript": "5.2.2", - "viem": "2.8.14" + "viem": "2.10.11" }, "peerDependencies": { "react": "18.2.0", diff --git a/packages/client/package.json b/packages/client/package.json index fd3c8881df..6900ed38ae 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -72,7 +72,7 @@ "@whatwg-node/fetch": "0.8.4", "deepmerge-ts": "^4.3.0", "tslib": "latest", - "viem": "2.8.14", + "viem": "2.10.11", "zod": "3.21.4" }, "devDependencies": { diff --git a/packages/extractor/package.json b/packages/extractor/package.json index f8bb6394ac..ba51a83574 100644 --- a/packages/extractor/package.json +++ b/packages/extractor/package.json @@ -36,7 +36,7 @@ "@uniswap/v3-core": "1.0.1", "abitype": "0.9.8", "sushi": "workspace:*", - "viem": "2.8.14" + "viem": "2.10.11" }, "devDependencies": { "@sushiswap/jest-config": "workspace:*", diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml index be6cc5b965..2354eea01d 100644 --- a/packages/graph-client/.graphclientrc.yml +++ b/packages/graph-client/.graphclientrc.yml @@ -180,19 +180,6 @@ sources: graphql: endpoint: https://{context.node:api.thegraph.com/index-node/graphql} - - name: Concentrated - handler: - graphql: - endpoint: https://{context.url:api.thegraph.com/subgraphs/name/uniswap/uniswap-v3} - retry: 3 - transforms: - - prefix: - value: CONCENTRATED_ - includeRootOperations: true - includeTypes: true - ignore: - - _SubgraphErrorPolicy_ - - name: SushiSwapV3 handler: graphql: @@ -532,15 +519,10 @@ additionalTypeDefs: | block: Block_height ): [Token!]! - # CONCENTRADED - ticksById( - id: ID! - ): [CONCENTRATED_Tick!]! - poolsByTokenPair( tokenId0: String! tokenId1: String! - ): [CONCENTRATED_Pool!]! + ): [SUSHISWAP_V3_Pool!]! # TODO: REFACTOR BELOW crossChainChefUser( diff --git a/packages/graph-client/package.json b/packages/graph-client/package.json index bdc750f048..26d19997f5 100644 --- a/packages/graph-client/package.json +++ b/packages/graph-client/package.json @@ -69,7 +69,7 @@ "@sushiswap/typescript-config": "workspace:*", "@types/jest": "29.5.5", "@types/node": "20", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "graphql": "16.6.0", "jest": "29.7.0", "sushi": "workspace:*", diff --git a/packages/graph-client/queries/concetrated.graphql b/packages/graph-client/queries/concetrated.graphql deleted file mode 100644 index c7a9eae50b..0000000000 --- a/packages/graph-client/queries/concetrated.graphql +++ /dev/null @@ -1,181 +0,0 @@ -query TicksById($id: ID!) { - ticks: ticksById(id: $id) { - id - poolAddress - tickIdx - liquidityGross - liquidityNet - price0 - price1 - volumeToken0 - volumeToken1 - volumeUSD - untrackedVolumeUSD - feesUSD - collectedFeesToken0 - collectedFeesToken1 - collectedFeesUSD - createdAtTimestamp - createdAtBlockNumber - liquidityProviderCount - feeGrowthOutside0X128 - feeGrowthOutside1X128 - } -} - -query PoolsByTokenPair($tokenId0: String!, $tokenId1: String!) { - pools: poolsByTokenPair(tokenId0: $tokenId0, tokenId1: $tokenId1) { - id - feeTier - liquidity - sqrtPrice - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - token0Price - token1Price - tick - observationIndex - volumeToken0 - volumeToken1 - volumeUSD - untrackedVolumeUSD - feesUSD - collectedFeesToken0 - collectedFeesToken1 - collectedFeesUSD - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - totalValueLockedUSDUntracked - liquidityProviderCount - } -} - -query V3Factories($chainIds: [BigInt!]!) { - factories: v3factoriesByChainIds(chainIds: $chainIds) { - id - chainId - totalValueLockedUSD - totalVolumeUSD - poolCount - } -} - -query V3Transactions($first: Int = 100, $skip: Int = 0, $orderBy: CONCENTRATED_Transaction_orderBy = timestamp, $orderDir: CONCENTRATED_OrderDirection = desc, $where: CONCENTRATED_Transaction_filter) { - transactions: CONCENTRATED_transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - timestamp - blockNumber - mints { - id - owner - sender - origin - amount - amount0 - amount1 - amountUSD - logIndex - } - burns { - id - owner - origin - amount - amount0 - amount1 - amountUSD - logIndex - } - swaps { - id - sender - recipient - origin - amount0 - amount1 - amountUSD - logIndex - } - collects { - id - owner - amount0 - amount1 - amountUSD - logIndex - } - } -} - -query V3Burns($first: Int = 100, $skip: Int = 0, $orderBy: CONCENTRATED_Burn_orderBy = timestamp, $orderDir: CONCENTRATED_OrderDirection = desc, $where: CONCENTRATED_Burn_filter) { - burns: CONCENTRATED_burns(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - origin - amount - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Mints($first: Int = 100, $skip: Int = 0, $orderBy: CONCENTRATED_Mint_orderBy = timestamp, $orderDir: CONCENTRATED_OrderDirection = desc, $where: CONCENTRATED_Mint_filter) { - mints: CONCENTRATED_mints(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - sender - origin - amount - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Swaps($first: Int = 100, $skip: Int = 0, $orderBy: CONCENTRATED_Swap_orderBy = timestamp, $orderDir: CONCENTRATED_OrderDirection = desc, $where: CONCENTRATED_Swap_filter) { - swaps: CONCENTRATED_swaps(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - sender - recipient - origin - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Collects($first: Int = 100, $skip: Int = 0, $orderBy: CONCENTRATED_Collect_orderBy = timestamp, $orderDir: CONCENTRATED_OrderDirection = desc, $where: CONCENTRATED_Collect_filter) { - collects: CONCENTRATED_collects(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} diff --git a/packages/graph-client/queries/deprecated.graphql b/packages/graph-client/queries/deprecated.graphql index c7df549bb2..00393d158a 100644 --- a/packages/graph-client/queries/deprecated.graphql +++ b/packages/graph-client/queries/deprecated.graphql @@ -1,130 +1,3 @@ -fragment deprecated_TokenFields on deprecated_Token { - id - chainId - name - symbol - decimals - derivedETH -} - -fragment deprecated_PairFields on deprecated_Pair { - id - chainId - name - token0 { - ...deprecated_TokenFields - } - token1 { - ...deprecated_TokenFields - } - totalSupply - reserveUSD - volumeUSD -} - -fragment deprecated_LiquidityPositionFields on deprecated_LiquidityPosition { - id - chainId - liquidityTokenBalance - pair { - ...deprecated_PairFields - } - # user { - # id - # } - # snapshots { - # id - # } - # block - # timestamp -} - -query deprecated_Pairs( - $skip: Int = 0 - $first: Int = 100 - $where: deprecated_Pair_filter # $block: Block_height -) { - pairs: deprecated_pairs( - skip: $skip - first: $first - where: $where # block: $block - ) { - ...deprecated_PairFields - } -} - -query deprecated_LiquidityPositions( - $skip: Int = 0 - $first: Int = 100 - # $orderBy: deprecated_LiquidityPosition_orderBy, - # $orderDirection: OrderDirection, - $where: deprecated_LiquidityPosition_filter # $block: Block_height -) { - liquidityPositions: deprecated_liquidityPositions( - skip: $skip - first: $first - # orderBy: $orderBy, - # orderDirection: $orderDirection, - where: $where # block: $block, - ) { - ...deprecated_LiquidityPositionFields - } -} -# query ExchangeTokens( -# $skip: Int = 0, -# $first: Int = 100, -# $where: deprecated_Token_filter, -# # $block: Block_height -# ) { -# tokens: deprecated_tokens( -# skip: $skip, -# first: $first, -# where: $where, -# # block: $block -# ) { -# ...deprecated_TokenFields -# } -# } - -query deprecated_TokensAndBundle( - $skip: Int = 0 - $first: Int = 100 - $where: deprecated_Token_filter # $block: Block_height -) { - tokens: deprecated_tokens( - first: $first - skip: $skip - where: $where # block: $block - ) { - id - name - symbol - decimals - derivedETH - } - bundle: deprecated_bundle( - id: 1 # block: $block - ) { - ethPrice - } -} - -# query ExchangeBundle( -# $skip: Int = 0, -# $first: Int = 100, -# $where: deprecated_Bundle_filter, -# # $block: Block_height -# ) { -# bundles: deprecated_bundles( -# skip: $skip, -# first: $first, -# where: $where, -# # block: $block -# ) { -# ethPrice -# } -# } - query CrossChainToken($id: ID!, $now: Int!, $chainId: BigInt!) { crossChainToken(id: $id, now: $now, chainId: $chainId) { id @@ -170,41 +43,3 @@ query CrossChainToken($id: ID!, $now: Int!, $chainId: BigInt!) { } } } - -query CrossChainStats( - $first: Int = 1000 - $skip: Int = 0 - $where: Pair_filter - $orderBy: Pair_orderBy - $orderDirection: OrderDirection - $block: Block_height - $chainIds: [BigInt!]! - $now: Int! -) { - crossChainStats( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - now: $now - ) { - chainId - hourSnapshots(skip: 1, first: 168, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityUSD - apr - } - daySnapshots(skip: 1, first: 730, orderBy: date, orderDirection: desc) { - id - date - volumeUSD - liquidityUSD - apr - } - } -} diff --git a/packages/graph-client/queries/masterchef.graphql b/packages/graph-client/queries/masterchef.graphql index ad462784cc..69027ee53f 100644 --- a/packages/graph-client/queries/masterchef.graphql +++ b/packages/graph-client/queries/masterchef.graphql @@ -1,24 +1,3 @@ -query MasterChefPools($skip: Int = 0, $first: Int = 100, $where: Pool_filter, $block: Block_height) { - MASTERCHEF_V1_pools(first: $first, skip: $skip, where: $where, block: $block) { - id - pair - allocPoint - slpBalance - masterChef { - totalAllocPoint - } - } - MASTERCHEF_V2_pools(first: $first, skip: $skip, where: $where, block: $block) { - id - pair - allocPoint - slpBalance - masterChef { - totalAllocPoint - } - } -} - query CrossChainChefUser( $skip: Int = 0 $first: Int = 100 diff --git a/packages/graph-client/queries/sushiswap-v3.graphql b/packages/graph-client/queries/sushiswap-v3.graphql index 8361aec335..d02527d9cc 100644 --- a/packages/graph-client/queries/sushiswap-v3.graphql +++ b/packages/graph-client/queries/sushiswap-v3.graphql @@ -1,74 +1,3 @@ - -query SushiSwapV3PoolDayData( - $id: ID! - $block: SUSHISWAP_V3_Block_height, - $subgraphError: _SubgraphErrorPolicy_! = deny -) { - poolDayData: SUSHISWAP_V3_poolDayData( - id: $id, - block: $block, - subgraphError: $subgraphError -) { - id - date - pool { - id - } - liquidity - sqrtPrice - token0Price - token1Price - tick - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - tvlUSD - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - open - high - low - close - } -} - -query SushiSwapV3PoolHourData( - $id: ID! - $block: SUSHISWAP_V3_Block_height, - $subgraphError: _SubgraphErrorPolicy_! = deny -) { - poolHourData: SUSHISWAP_V3_poolHourData( - id: $id, - block: $block, - subgraphError: $subgraphError - ) { - id - periodStartUnix - pool { - id - } - liquidity - sqrtPrice - token0Price - token1Price - tick - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - tvlUSD - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - open - high - low - close - } -} - query SushiSwapV3Pool( $id: ID! $block: SUSHISWAP_V3_Block_height, @@ -138,4 +67,161 @@ query SushiSwapV3DayDatas($first: Int = 1000, $skip: Int, $orderBy: SUSHISWAP_V3 txCount tvlUSD } -} \ No newline at end of file +} + +query PoolsByTokenPair($tokenId0: String!, $tokenId1: String!) { + pools: poolsByTokenPair(tokenId0: $tokenId0, tokenId1: $tokenId1) { + id + feeTier + liquidity + sqrtPrice + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + token0Price + token1Price + tick + observationIndex + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + totalValueLockedToken0 + totalValueLockedToken1 + totalValueLockedETH + totalValueLockedUSD + totalValueLockedUSDUntracked + liquidityProviderCount + } +} + +query V3Factories($chainIds: [BigInt!]!) { + factories: v3factoriesByChainIds(chainIds: $chainIds) { + id + chainId + totalValueLockedUSD + totalVolumeUSD + poolCount + } +} + +query V3Transactions($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Transaction_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Transaction_filter) { + transactions: SUSHISWAP_V3_transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + timestamp + blockNumber + mints { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + burns { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + swaps { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + } + collects { + id + owner + amount0 + amount1 + amountUSD + logIndex + } + } +} + +query V3Burns($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Burn_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Burn_filter) { + burns: SUSHISWAP_V3_burns(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Mints($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Mint_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Mint_filter) { + mints: SUSHISWAP_V3_mints(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Swaps($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Swap_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Swap_filter) { + swaps: SUSHISWAP_V3_swaps(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Collects($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Collect_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Collect_filter) { + collects: SUSHISWAP_V3_collects(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} diff --git a/packages/graph-client/resolvers/concentrated/index.ts b/packages/graph-client/resolvers/concentrated/index.ts index fff01f369c..b8aad23e3b 100644 --- a/packages/graph-client/resolvers/concentrated/index.ts +++ b/packages/graph-client/resolvers/concentrated/index.ts @@ -1,12 +1,10 @@ import { Resolvers } from '../../.graphclient/index.js' import { poolsByTokenPair } from './poolsByTokenPair.js' -import { ticksById } from './ticksById.js' import { v3factoriesByChainIds } from './v3factoriesByChainIds.js' export const resolvers: Resolvers = { Query: { v3factoriesByChainIds: v3factoriesByChainIds, - ticksById: ticksById, poolsByTokenPair: poolsByTokenPair, }, } diff --git a/packages/graph-client/resolvers/concentrated/poolsByTokenPair.ts b/packages/graph-client/resolvers/concentrated/poolsByTokenPair.ts index 42b995cf88..a319f93c6f 100644 --- a/packages/graph-client/resolvers/concentrated/poolsByTokenPair.ts +++ b/packages/graph-client/resolvers/concentrated/poolsByTokenPair.ts @@ -1,6 +1,4 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL -} from '@sushiswap/graph-config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from '@sushiswap/graph-config' import { Query, QueryResolvers } from '../../.graphclient/index.js' @@ -19,7 +17,7 @@ export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( const tokenAddresses = [tokenAddress0, tokenAddress1].sort() const fetch = (lastId: string) => - context.Concentrated.Query.CONCENTRATED_pools({ + context.SushiSwapV3.Query.SUSHISWAP_V3_pools({ root, args: { first: MAX_FIRST, @@ -34,7 +32,7 @@ export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( context: { ...context, chainId: Number(chainId), - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], }, info, }) diff --git a/packages/graph-client/resolvers/concentrated/ticksById.ts b/packages/graph-client/resolvers/concentrated/ticksById.ts deleted file mode 100644 index 14491979f7..0000000000 --- a/packages/graph-client/resolvers/concentrated/ticksById.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { - CONCENTRATED_SUBGRAPH_NAME, - SUBGRAPH_HOST, -} from '@sushiswap/graph-config' - -import { Query, QueryResolvers } from '../../.graphclient/index.js' - -const MAX_FIRST = 1000 - -export const ticksById: QueryResolvers['ticksById'] = async ( - root, - args, - context, - info, -): Promise => { - const [chainId, poolAddress] = args.id.split(':') - - const fetch = (lastId: string) => - context.Concentrated.Query.CONCENTRATED_ticks({ - root, - args: { - first: MAX_FIRST, - where: { - id_gt: lastId, - pool: poolAddress, - }, - orderBy: 'id', - orderDirection: 'asc', - }, - context: { - ...context, - chainId: Number(chainId), - subgraphName: CONCENTRATED_SUBGRAPH_NAME[chainId], - subgraphHost: SUBGRAPH_HOST[chainId], - }, - info, - }) - - const data = [] - let lastId = '' - for (;;) { - const newData = await fetch(lastId) - data.push(...newData) - - if (newData.length < MAX_FIRST) break - - lastId = newData[newData.length - 1].id - } - - return data -} diff --git a/packages/react-query/package.json b/packages/react-query/package.json index 470f4c0ec8..1beadf0c18 100644 --- a/packages/react-query/package.json +++ b/packages/react-query/package.json @@ -68,8 +68,8 @@ "react-dom": "18.2.0", "sushi": "workspace:*", "typescript": "5.2.2", - "viem": "2.8.14", - "wagmi": "2.5.20" + "viem": "2.10.11", + "wagmi": "2.9.2" }, "peerDependencies": { "@sentry/nextjs": "7.110.0", @@ -78,8 +78,8 @@ "react": "18.2.0", "react-dom": "18.2.0", "sushi": "*", - "viem": "2.8.14", - "wagmi": "2.5.20" + "viem": "2.10.11", + "wagmi": "2.9.2" }, "peerDependenciesMeta": { "@sushiswap/client": { diff --git a/packages/steer-sdk/package.json b/packages/steer-sdk/package.json index 47049dc36b..35b55f1833 100644 --- a/packages/steer-sdk/package.json +++ b/packages/steer-sdk/package.json @@ -62,14 +62,14 @@ "@whatwg-node/fetch": "0.8.4", "sushi": "workspace:*", "tslib": "latest", - "viem": "2.8.14" + "viem": "2.10.11" }, "devDependencies": { "@sushiswap/jest-config": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", "@types/node": "20", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "eslint": "8.43.0", "next": "14.1.1", "react": "18.2.0", @@ -78,10 +78,10 @@ "typescript": "5.2.2" }, "peerDependencies": { - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "react": "18.2.0", "react-dom": "18.2.0", - "wagmi": "2.5.20" + "wagmi": "2.9.2" }, "peerDependenciesMeta": { "react": { diff --git a/packages/sushi/package.json b/packages/sushi/package.json index 25cd6a9be0..550bbe4642 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -201,7 +201,6 @@ "big.js": "6.1.1", "date-fns": "3.3.1", "decimal.js-light": "2.5.1", - "lodash.flatmap": "4.5.0", "numbro": "2.5.0", "seedrandom": "3.0.5", "serialijse": "0.3.0", @@ -215,12 +214,11 @@ "@tsconfig/node18": "18.2.2", "@tsconfig/strictest": "2.0.2", "@types/big.js": "6.2.0", - "@types/lodash.flatmap": "4.5.9", "@types/seedrandom": "3.0.1", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "ts-node": "10.9.2", "typescript": "5.2.2", - "viem": "2.8.14", + "viem": "2.10.11", "vitest": "0.34.6", "zod": "3.21.4" }, diff --git a/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts b/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts index 9bbcf03def..088537d2fa 100644 --- a/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts +++ b/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts @@ -1,5 +1,4 @@ import { Interface } from '@ethersproject/abi' -import INonfungiblePositionManager from '@uniswap/v3-periphery/artifacts/contracts/NonfungiblePositionManager.sol/NonfungiblePositionManager.json' import invariant from 'tiny-invariant' import { zeroAddress } from 'viem' import { toHex } from '../../../convert/index.js' @@ -17,6 +16,7 @@ import { Payments } from './Payments.js' import { Position } from './Position.js' import { PermitOptions, SelfPermit } from './SelfPermit.js' import { SushiSwapV3Pool } from './SushiSwapV3Pool.js' +import { nonfungiblePositionManagerAbi } from '../../../abi/nonfungiblePositionManagerAbi.js' const MaxUint128 = toHex(2n ** 128n - 1n) @@ -173,7 +173,7 @@ export interface RemoveLiquidityOptions { export abstract class NonfungiblePositionManager { public static INTERFACE: Interface = new Interface( - INonfungiblePositionManager.abi, + nonfungiblePositionManagerAbi, ) /** diff --git a/packages/sushi/src/router/get-currency-combinations.ts b/packages/sushi/src/router/get-currency-combinations.ts index 1569dd3ab9..d2e8b4656a 100644 --- a/packages/sushi/src/router/get-currency-combinations.ts +++ b/packages/sushi/src/router/get-currency-combinations.ts @@ -1,4 +1,3 @@ -import flatMap from 'lodash.flatmap' import { ChainId } from '../chain/index.js' import { ADDITIONAL_BASES, @@ -26,7 +25,7 @@ export function getCurrencyCombinations( const bases: Token[] = [...common, ...additionalA, ...additionalB] - const basePairs: [Token, Token][] = flatMap(bases, (base): [Token, Token][] => + const basePairs: [Token, Token][] = bases.flatMap((base): [Token, Token][] => bases.map((otherBase) => [base, otherBase]), ) diff --git a/packages/ui/package.json b/packages/ui/package.json index 41084e2879..553c5f8cd4 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -124,7 +124,7 @@ "sushi": "workspace:*", "tailwindcss": "3.3.2", "typescript": "5.2.2", - "wagmi": "2.5.20" + "wagmi": "2.9.2" }, "peerDependencies": { "next": "14.1.1", @@ -132,7 +132,7 @@ "react-dom": "18.2.0", "sushi": "*", "tailwindcss": "3.3.2", - "wagmi": "2.5.20" + "wagmi": "2.9.2" }, "peerDependenciesMeta": { "next": { diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json index 3eac920634..075291f1f0 100644 --- a/packages/wagmi/package.json +++ b/packages/wagmi/package.json @@ -74,23 +74,23 @@ "@types/jest": "29.5.5", "@types/react": "18.2.14", "@types/react-dom": "18.2.6", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "eslint-config-sushi": "workspace:*", "next": "14.1.1", "react": "18.2.0", "react-dom": "18.2.0", "typescript": "5.2.2", - "viem": "2.8.14", - "wagmi": "2.5.20" + "viem": "2.10.11", + "wagmi": "2.9.2" }, "peerDependencies": { "@sentry/nextjs": "7.101.1", - "@wagmi/core": "2.6.17", + "@wagmi/core": "2.10.2", "next": "14.1.1", "react": "18.2.0", "react-dom": "18.2.0", - "viem": "2.8.14", - "wagmi": "2.5.20" + "viem": "2.10.11", + "wagmi": "2.9.2" }, "peerDependenciesMeta": { "@sentry/nextjs": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bb880c0ebe..704fbb9d21 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,8 +63,8 @@ importers: specifier: workspace:* version: link:../../packages/extractor '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) cors: specifier: 2.8.5 version: 2.8.5 @@ -78,11 +78,11 @@ importers: specifier: workspace:* version: link:../../packages/sushi viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@5.29.2)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@5.29.2)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -124,8 +124,8 @@ importers: specifier: workspace:* version: link:../../packages/extractor '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) cors: specifier: 2.8.5 version: 2.8.5 @@ -139,11 +139,11 @@ importers: specifier: workspace:* version: link:../../packages/sushi viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@5.29.2)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@5.29.2)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -228,8 +228,8 @@ importers: specifier: 3.0.9 version: 3.0.9 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) drizzle-orm: specifier: ^0.29.5 version: 0.29.5(@neondatabase/serverless@0.9.0)(postgres@3.4.4)(react@18.2.0) @@ -240,8 +240,8 @@ importers: specifier: workspace:* version: link:../../packages/sushi viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -675,6 +675,9 @@ importers: '@layerzerolabs/scan-client': specifier: 0.0.6 version: 0.0.6(axios@1.6.8) + '@next/bundle-analyzer': + specifier: ^14.2.3 + version: 14.2.3 '@octokit/auth-app': specifier: 4.0.7 version: 4.0.7 @@ -754,11 +757,11 @@ importers: specifier: 0.4.1 version: 0.4.1 '@wagmi/connectors': - specifier: ^4.1.14 - version: 4.1.19(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: ^5.0.2 + version: 5.0.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) cors: specifier: 2.8.5 version: 2.8.5 @@ -838,11 +841,11 @@ importers: specifier: 1.3.1 version: 1.3.1 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(@upstash/redis@1.22.1)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(@upstash/redis@1.22.1)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -1288,8 +1291,8 @@ importers: specifier: 2.0.2 version: 2.0.2 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) jest: specifier: 29.7.0 version: 29.7.0(@types/node@20.10.0) @@ -1375,8 +1378,8 @@ importers: specifier: workspace:* version: link:../../config/wagmi '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) '@whatwg-node/fetch': specifier: 0.8.4 version: 0.8.4 @@ -1405,8 +1408,8 @@ importers: specifier: ^4.7.1 version: 4.7.1 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -1489,8 +1492,8 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) packages/client: dependencies: @@ -1516,8 +1519,8 @@ importers: specifier: latest version: 2.6.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) zod: specifier: 3.21.4 version: 3.21.4 @@ -1666,8 +1669,8 @@ importers: specifier: workspace:* version: link:../sushi viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) devDependencies: '@sushiswap/jest-config': specifier: workspace:* @@ -1773,8 +1776,8 @@ importers: specifier: '20' version: 20.10.0 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) graphql: specifier: 16.6.0 version: 16.6.0 @@ -1916,11 +1919,11 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) packages/steer-sdk: dependencies: @@ -1940,11 +1943,11 @@ importers: specifier: latest version: 2.6.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@5.29.2)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@5.29.2)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) optionalDependencies: next: specifier: 14.1.1 @@ -1963,8 +1966,8 @@ importers: specifier: '20' version: 20.10.0 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) eslint: specifier: 8.43.0 version: 8.43.0 @@ -2010,9 +2013,6 @@ importers: decimal.js-light: specifier: 2.5.1 version: 2.5.1 - lodash.flatmap: - specifier: 4.5.0 - version: 4.5.0 numbro: specifier: 2.5.0 version: 2.5.0 @@ -2047,15 +2047,12 @@ importers: '@types/big.js': specifier: 6.2.0 version: 6.2.0 - '@types/lodash.flatmap': - specifier: 4.5.9 - version: 4.5.9 '@types/seedrandom': specifier: 3.0.1 version: 3.0.1 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) ts-node: specifier: 10.9.2 version: 10.9.2(@swc/core@1.4.2)(@types/node@20.12.7)(typescript@5.2.2) @@ -2063,8 +2060,8 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) vitest: specifier: 0.34.6 version: 0.34.6 @@ -2280,8 +2277,8 @@ importers: specifier: 5.2.2 version: 5.2.2 wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@5.29.2)(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@5.29.2)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) packages/wagmi: dependencies: @@ -2366,8 +2363,8 @@ importers: specifier: 18.2.6 version: 18.2.6 '@wagmi/core': - specifier: 2.6.17 - version: 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) eslint-config-sushi: specifier: workspace:* version: link:../../config/eslint @@ -2381,11 +2378,11 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) wagmi: - specifier: 2.5.20 - version: 2.5.20(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + specifier: 2.9.2 + version: 2.9.2(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) protocols/route-processor: devDependencies: @@ -2510,8 +2507,8 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) protocols/tines-sandbox: devDependencies: @@ -2651,8 +2648,8 @@ importers: specifier: 5.2.2 version: 5.2.2 viem: - specifier: 2.8.14 - version: 2.8.14(typescript@5.2.2)(zod@3.21.4) + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) packages: @@ -2814,7 +2811,7 @@ packages: engines: {node: '>=11.0.0'} dependencies: '@aptos-labs/aptos-client': 0.0.2 - '@noble/curves': 1.2.0 + '@noble/curves': 1.4.0 '@noble/hashes': 1.1.3 '@scure/bip39': 1.1.0 form-data: 4.0.0 @@ -3188,7 +3185,7 @@ packages: lodash: 4.17.21 ms: 2.1.3 protobufjs: 7.2.4 - socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + socket.io-client: 4.7.2 socketio-wildcard: 2.0.0 tough-cookie: 4.1.3 try-require: 1.2.1 @@ -3749,7 +3746,7 @@ packages: clone-deep: 4.0.1 cross-fetch: 3.1.8 ethers: 5.7.2 - socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + socket.io-client: 4.7.2 standard-http-error: 2.0.1 string-similarity-js: 2.1.4 uuid: 8.3.2 @@ -7106,8 +7103,8 @@ packages: '@cloudinary/transformation-builder-sdk': 1.5.1 dev: false - /@coinbase/wallet-sdk@3.9.1: - resolution: {integrity: sha512-cGUE8wm1/cMI8irRMVOqbFWYcnNugqCtuy2lnnHfgloBg+GRLs9RsrkOUDMdv/StfUeeKhCDyYudsXXvcL1xIA==} + /@coinbase/wallet-sdk@3.9.3: + resolution: {integrity: sha512-N/A2DRIf0Y3PHc1XAMvbBUu4zisna6qAdqABMZwBMNEfWrXpAwx16pZGkYCLGE+Rvv1edbcB2LYDRnACNcmCiw==} dependencies: bn.js: 5.2.1 buffer: 6.0.3 @@ -7121,6 +7118,16 @@ packages: transitivePeerDependencies: - supports-color + /@coinbase/wallet-sdk@4.0.0: + resolution: {integrity: sha512-7q8k39a2Iuz30dAEeh86AaSAbLgVPW3gfLa1UYh2IqP7gS+X9witoMEMM8o016K6vxP5N++PrM+Lgu/O1KByBA==} + dependencies: + buffer: 6.0.3 + clsx: 1.2.1 + eventemitter3: 5.0.1 + keccak: 3.0.3 + preact: 10.17.0 + sha.js: 2.4.11 + /@colors/colors@1.5.0: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} @@ -7130,7 +7137,7 @@ packages: /@confio/ics23@0.6.8: resolution: {integrity: sha512-wB6uo+3A50m0sW/EWcU64xpV/8wShZ6bMTa7pF8eYsTrSkQA7oLUIJcs/wb8g4y2Oyq701BaGiO6n/ak5WXO1w==} dependencies: - '@noble/hashes': 1.3.2 + '@noble/hashes': 1.4.0 protobufjs: 6.11.4 /@corex/deepmerge@4.0.43: @@ -7151,7 +7158,7 @@ packages: '@cosmjs/encoding': 0.31.3 '@cosmjs/math': 0.31.3 '@cosmjs/utils': 0.31.3 - '@noble/hashes': 1.3.2 + '@noble/hashes': 1.4.0 bn.js: 5.2.1 elliptic: 6.5.4 libsodium-wrappers-sumo: 0.7.13 @@ -7482,7 +7489,6 @@ packages: /@discoveryjs/json-ext@0.5.7: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} - dev: true /@edge-runtime/cookies@3.4.1: resolution: {integrity: sha512-z27BvgPxI73CgSlxU/NAUf1Q/shnqi6cobHEowf6VuLdSjGR3NjI2Y5dZUIBbK2zOJVZbXcHsVzJjz8LklteFQ==} @@ -7512,37 +7518,10 @@ packages: dependencies: '@edge-runtime/primitives': 4.0.5 - /@emotion/babel-plugin@11.11.0: - resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} - dependencies: - '@babel/helper-module-imports': 7.22.15 - '@babel/runtime': 7.24.4 - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/serialize': 1.1.3 - babel-plugin-macros: 3.1.0 - convert-source-map: 1.9.0 - escape-string-regexp: 4.0.0 - find-root: 1.1.0 - source-map: 0.5.7 - stylis: 4.2.0 - - /@emotion/cache@11.11.0: - resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==} - dependencies: - '@emotion/memoize': 0.8.1 - '@emotion/sheet': 1.2.2 - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 - stylis: 4.2.0 - /@emotion/hash@0.8.0: resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==} dev: false - /@emotion/hash@0.9.1: - resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==} - /@emotion/is-prop-valid@0.8.8: resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==} requiresBuild: true @@ -7551,91 +7530,23 @@ packages: dev: false optional: true - /@emotion/is-prop-valid@1.2.2: - resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==} - dependencies: - '@emotion/memoize': 0.8.1 - /@emotion/memoize@0.7.4: resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==} requiresBuild: true dev: false optional: true - /@emotion/memoize@0.8.1: - resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} - - /@emotion/react@11.11.4(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-t8AjMlF0gHpvvxk5mAtCqR4vmxiGHCeJBaQO6gncUSdklELOgtwjerNY2yuJNfwnc6vi16U/+uMF+afIawJ9iw==} - peerDependencies: - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.4 - '@emotion/babel-plugin': 11.11.0 - '@emotion/cache': 11.11.0 - '@emotion/serialize': 1.1.3 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@emotion/utils': 1.2.1 - '@emotion/weak-memoize': 0.3.1 - '@types/react': 18.2.14 - hoist-non-react-statics: 3.3.2 - react: 18.2.0 - - /@emotion/serialize@1.1.3: - resolution: {integrity: sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA==} - dependencies: - '@emotion/hash': 0.9.1 - '@emotion/memoize': 0.8.1 - '@emotion/unitless': 0.8.1 - '@emotion/utils': 1.2.1 - csstype: 3.1.3 - - /@emotion/sheet@1.2.2: - resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} - - /@emotion/styled@11.11.0(@emotion/react@11.11.4)(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} - peerDependencies: - '@emotion/react': ^11.0.0-rc.0 - '@types/react': '*' - react: '>=16.8.0' - peerDependenciesMeta: - '@types/react': - optional: true - dependencies: - '@babel/runtime': 7.24.4 - '@emotion/babel-plugin': 11.11.0 - '@emotion/is-prop-valid': 1.2.2 - '@emotion/react': 11.11.4(@types/react@18.2.14)(react@18.2.0) - '@emotion/serialize': 1.1.3 - '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) - '@emotion/utils': 1.2.1 - '@types/react': 18.2.14 - react: 18.2.0 - /@emotion/unitless@0.7.5: resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==} dev: false - /@emotion/unitless@0.8.1: - resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==} - /@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.2.0): resolution: {integrity: sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==} peerDependencies: react: '>=16.8.0' dependencies: react: 18.2.0 - - /@emotion/utils@1.2.1: - resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==} - - /@emotion/weak-memoize@0.3.1: - resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==} + dev: true /@ensdomains/ens@0.4.5: resolution: {integrity: sha512-JSvpj1iNMFjK6K+uVl4unqMoa9rf5jopb8cya5UGBWz23Nw8hSNT7efgUx4BTlAPAgpNlEioUfeTyQ6J9ZvTVw==} @@ -9509,7 +9420,7 @@ packages: tsconfig-paths: 4.1.1 tslib: 2.6.1 typescript: 5.2.2 - ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + ws: 8.11.0 yargs: 17.6.2 transitivePeerDependencies: - '@babel/core' @@ -12416,44 +12327,47 @@ packages: transitivePeerDependencies: - supports-color - /@metamask/object-multiplex@1.3.0: - resolution: {integrity: sha512-czcQeVYdSNtabd+NcYQnrM69MciiJyd1qvKH8WM2Id3C0ZiUUX5Xa/MK+/VUk633DBhVOwdNzAKIQ33lGyA+eQ==} - engines: {node: '>=12.0.0'} + /@metamask/json-rpc-middleware-stream@6.0.2: + resolution: {integrity: sha512-jtyx3PRfc1kqoLpYveIVQNwsxYKefc64/LCl9h9Da1m3nUKEvypbYuXSIwi237qvOjKmNHQKsDOZg6f4uBf62Q==} + engines: {node: '>=16.0.0'} + dependencies: + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 + readable-stream: 3.6.2 + transitivePeerDependencies: + - supports-color + + /@metamask/object-multiplex@2.0.0: + resolution: {integrity: sha512-+ItrieVZie3j2LfYE0QkdW3dsEMfMEp419IGx1zyeLqjRZ14iQUPRO0H6CGgfAAoC0x6k2PfCAGRwJUA9BMrqA==} + engines: {node: ^16.20 || ^18.16 || >=20} dependencies: - end-of-stream: 1.4.4 once: 1.4.0 - readable-stream: 2.3.8 + readable-stream: 3.6.2 /@metamask/onboarding@1.0.1: resolution: {integrity: sha512-FqHhAsCI+Vacx2qa5mAFcWNSrTcVGMNjzxVgaX8ECSny/BJ9/vgXP9V7WF/8vb9DltPeQkxr+Fnfmm6GHfmdTQ==} dependencies: bowser: 2.11.0 - /@metamask/post-message-stream@6.2.0: - resolution: {integrity: sha512-WunZ0bruClF862mvbKQGETn5SM0XKGmocPMQR1Ew6sYix9/FDzeoZnoI8RkXk01E+70FCdxhTE/r8kk5SFOuTw==} - engines: {node: '>=14.0.0'} - dependencies: - '@metamask/utils': 5.0.2 - readable-stream: 2.3.3 - transitivePeerDependencies: - - supports-color - - /@metamask/providers@10.2.1: - resolution: {integrity: sha512-p2TXw2a1Nb8czntDGfeIYQnk4LLVbd5vlcb3GY//lylYlKdSqp+uUTegCvxiFblRDOT68jsY8Ib1VEEzVUOolA==} - engines: {node: '>=14.0.0'} + /@metamask/providers@15.0.0: + resolution: {integrity: sha512-FXvL1NQNl6I7fMOJTfQYcBlBZ33vSlm6w80cMpmn8sJh0Lb7wcBpe02UwBsNlARnI+Qsr26XeDs6WHUHQh8CuA==} + engines: {node: ^18.18 || >=20} dependencies: - '@metamask/object-multiplex': 1.3.0 - '@metamask/safe-event-emitter': 2.0.0 - '@types/chrome': 0.0.136 + '@metamask/json-rpc-engine': 7.3.3 + '@metamask/json-rpc-middleware-stream': 6.0.2 + '@metamask/object-multiplex': 2.0.0 + '@metamask/rpc-errors': 6.2.1 + '@metamask/safe-event-emitter': 3.1.1 + '@metamask/utils': 8.4.0 detect-browser: 5.3.0 - eth-rpc-errors: 4.0.3 - extension-port-stream: 2.1.1 - fast-deep-equal: 2.0.1 + extension-port-stream: 3.0.0 + fast-deep-equal: 3.1.3 is-stream: 2.0.1 - json-rpc-engine: 6.1.0 - json-rpc-middleware-stream: 4.2.3 - pump: 3.0.0 - webextension-polyfill-ts: 0.25.0 + readable-stream: 3.6.2 + webextension-polyfill: 0.10.0 + transitivePeerDependencies: + - supports-color /@metamask/rpc-errors@6.2.1: resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==} @@ -12471,125 +12385,134 @@ packages: resolution: {integrity: sha512-ihb3B0T/wJm1eUuArYP4lCTSEoZsClHhuWyfo/kMX3m/odpqNcPfsz5O2A3NT7dXCAgWPGDQGPqygCpgeniKMw==} engines: {node: '>=12.0.0'} - /@metamask/sdk-communication-layer@0.14.3: - resolution: {integrity: sha512-yjSbj8y7fFbQXv2HBzUX6D9C8BimkCYP6BDV7hdw53W8b/GlYCtXVxUFajQ9tuO1xPTRjR/xt/dkdr2aCi6WGw==} + /@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2): + resolution: {integrity: sha512-TN+whYbCClFSkx52Ild1RcjoRyz8YZgwNvZeooIcZIvCfBM6U9W5273KGiY7WLc/oO4KKmFk17d7vMO4gNvhhw==} + peerDependencies: + cross-fetch: ^3.1.5 + eciesjs: ^0.3.16 + eventemitter2: ^6.4.7 + readable-stream: ^3.6.2 + socket.io-client: ^4.5.1 dependencies: bufferutil: 4.0.8 - cross-fetch: 3.1.8 + cross-fetch: 4.0.0 date-fns: 2.30.0 + debug: 4.3.4(supports-color@8.1.1) eciesjs: 0.3.18 eventemitter2: 6.4.9 - socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + readable-stream: 3.6.2 + socket.io-client: 4.7.2 utf-8-validate: 6.0.3 uuid: 8.3.2 transitivePeerDependencies: - - encoding - supports-color - /@metamask/sdk-install-modal-web@0.14.1(@types/react@18.2.14)(react-native@0.73.7): - resolution: {integrity: sha512-emT8HKbnfVwGhPxyUfMja6DWzvtJvDEBQxqCVx93H0HsyrrOzOC43iGCAosslw6o5h7gOfRKLqWmK8V7jQAS2Q==} + /@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0): + resolution: {integrity: sha512-0QiaZhV15AGdN1zU2jfTI32eC3YkwEpzDfR9+oiZ9bd2G72c6lYBhTsmDGUd01aP6A+bqJR5PjI8Wh2AWtoLeA==} + peerDependencies: + i18next: 22.5.1 + react: ^18.2.0 + react-dom: ^18.2.0 + react-i18next: ^13.2.2 + react-native: '*' + peerDependenciesMeta: + react: + optional: true + react-dom: + optional: true + react-native: + optional: true dependencies: - '@emotion/react': 11.11.4(@types/react@18.2.14)(react@18.2.0) - '@emotion/styled': 11.11.0(@emotion/react@11.11.4)(@types/react@18.2.14)(react@18.2.0) i18next: 22.5.1 qr-code-styling: 1.6.0-rc.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - transitivePeerDependencies: - - '@types/react' - - react-native + react-native: 0.73.7(@babel/core@7.24.4)(@babel/preset-env@7.24.4)(react@18.2.0) - /@metamask/sdk@0.14.3(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4): - resolution: {integrity: sha512-BYLs//nY2wioVSih78gOQI6sLIYY3vWkwVqXGYUgkBV+bi49bv+9S0m+hZ2cwiRaxfMYtKs0KvhAQ8weiYwDrg==} + /@metamask/sdk@0.20.3(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4): + resolution: {integrity: sha512-HZ9NwA+LxiXzuy0YWbWsuD4xejQtp85bhcCAf8UgpA/0dOyF3RS4dKDdBBXSyRgk3RWPjeJgHxioaH4CmBmiRA==} peerDependencies: react: ^18.2.0 - react-native: '*' + react-dom: ^18.2.0 peerDependenciesMeta: react: optional: true - react-native: + react-dom: optional: true dependencies: '@metamask/onboarding': 1.0.1 - '@metamask/post-message-stream': 6.2.0 - '@metamask/providers': 10.2.1 - '@metamask/sdk-communication-layer': 0.14.3 - '@metamask/sdk-install-modal-web': 0.14.1(@types/react@18.2.14)(react-native@0.73.7) - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.73.7) + '@metamask/providers': 15.0.0 + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0 + debug: 4.3.4(supports-color@8.1.1) eciesjs: 0.3.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 - extension-port-stream: 2.1.1 i18next: 22.5.1 - i18next-browser-languagedetector: 7.2.0 + i18next-browser-languagedetector: 7.1.0 obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 react: 18.2.0 - react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - react-native: 0.73.7(@babel/core@7.24.4)(@babel/preset-env@7.24.4)(react@18.2.0) + react-dom: 18.2.0(react@18.2.0) react-native-webview: 11.26.1(react-native@0.73.7)(react@18.2.0) - readable-stream: 2.3.8 + readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0(rollup@3.29.4) - socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + socket.io-client: 4.7.2 util: 0.12.5 uuid: 8.3.2 transitivePeerDependencies: - - '@types/react' - bufferutil - encoding - - react-dom + - react-i18next + - react-native - rollup - supports-color - utf-8-validate - /@metamask/sdk@0.14.3(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0): - resolution: {integrity: sha512-BYLs//nY2wioVSih78gOQI6sLIYY3vWkwVqXGYUgkBV+bi49bv+9S0m+hZ2cwiRaxfMYtKs0KvhAQ8weiYwDrg==} + /@metamask/sdk@0.20.3(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0): + resolution: {integrity: sha512-HZ9NwA+LxiXzuy0YWbWsuD4xejQtp85bhcCAf8UgpA/0dOyF3RS4dKDdBBXSyRgk3RWPjeJgHxioaH4CmBmiRA==} peerDependencies: react: ^18.2.0 - react-native: '*' + react-dom: ^18.2.0 peerDependenciesMeta: react: optional: true - react-native: + react-dom: optional: true dependencies: '@metamask/onboarding': 1.0.1 - '@metamask/post-message-stream': 6.2.0 - '@metamask/providers': 10.2.1 - '@metamask/sdk-communication-layer': 0.14.3 - '@metamask/sdk-install-modal-web': 0.14.1(@types/react@18.2.14)(react-native@0.73.7) - '@react-native-async-storage/async-storage': 1.23.1(react-native@0.73.7) + '@metamask/providers': 15.0.0 + '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.18)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.2) + '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0) '@types/dom-screen-wake-lock': 1.0.3 bowser: 2.11.0 cross-fetch: 4.0.0 + debug: 4.3.4(supports-color@8.1.1) eciesjs: 0.3.18 eth-rpc-errors: 4.0.3 eventemitter2: 6.4.9 - extension-port-stream: 2.1.1 i18next: 22.5.1 - i18next-browser-languagedetector: 7.2.0 + i18next-browser-languagedetector: 7.1.0 obj-multiplex: 1.0.0 pump: 3.0.0 qrcode-terminal-nooctal: 0.12.1 react: 18.2.0 - react-i18next: 13.5.0(i18next@22.5.1)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - react-native: 0.73.7(@babel/core@7.24.4)(@babel/preset-env@7.24.4)(react@18.2.0) react-native-webview: 11.26.1(react-native@0.73.7)(react@18.2.0) - readable-stream: 2.3.8 + readable-stream: 3.6.2 rollup-plugin-visualizer: 5.12.0(rollup@3.29.4) - socket.io-client: 4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + socket.io-client: 4.7.2 util: 0.12.5 uuid: 8.3.2 transitivePeerDependencies: - - '@types/react' - bufferutil - encoding - - react-dom + - react-i18next + - react-native - rollup - supports-color - utf-8-validate @@ -12602,7 +12525,7 @@ packages: '@ethereumjs/tx': 4.2.0 '@types/debug': 4.1.12 debug: 4.3.4(supports-color@8.1.1) - semver: 7.5.4 + semver: 7.6.0 superstruct: 1.0.3 transitivePeerDependencies: - supports-color @@ -12612,12 +12535,12 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@ethereumjs/tx': 4.2.0 - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.3 + '@noble/hashes': 1.4.0 + '@scure/base': 1.1.6 '@types/debug': 4.1.12 debug: 4.3.4(supports-color@8.1.1) pony-cause: 2.1.10 - semver: 7.5.4 + semver: 7.6.0 superstruct: 1.0.3 uuid: 9.0.1 transitivePeerDependencies: @@ -12718,10 +12641,10 @@ packages: engines: {node: '>=16'} dependencies: '@mysten/bcs': 0.3.0 - '@noble/hashes': 1.3.2 + '@noble/hashes': 1.4.0 '@noble/secp256k1': 1.7.1 - '@scure/bip32': 1.3.2 - '@scure/bip39': 1.2.1 + '@scure/bip32': 1.4.0 + '@scure/bip39': 1.3.0 bn.js: 5.2.1 buffer: 6.0.3 cross-fetch: 3.1.8 @@ -12750,6 +12673,15 @@ packages: '@types/pg': 8.6.6 dev: false + /@next/bundle-analyzer@14.2.3: + resolution: {integrity: sha512-Z88hbbngMs7njZKI8kTJIlpdLKYfMSLwnsqYe54AP4aLmgL70/Ynx/J201DQ+q2Lr6FxFw1uCeLGImDrHOl2ZA==} + dependencies: + webpack-bundle-analyzer: 4.10.1 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + /@next/env@14.1.0: resolution: {integrity: sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==} dev: false @@ -12967,12 +12899,10 @@ packages: /@noble/hashes@1.3.3: resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==} engines: {node: '>= 16'} - dev: false /@noble/hashes@1.4.0: resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==} engines: {node: '>= 16'} - dev: false /@noble/secp256k1@1.7.1: resolution: {integrity: sha512-hOUk6AyBFmqVrv7k5WAw/LpszxVbj9gGN4JRkIX52fdFAj1UA61KXmZDvqVEm+pOyec3+fIeZB02LYa/pWOArw==} @@ -14323,6 +14253,10 @@ packages: webpack-dev-server: 4.15.2(webpack@5.91.0) dev: false + /@polka/url@1.0.0-next.25: + resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} + dev: false + /@pontem/wallet-adapter-plugin@0.2.1: resolution: {integrity: sha512-mrhCT+mFsDtjFHZj9LBksY++ciQiAlr+gkHhvEzkuQkYuHkCf6HwKOkIlDL42cl7y8/15NrfZomEQ5Uxudhc3g==} dependencies: @@ -15812,14 +15746,6 @@ packages: react: 18.2.0 dev: false - /@react-native-async-storage/async-storage@1.23.1(react-native@0.73.7): - resolution: {integrity: sha512-Qd2kQ3yi6Y3+AcUlrHxSLlnBvpdCEMVGFlVBneVOjaFaPU61g1huc38g339ysXspwY1QZA2aNhrk/KlHGO+ewA==} - peerDependencies: - react-native: ^0.0.0-0 || >=0.60 <1.0 - dependencies: - merge-options: 3.0.4 - react-native: 0.73.7(@babel/core@7.24.4)(@babel/preset-env@7.24.4)(react@18.2.0) - /@react-native-community/cli-clean@12.3.6: resolution: {integrity: sha512-gUU29ep8xM0BbnZjwz9MyID74KKwutq9x5iv4BCr2im6nly4UMf1B1D+V225wR7VcDGzbgWjaezsJShLLhC5ig==} dependencies: @@ -16545,28 +16471,27 @@ packages: /@scure/base@1.1.6: resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==} - dev: false /@scure/bip32@1.1.5: resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==} dependencies: '@noble/hashes': 1.2.0 '@noble/secp256k1': 1.7.1 - '@scure/base': 1.1.3 + '@scure/base': 1.1.6 /@scure/bip32@1.3.1: resolution: {integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==} dependencies: '@noble/curves': 1.1.0 - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.3 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.6 /@scure/bip32@1.3.2: resolution: {integrity: sha512-N1ZhksgwD3OBlwTv3R6KFEcPojl/W4ElJOeCZdi+vuI5QmTFwLq3OFf2zd2ROpKvxFdgZ6hUpb0dx9bVNEwYCA==} dependencies: '@noble/curves': 1.2.0 - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.3 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.6 /@scure/bip32@1.4.0: resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==} @@ -16580,20 +16505,20 @@ packages: resolution: {integrity: sha512-pwrPOS16VeTKg98dYXQyIjJEcWfz7/1YJIwxUEPFfQPtc86Ym/1sVgQ2RLoD43AazMk2l/unK4ITySSpW2+82w==} dependencies: '@noble/hashes': 1.1.3 - '@scure/base': 1.1.3 + '@scure/base': 1.1.6 dev: false /@scure/bip39@1.1.1: resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==} dependencies: '@noble/hashes': 1.2.0 - '@scure/base': 1.1.3 + '@scure/base': 1.1.6 /@scure/bip39@1.2.1: resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} dependencies: - '@noble/hashes': 1.3.2 - '@scure/base': 1.1.3 + '@noble/hashes': 1.3.3 + '@scure/base': 1.1.6 /@scure/bip39@1.3.0: resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==} @@ -19410,12 +19335,6 @@ packages: /@types/chai@4.3.5: resolution: {integrity: sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng==} - /@types/chrome@0.0.136: - resolution: {integrity: sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA==} - dependencies: - '@types/filesystem': 0.0.36 - '@types/har-format': 1.2.15 - /@types/cli-progress@3.11.0: resolution: {integrity: sha512-XhXhBv1R/q2ahF3BM7qT5HLzJNlIL0wbcGyZVjqOTqAybAnsLisd7gy1UCyIqpL+5Iv6XhlSyzjLCnI2sIdbCg==} dependencies: @@ -19733,14 +19652,6 @@ packages: '@types/qs': 6.9.8 '@types/serve-static': 1.15.2 - /@types/filesystem@0.0.36: - resolution: {integrity: sha512-vPDXOZuannb9FZdxgHnqSwAG/jvdGM8Wq+6N4D/d80z+D4HWH+bItqsZaVRQykAn6WEVeEkLm2oQigyHtgb0RA==} - dependencies: - '@types/filewriter': 0.0.33 - - /@types/filewriter@0.0.33: - resolution: {integrity: sha512-xFU8ZXTw4gd358lb2jw25nxY9QAgqn2+bKKjKOYfNCzN4DKCFetK7sPtrlpg66Ywe3vWY9FNxprZawAh9wfJ3g==} - /@types/find-cache-dir@3.2.1: resolution: {integrity: sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==} dev: true @@ -19771,9 +19682,6 @@ packages: resolution: {integrity: sha512-KHoDzrf9rSd0mooKN576PjExpdk/XRrNu4RQnmigsScSTSidwyOUe9kDrHz9UPKjiBrx2QEsSkexbJSgS0j72w==} dev: true - /@types/har-format@1.2.15: - resolution: {integrity: sha512-RpQH4rXLuvTXKR0zqHq3go0RVXYv/YVqv4TnPH95VbwUxZdQlK1EtcMvQvMpDngHbt13Csh9Z4qT9AbkiQH5BA==} - /@types/hast@2.3.5: resolution: {integrity: sha512-SvQi0L/lNpThgPoleH53cdjB3y9zpLlVjRbqB3rH8hx1jiRSBGAhyjV3H+URFjNVRqt2EdYNrbZE5IsGlNfpRg==} dependencies: @@ -19867,12 +19775,6 @@ packages: dependencies: '@types/node': 20.12.7 - /@types/lodash.flatmap@4.5.9: - resolution: {integrity: sha512-rACVyVCkf+YRthjL7wKb2e96nnZw+bRIEo2nl2ewP0GZLOuRP9QcB7FnyOj7aXI5Vrs6qONnc1lg66FdHVqCmQ==} - dependencies: - '@types/lodash': 4.14.197 - dev: true - /@types/lodash.frompairs@4.0.9: resolution: {integrity: sha512-OZ7YqENr/kRqpDqXlU1RxGWSQ4Ha5gLFcz9v2OhxrrspHCeQ4PfC7SobvLJ8vCvftiEv7IEfZNpaLhHYkVB5SA==} dependencies: @@ -20027,6 +19929,7 @@ packages: /@types/parse-json@4.0.2: resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==} + dev: false /@types/pbkdf2@3.1.0: resolution: {integrity: sha512-Cf63Rv7jCQ0LaL8tNXmEyqTHuIJxRdlS5vMh1mj5voN4+QFhVZnlZruezqpWYDiJ8UTzhP0VmeLXCmBk66YrMQ==} @@ -21070,69 +20973,26 @@ packages: pretty-format: 29.7.0 dev: true - /@wagmi/connectors@4.1.19(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-7OmdvepGCmzjGlY+pT7SgItgDd+eo7J2q50PywtnZ8xIdIEJUiwDm37izwQH0S7ZH8EL/9XkmOuz9hV5ORwn8Q==} - peerDependencies: - '@wagmi/core': 2.6.10 - typescript: 5.2.2 - viem: 2.x - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) - '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(react@18.2.0) - '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) - typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - react-dom - - react-native - - rollup - - supports-color - - utf-8-validate - - zod - dev: false - - /@wagmi/connectors@4.1.26(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-0bANLzi4gZcszPnCj3l7+DPztCG+L+W1Zm/a02YmEh2MaQC/blBsbAdb2JALdW66HJJE8m4cNZjPJPTsS2/MQQ==} + /@wagmi/connectors@5.0.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-2YgcgVn6S8kuOe/PVweK0ucxNqO651VqlPWD+MrPxEVwcpEPLNKvtrYdLRDTSnwwUEqEzgnDwEAhcrniK76+Kw==} peerDependencies: - '@wagmi/core': 2.6.17 + '@wagmi/core': 2.10.2 typescript: 5.2.2 viem: 2.x peerDependenciesMeta: typescript: optional: true dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) + '@coinbase/wallet-sdk': 4.0.0 + '@metamask/sdk': 0.20.3(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(react@18.2.0) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.2.14)(@upstash/redis@1.22.1)(react@18.2.0) '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) + cbw-sdk: /@coinbase/wallet-sdk@3.9.3 typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21151,6 +21011,7 @@ packages: - encoding - react - react-dom + - react-i18next - react-native - rollup - supports-color @@ -21158,25 +21019,26 @@ packages: - zod dev: false - /@wagmi/connectors@4.1.26(@types/react@18.2.14)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14): - resolution: {integrity: sha512-0bANLzi4gZcszPnCj3l7+DPztCG+L+W1Zm/a02YmEh2MaQC/blBsbAdb2JALdW66HJJE8m4cNZjPJPTsS2/MQQ==} + /@wagmi/connectors@5.0.2(@types/react@18.2.14)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11): + resolution: {integrity: sha512-2YgcgVn6S8kuOe/PVweK0ucxNqO651VqlPWD+MrPxEVwcpEPLNKvtrYdLRDTSnwwUEqEzgnDwEAhcrniK76+Kw==} peerDependencies: - '@wagmi/core': 2.6.17 + '@wagmi/core': 2.10.2 typescript: 5.2.2 viem: 2.x peerDependenciesMeta: typescript: optional: true dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) + '@coinbase/wallet-sdk': 4.0.0 + '@metamask/sdk': 0.20.3(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(react@18.2.0) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.2.14)(react@18.2.0) '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) + cbw-sdk: /@coinbase/wallet-sdk@3.9.3 typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21195,32 +21057,33 @@ packages: - encoding - react - react-dom + - react-i18next - react-native - rollup - supports-color - utf-8-validate - zod - dev: true - /@wagmi/connectors@4.1.26(@types/react@18.2.14)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-0bANLzi4gZcszPnCj3l7+DPztCG+L+W1Zm/a02YmEh2MaQC/blBsbAdb2JALdW66HJJE8m4cNZjPJPTsS2/MQQ==} + /@wagmi/connectors@5.0.2(@types/react@18.2.14)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-2YgcgVn6S8kuOe/PVweK0ucxNqO651VqlPWD+MrPxEVwcpEPLNKvtrYdLRDTSnwwUEqEzgnDwEAhcrniK76+Kw==} peerDependencies: - '@wagmi/core': 2.6.17 + '@wagmi/core': 2.10.2 typescript: 5.2.2 viem: 2.x peerDependenciesMeta: typescript: optional: true dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) + '@coinbase/wallet-sdk': 4.0.0 + '@metamask/sdk': 0.20.3(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4) '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(react@18.2.0) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.2.14)(react@18.2.0) '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) + cbw-sdk: /@coinbase/wallet-sdk@3.9.3 typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21239,6 +21102,7 @@ packages: - encoding - react - react-dom + - react-i18next - react-native - rollup - supports-color @@ -21246,25 +21110,26 @@ packages: - zod dev: true - /@wagmi/connectors@4.1.26(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14): - resolution: {integrity: sha512-0bANLzi4gZcszPnCj3l7+DPztCG+L+W1Zm/a02YmEh2MaQC/blBsbAdb2JALdW66HJJE8m4cNZjPJPTsS2/MQQ==} + /@wagmi/connectors@5.0.2(@wagmi/core@2.10.2)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-2YgcgVn6S8kuOe/PVweK0ucxNqO651VqlPWD+MrPxEVwcpEPLNKvtrYdLRDTSnwwUEqEzgnDwEAhcrniK76+Kw==} peerDependencies: - '@wagmi/core': 2.6.17 + '@wagmi/core': 2.10.2 typescript: 5.2.2 viem: 2.x peerDependenciesMeta: typescript: optional: true dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) + '@coinbase/wallet-sdk': 4.0.0 + '@metamask/sdk': 0.20.3(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0) '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(react@18.2.0) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.2.14)(react@18.2.0) '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) + cbw-sdk: /@coinbase/wallet-sdk@3.9.3 typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21283,6 +21148,7 @@ packages: - encoding - react - react-dom + - react-i18next - react-native - rollup - supports-color @@ -21290,52 +21156,8 @@ packages: - zod dev: false - /@wagmi/connectors@4.1.26(@wagmi/core@2.6.17)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-0bANLzi4gZcszPnCj3l7+DPztCG+L+W1Zm/a02YmEh2MaQC/blBsbAdb2JALdW66HJJE8m4cNZjPJPTsS2/MQQ==} - peerDependencies: - '@wagmi/core': 2.6.17 - typescript: 5.2.2 - viem: 2.x - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@coinbase/wallet-sdk': 3.9.1 - '@metamask/sdk': 0.14.3(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - '@safe-global/safe-apps-provider': 0.18.1(typescript@5.2.2)(zod@3.21.4) - '@safe-global/safe-apps-sdk': 8.1.0(typescript@5.2.2)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@walletconnect/ethereum-provider': 2.11.2(@types/react@18.2.14)(react@18.2.0) - '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) - typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - react - - react-dom - - react-native - - rollup - - supports-color - - utf-8-validate - - zod - dev: false - - /@wagmi/core@2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14): - resolution: {integrity: sha512-Ghr7PlD5HO1YJrsaC52j/csgaigBAiTR7cFiwrY7WdwvWLsR5na4Dv6KfHTU3d3al0CKDLanQdRS5nB4mX1M+g==} + /@wagmi/core@2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11): + resolution: {integrity: sha512-SfQ1F7Azjlx4cKGfmg9+GEUGbukCxraoLYZyCUgTLpKw2OY+4sHsPRwHQENQt/YRWKMyG3/byEYRna2Kv1anpw==} peerDependencies: '@tanstack/query-core': '>=5.0.0' typescript: 5.2.2 @@ -21349,7 +21171,7 @@ packages: eventemitter3: 5.0.1 mipd: 0.0.5(typescript@5.2.2)(zod@3.21.4) typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) zustand: 4.4.1(@types/react@18.2.14)(react@18.2.0) transitivePeerDependencies: - '@types/react' @@ -21359,8 +21181,8 @@ packages: - utf-8-validate - zod - /@wagmi/core@2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-Ghr7PlD5HO1YJrsaC52j/csgaigBAiTR7cFiwrY7WdwvWLsR5na4Dv6KfHTU3d3al0CKDLanQdRS5nB4mX1M+g==} + /@wagmi/core@2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-SfQ1F7Azjlx4cKGfmg9+GEUGbukCxraoLYZyCUgTLpKw2OY+4sHsPRwHQENQt/YRWKMyG3/byEYRna2Kv1anpw==} peerDependencies: '@tanstack/query-core': '>=5.0.0' typescript: 5.2.2 @@ -21374,7 +21196,7 @@ packages: eventemitter3: 5.0.1 mipd: 0.0.5(typescript@5.2.2)(zod@3.21.4) typescript: 5.2.2 - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) zustand: 4.4.1(@types/react@18.2.14)(react@18.2.0) transitivePeerDependencies: - '@types/react' @@ -21420,26 +21242,26 @@ packages: '@wallet-standard/base': 1.0.1 dev: false - /@walletconnect/core@2.11.2(@upstash/redis@1.22.1): - resolution: {integrity: sha512-bB4SiXX8hX3/hyBfVPC5gwZCXCl+OPj+/EDVM71iAO3TDsh78KPbrVAbDnnsbHzZVHlsMohtXX3j5XVsheN3+g==} + /@walletconnect/core@2.13.0(@upstash/redis@1.22.1): + resolution: {integrity: sha512-blDuZxQenjeXcVJvHxPznTNl6c/2DO4VNrFnus+qHmO6OtT5lZRowdMtlCaCNb1q0OxzgrmBDcTOCbFcCpio/g==} dependencies: - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/jsonrpc-ws-connection': 1.0.14 '@walletconnect/keyvaluestorage': 1.1.1(@upstash/redis@1.22.1) - '@walletconnect/logger': 2.0.1 - '@walletconnect/relay-api': 1.0.9 + '@walletconnect/logger': 2.1.2 + '@walletconnect/relay-api': 1.0.10 '@walletconnect/relay-auth': 1.0.4 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/utils': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/utils': 2.13.0(@upstash/redis@1.22.1) events: 3.3.0 isomorphic-unfetch: 3.1.0 lodash.isequal: 4.5.0 - uint8arrays: 3.1.1 + uint8arrays: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -21463,18 +21285,18 @@ packages: dependencies: tslib: 1.14.1 - /@walletconnect/ethereum-provider@2.11.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(react@18.2.0): - resolution: {integrity: sha512-BUDqee0Uy2rCZVkW5Ao3q6Ado/3fePYnFdryVF+YL6bPhj+xQZ5OfKodl+uvs7Rwq++O5wTX2RqOTzpW7+v+Mg==} + /@walletconnect/ethereum-provider@2.13.0(@types/react@18.2.14)(@upstash/redis@1.22.1)(react@18.2.0): + resolution: {integrity: sha512-dnpW8mmLpWl1AZUYGYZpaAfGw1HFkL0WSlhk5xekx3IJJKn4pLacX2QeIOo0iNkzNQxZfux1AK4Grl1DvtzZEA==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) - '@walletconnect/sign-client': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/universal-provider': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/utils': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/sign-client': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/universal-provider': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/utils': 2.13.0(@upstash/redis@1.22.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21497,18 +21319,18 @@ packages: - utf-8-validate dev: false - /@walletconnect/ethereum-provider@2.11.2(@types/react@18.2.14)(react@18.2.0): - resolution: {integrity: sha512-BUDqee0Uy2rCZVkW5Ao3q6Ado/3fePYnFdryVF+YL6bPhj+xQZ5OfKodl+uvs7Rwq++O5wTX2RqOTzpW7+v+Mg==} + /@walletconnect/ethereum-provider@2.13.0(@types/react@18.2.14)(react@18.2.0): + resolution: {integrity: sha512-dnpW8mmLpWl1AZUYGYZpaAfGw1HFkL0WSlhk5xekx3IJJKn4pLacX2QeIOo0iNkzNQxZfux1AK4Grl1DvtzZEA==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/modal': 2.6.2(@types/react@18.2.14)(react@18.2.0) - '@walletconnect/sign-client': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/universal-provider': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/utils': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/sign-client': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/universal-provider': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/utils': 2.13.0(@upstash/redis@1.22.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21536,29 +21358,29 @@ packages: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 - /@walletconnect/heartbeat@1.2.1: - resolution: {integrity: sha512-yVzws616xsDLJxuG/28FqtZ5rzrTA4gUjdEMTbWB5Y8V1XHRmqq4efAxCw5ie7WjbXFSUyBHaWlMR+2/CpQC5Q==} + /@walletconnect/heartbeat@1.2.2: + resolution: {integrity: sha512-uASiRmC5MwhuRuf05vq4AT48Pq8RMi876zV8rr8cV969uTOzWdB/k+Lj5yI2PBtB1bGQisGen7MM1GcZlQTBXw==} dependencies: '@walletconnect/events': 1.0.1 '@walletconnect/time': 1.0.2 - tslib: 1.14.1 + events: 3.3.0 - /@walletconnect/jsonrpc-http-connection@1.0.7: - resolution: {integrity: sha512-qlfh8fCfu8LOM9JRR9KE0s0wxP6ZG9/Jom8M0qsoIQeKF3Ni0FyV4V1qy/cc7nfI46SLQLSl4tgWSfLiE1swyQ==} + /@walletconnect/jsonrpc-http-connection@1.0.8: + resolution: {integrity: sha512-+B7cRuaxijLeFDJUq5hAzNyef3e3tBDIxyaCNmFtjwnod5AGis3RToNqzFU33vpVcxFhofkpE7Cx+5MYejbMGw==} dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 cross-fetch: 3.1.8 - tslib: 1.14.1 + events: 3.3.0 transitivePeerDependencies: - encoding - /@walletconnect/jsonrpc-provider@1.0.13: - resolution: {integrity: sha512-K73EpThqHnSR26gOyNEL+acEex3P7VWZe6KE12ZwKzAt2H4e5gldZHbjsu2QR9cLeJ8AXuO7kEMOIcRv1QEc7g==} + /@walletconnect/jsonrpc-provider@1.0.14: + resolution: {integrity: sha512-rtsNY1XqHvWj0EtITNeuf8PHMvlCLiS3EjQL+WOkxEOA4KPxsohFnBDeyPYiNm4ZvkQdLnece36opYidmtbmow==} dependencies: '@walletconnect/jsonrpc-utils': 1.0.8 '@walletconnect/safe-json': 1.0.2 - tslib: 1.14.1 + events: 3.3.0 /@walletconnect/jsonrpc-types@1.0.3: resolution: {integrity: sha512-iIQ8hboBl3o5ufmJ8cuduGad0CQm3ZlsHtujv9Eu16xq89q+BG7Nh5VLxxUgmtpnrePgFkTwXirCTkwJH1v+Yw==} @@ -21566,6 +21388,12 @@ packages: keyvaluestorage-interface: 1.0.0 tslib: 1.14.1 + /@walletconnect/jsonrpc-types@1.0.4: + resolution: {integrity: sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==} + dependencies: + events: 3.3.0 + keyvaluestorage-interface: 1.0.0 + /@walletconnect/jsonrpc-utils@1.0.8: resolution: {integrity: sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==} dependencies: @@ -21609,11 +21437,11 @@ packages: - '@vercel/kv' - supports-color - /@walletconnect/logger@2.0.1: - resolution: {integrity: sha512-SsTKdsgWm+oDTBeNE/zHxxr5eJfZmE9/5yp/Ku+zJtcTAjELb3DXueWkDXmE9h8uHIbJzIb5wj5lPdzyrjT6hQ==} + /@walletconnect/logger@2.1.2: + resolution: {integrity: sha512-aAb28I3S6pYXZHQm5ESB+V6rDqIYfsnHaQyzFbwUUBFY4H0OXx/YtTl8lvhUNhMMfb9UxbwEBS253TlXUYJWSw==} dependencies: + '@walletconnect/safe-json': 1.0.2 pino: 7.11.0 - tslib: 1.14.1 /@walletconnect/modal-core@2.6.2(@types/react@18.2.14)(react@18.2.0): resolution: {integrity: sha512-cv8ibvdOJQv2B+nyxP9IIFdxvQznMz8OOr/oR/AaUZym4hjXNL/l1a2UlSQBXrVjo3xxbouMxLb3kBsHoYP2CA==} @@ -21643,11 +21471,10 @@ packages: - '@types/react' - react - /@walletconnect/relay-api@1.0.9: - resolution: {integrity: sha512-Q3+rylJOqRkO1D9Su0DPE3mmznbAalYapJ9qmzDgK28mYF9alcP3UwG/og5V7l7CFOqzCLi7B8BvcBUrpDj0Rg==} + /@walletconnect/relay-api@1.0.10: + resolution: {integrity: sha512-tqrdd4zU9VBNqUaXXQASaexklv6A54yEyQQEXYOCr+Jz8Ket0dmPBDyg19LVSNUN2cipAghQc45/KVmfFJ0cYw==} dependencies: - '@walletconnect/jsonrpc-types': 1.0.3 - tslib: 1.14.1 + '@walletconnect/jsonrpc-types': 1.0.4 /@walletconnect/relay-auth@1.0.4: resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==} @@ -21664,17 +21491,17 @@ packages: dependencies: tslib: 1.14.1 - /@walletconnect/sign-client@2.11.2(@upstash/redis@1.22.1): - resolution: {integrity: sha512-MfBcuSz2GmMH+P7MrCP46mVE5qhP0ZyWA0FyIH6/WuxQ6G+MgKsGfaITqakpRPsykWOJq8tXMs3XvUPDU413OQ==} + /@walletconnect/sign-client@2.13.0(@upstash/redis@1.22.1): + resolution: {integrity: sha512-En7KSvNUlQFx20IsYGsFgkNJ2lpvDvRsSFOT5PTdGskwCkUfOpB33SQJ6nCrN19gyoKPNvWg80Cy6MJI0TjNYA==} dependencies: - '@walletconnect/core': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/core': 2.13.0(@upstash/redis@1.22.1) '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 + '@walletconnect/heartbeat': 1.2.2 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/utils': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/utils': 2.13.0(@upstash/redis@1.22.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21699,14 +21526,14 @@ packages: dependencies: tslib: 1.14.1 - /@walletconnect/types@2.11.2(@upstash/redis@1.22.1): - resolution: {integrity: sha512-p632MFB+lJbip2cvtXPBQslpUdiw1sDtQ5y855bOlAGquay+6fZ4h1DcDePeKQDQM3P77ax2a9aNPZxV6y/h1Q==} + /@walletconnect/types@2.13.0(@upstash/redis@1.22.1): + resolution: {integrity: sha512-MWaVT0FkZwzYbD3tvk8F+2qpPlz1LUSWHuqbINUtMXnSzJtXN49Y99fR7FuBhNFtDalfuWsEK17GrNA+KnAsPQ==} dependencies: '@walletconnect/events': 1.0.1 - '@walletconnect/heartbeat': 1.2.1 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/heartbeat': 1.2.2 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/keyvaluestorage': 1.1.1(@upstash/redis@1.22.1) - '@walletconnect/logger': 2.0.1 + '@walletconnect/logger': 2.1.2 events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21723,17 +21550,17 @@ packages: - '@vercel/kv' - supports-color - /@walletconnect/universal-provider@2.11.2(@upstash/redis@1.22.1): - resolution: {integrity: sha512-cNtIn5AVoDxKAJ4PmB8m5adnf5mYQMUamEUPKMVvOPscfGtIMQEh9peKsh2AN5xcRVDbgluC01Id545evFyymw==} + /@walletconnect/universal-provider@2.13.0(@upstash/redis@1.22.1): + resolution: {integrity: sha512-B5QvO8pnk5Bqn4aIt0OukGEQn2Auk9VbHfhQb9cGwgmSCd1GlprX/Qblu4gyT5+TjHMb1Gz5UssUaZWTWbDhBg==} dependencies: - '@walletconnect/jsonrpc-http-connection': 1.0.7 - '@walletconnect/jsonrpc-provider': 1.0.13 - '@walletconnect/jsonrpc-types': 1.0.3 + '@walletconnect/jsonrpc-http-connection': 1.0.8 + '@walletconnect/jsonrpc-provider': 1.0.14 + '@walletconnect/jsonrpc-types': 1.0.4 '@walletconnect/jsonrpc-utils': 1.0.8 - '@walletconnect/logger': 2.0.1 - '@walletconnect/sign-client': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) - '@walletconnect/utils': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/logger': 2.1.2 + '@walletconnect/sign-client': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) + '@walletconnect/utils': 2.13.0(@upstash/redis@1.22.1) events: 3.3.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -21753,23 +21580,23 @@ packages: - supports-color - utf-8-validate - /@walletconnect/utils@2.11.2(@upstash/redis@1.22.1): - resolution: {integrity: sha512-LyfdmrnZY6dWqlF4eDrx5jpUwsB2bEPjoqR5Z6rXPiHJKUOdJt7az+mNOn5KTSOlRpd1DmozrBrWr+G9fFLYVw==} + /@walletconnect/utils@2.13.0(@upstash/redis@1.22.1): + resolution: {integrity: sha512-q1eDCsRHj5iLe7fF8RroGoPZpdo2CYMZzQSrw1iqL+2+GOeqapxxuJ1vaJkmDUkwgklfB22ufqG6KQnz78sD4w==} dependencies: '@stablelib/chacha20poly1305': 1.0.1 '@stablelib/hkdf': 1.0.1 '@stablelib/random': 1.0.2 '@stablelib/sha256': 1.0.1 '@stablelib/x25519': 1.0.3 - '@walletconnect/relay-api': 1.0.9 + '@walletconnect/relay-api': 1.0.10 '@walletconnect/safe-json': 1.0.2 '@walletconnect/time': 1.0.2 - '@walletconnect/types': 2.11.2(@upstash/redis@1.22.1) + '@walletconnect/types': 2.13.0(@upstash/redis@1.22.1) '@walletconnect/window-getters': 1.0.1 '@walletconnect/window-metadata': 1.0.1 detect-browser: 5.3.0 query-string: 7.1.3 - uint8arrays: 3.1.1 + uint8arrays: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -23483,6 +23310,7 @@ packages: '@babel/runtime': 7.24.4 cosmiconfig: 7.1.0 resolve: 1.22.8 + dev: false /babel-plugin-named-asset-import@0.3.8(@babel/core@7.24.4): resolution: {integrity: sha512-WXiAc++qo7XcJ1ZnTYGtLxmBCVbddAml3CEXgWaBzNzLNoxtQ8AiGEFDMOhot9XjTCQbvP5E77Fj9Gk924f00Q==} @@ -25737,6 +25565,7 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 yaml: 1.10.2 + dev: false /cosmiconfig@8.0.0: resolution: {integrity: sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==} @@ -27703,13 +27532,13 @@ packages: dependencies: once: 1.4.0 - /engine.io-client@6.5.2(bufferutil@4.0.8)(utf-8-validate@6.0.3): + /engine.io-client@6.5.2: resolution: {integrity: sha512-CQZqbrpEYnrpGqC07a9dJDz4gePZUgTPMU3NKJPSeQOyw27Tst4Pl3FemKoFGAlHzgZmKjoRmiJvbWfhCXUlIg==} dependencies: '@socket.io/component-emitter': 3.1.0 debug: 4.3.4(supports-color@8.1.1) engine.io-parser: 5.2.1 - ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) + ws: 8.11.0 xmlhttprequest-ssl: 2.0.0 transitivePeerDependencies: - bufferutil @@ -29545,11 +29374,6 @@ packages: json-rpc-random-id: 1.0.1 xtend: 4.0.2 - /eth-rpc-errors@4.0.2: - resolution: {integrity: sha512-n+Re6Gu8XGyfFy1it0AwbD1x0MUzspQs0D5UiPs1fFPCr6WAwZM+vbIhXheBFrpgosqN9bs5PqlB4Q61U/QytQ==} - dependencies: - fast-safe-stringify: 2.1.1 - /eth-rpc-errors@4.0.3: resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==} dependencies: @@ -30119,10 +29943,11 @@ packages: resolution: {integrity: sha512-UOiS2in6/Q0FK0R0q6UY9vYpQ21mr/Qn1KOnte7vsACuNJf514WvCCUHSRCPcgjPT2bAhNIJdlE6bVap1GKmeg==} dev: true - /extension-port-stream@2.1.1: - resolution: {integrity: sha512-qknp5o5rj2J9CRKfVB8KJr+uXQlrojNZzdESUPhKYLXf97TPcGf6qWWKmpsNNtUyOdzFhab1ON0jzouNxHHvow==} + /extension-port-stream@3.0.0: + resolution: {integrity: sha512-an2S5quJMiy5bnZKEf6AkfH/7r8CzHvhchU40gxN+OM6HPhe7Z9T1FUychcf2M9PpPOO0Hf7BAEfJkw2TDIBDw==} engines: {node: '>=12.0.0'} dependencies: + readable-stream: 3.6.2 webextension-polyfill: 0.10.0 /external-editor@3.1.0: @@ -30181,9 +30006,6 @@ packages: /fast-decode-uri-component@1.0.1: resolution: {integrity: sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==} - /fast-deep-equal@2.0.1: - resolution: {integrity: sha512-bCK/2Z4zLidyB4ReuIsvALH6w31YfAQDmXMqMx6FyfHqvBxtjC0eRumeSu4Bs3XtXwpyIywtSTrVT99BxY1f9w==} - /fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -30495,9 +30317,6 @@ packages: array-back: 3.1.0 dev: false - /find-root@1.1.0: - resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==} - /find-up@1.1.2: resolution: {integrity: sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==} engines: {node: '>=0.10.0'} @@ -32394,10 +32213,10 @@ packages: resolution: {integrity: sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==} dev: false - /i18next-browser-languagedetector@7.2.0: - resolution: {integrity: sha512-U00DbDtFIYD3wkWsr2aVGfXGAj2TgnELzOX9qv8bT0aJtvPV9CRO77h+vgmHFBMe7LAxdwvT/7VkCWGya6L3tA==} + /i18next-browser-languagedetector@7.1.0: + resolution: {integrity: sha512-cr2k7u1XJJ4HTOjM9GyOMtbOA47RtUoWRAtt52z43r3AoMs2StYKyjS3URPhzHaf+mn10hY9dZWamga5WPQjhA==} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 /i18next@22.5.1: resolution: {integrity: sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA==} @@ -33269,6 +33088,13 @@ packages: dependencies: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + /isows@1.0.4(ws@8.13.0): + resolution: {integrity: sha512-hEzjY+x9u9hPmBom9IIAqdJCwNLax+xrPb51vEPpERoFlIxgmZcHzsT5jKG06nvInKOBGvReAVz80Umed5CczQ==} + peerDependencies: + ws: '*' + dependencies: + ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + /isstream@0.1.2: resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==} @@ -34733,21 +34559,13 @@ packages: engines: {node: '>=10.0.0'} dependencies: '@metamask/safe-event-emitter': 2.0.0 - eth-rpc-errors: 4.0.2 + eth-rpc-errors: 4.0.3 /json-rpc-error@2.0.0: resolution: {integrity: sha512-EwUeWP+KgAZ/xqFpaP6YDAXMtCJi+o/QQpCQFIYyxr01AdADi2y413eM8hSqJcoQym9WMePAJWoaODEJufC4Ug==} dependencies: inherits: 2.0.4 - /json-rpc-middleware-stream@4.2.3: - resolution: {integrity: sha512-4iFb0yffm5vo3eFKDbQgke9o17XBcLQ2c3sONrXSbcOLzP8LTojqo8hRGVgtJShhm5q4ZDSNq039fAx9o65E1w==} - engines: {node: '>=14.0.0'} - dependencies: - '@metamask/safe-event-emitter': 3.1.1 - json-rpc-engine: 6.1.0 - readable-stream: 2.3.8 - /json-rpc-protocol@0.13.2: resolution: {integrity: sha512-2InSi+c7wGESmvYcEVS0clctpJCodV7gLqLN1BIIPNK07wokXIwhOL8RQWU4O7oX5adChn6HJGtIU6JaUQ1P/A==} engines: {node: '>=4'} @@ -35397,10 +35215,6 @@ packages: resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} dev: true - /lodash.flatmap@4.5.0: - resolution: {integrity: sha512-/OcpcAGWlrZyoHGeHh3cAoa6nGdX6QYtmzNP84Jqol6UEQQ2gIaU3H+0eICcjcKGl0/XF8LWOujNn9lffsnaOg==} - dev: false - /lodash.flatten@4.4.0: resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} dev: true @@ -36018,12 +35832,6 @@ packages: /merge-descriptors@1.0.1: resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==} - /merge-options@3.0.4: - resolution: {integrity: sha512-2Sug1+knBjkaMsMgf1ctR1Ujx+Ayku4EdJN4Z+C2+JzoeF7A3OZ9KM2GY0CpQS51NR61LTurMJrRKPhSs3ZRTQ==} - engines: {node: '>=10'} - dependencies: - is-plain-obj: 2.1.0 - /merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -37016,6 +36824,11 @@ packages: resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} engines: {node: '>=4'} + /mrmime@2.0.0: + resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} + engines: {node: '>=10'} + dev: false + /ms@2.0.0: resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} @@ -37901,6 +37714,11 @@ packages: resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} dev: false + /opener@1.5.2: + resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} + hasBin: true + dev: false + /opentracing@0.14.7: resolution: {integrity: sha512-vz9iS7MJ5+Bp1URw8Khvdyw1H/hGvzHWlKQ7eRrQojSCDL1/SrWfrY9QebLw97n2deyRtzHRC3MkQfVNUCo91Q==} engines: {node: '>=0.10'} @@ -39683,9 +39501,6 @@ packages: engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} dev: false - /process-nextick-args@1.0.7: - resolution: {integrity: sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==} - /process-nextick-args@2.0.1: resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} @@ -40828,7 +40643,7 @@ packages: react-native: optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 html-parse-stringify: 3.0.1 i18next: 22.5.1 react: 18.2.0 @@ -41409,17 +41224,6 @@ packages: isarray: 0.0.1 string_decoder: 0.10.31 - /readable-stream@2.3.3: - resolution: {integrity: sha512-m+qzzcn7KUxEmd1gMbchF+Y2eIUbieUaxkWtptyHywrX0rE8QEYqPC07Vuy4Wm32/xE16NcdBctb8S0Xe/5IeQ==} - dependencies: - core-util-is: 1.0.3 - inherits: 2.0.4 - isarray: 1.0.0 - process-nextick-args: 1.0.7 - safe-buffer: 5.1.2 - string_decoder: 1.0.3 - util-deprecate: 1.0.2 - /readable-stream@2.3.8: resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} dependencies: @@ -42874,6 +42678,15 @@ packages: semver: 7.5.4 dev: true + /sirv@2.0.4: + resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} + engines: {node: '>= 10'} + dependencies: + '@polka/url': 1.0.0-next.25 + mrmime: 2.0.0 + totalist: 3.0.1 + dev: false + /sisteransi@1.0.5: resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} @@ -42966,13 +42779,13 @@ packages: transitivePeerDependencies: - supports-color - /socket.io-client@4.7.2(bufferutil@4.0.8)(utf-8-validate@6.0.3): + /socket.io-client@4.7.2: resolution: {integrity: sha512-vtA0uD4ibrYD793SOIAwlo8cj6haOeMHrGvwPxJsxH7CeIksqJ+3Zc06RvWTIFgiSqx4A3sOnTXpfAEE2Zyz6w==} engines: {node: '>=10.0.0'} dependencies: '@socket.io/component-emitter': 3.1.0 debug: 4.3.4(supports-color@8.1.1) - engine.io-client: 6.5.2(bufferutil@4.0.8)(utf-8-validate@6.0.3) + engine.io-client: 6.5.2 socket.io-parser: 4.2.4 transitivePeerDependencies: - bufferutil @@ -43638,11 +43451,6 @@ packages: /string_decoder@0.10.31: resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} - /string_decoder@1.0.3: - resolution: {integrity: sha512-4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ==} - dependencies: - safe-buffer: 5.1.2 - /string_decoder@1.1.1: resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} dependencies: @@ -43798,6 +43606,7 @@ packages: /stylis@4.2.0: resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==} + dev: false /stylus-lookup@5.0.1: resolution: {integrity: sha512-tLtJEd5AGvnVy4f9UHQMw4bkJJtaAcmo54N+ovQBjDY3DuWyK9Eltxzr5+KG0q4ew6v2EHyuWWNnHeiw/Eo7rQ==} @@ -44639,6 +44448,11 @@ packages: resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} engines: {node: '>=0.6'} + /totalist@3.0.1: + resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} + engines: {node: '>=6'} + dev: false + /tough-cookie@2.5.0: resolution: {integrity: sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==} engines: {node: '>=0.8'} @@ -45397,6 +45211,11 @@ packages: resolution: {integrity: sha512-R8375j0qwXyIu/7R0tjdF06/sElHqbmdmWC9M2qQHpEVbvE4I5+38KJI7LUUmQMp7NVq4tKHiBMkT0NFM453Ig==} dev: true + /uint8arrays@3.1.0: + resolution: {integrity: sha512-ei5rfKtoRO8OyOIor2Rz5fhzjThwIHJZ3uyDPnDHTXbP0aMQ1RN/6AI5B5d9dBxJOU+BvOAk7ZQ1xphsX8Lrog==} + dependencies: + multiformats: 9.9.0 + /uint8arrays@3.1.1: resolution: {integrity: sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==} dependencies: @@ -46178,8 +45997,8 @@ packages: - utf-8-validate - zod - /viem@2.8.14(typescript@5.2.2)(zod@3.21.4): - resolution: {integrity: sha512-K5u9OoyPQ7W8VPa6xY2m7oazuhemp0xuK9Ur8AkaXHtcusism9keTXDDaCw6WWFK3YR9HSojHJOtuVQqvRz0ug==} + /viem@2.10.11(typescript@5.2.2)(zod@3.21.4): + resolution: {integrity: sha512-V+y+INWpprABSAf35b2SwqCA97WUyhgtmoPPae6jN1yo+V7tNXg3rUvRukT1/9CD9f8QnhfpiZXkVSgtXbINRg==} peerDependencies: typescript: 5.2.2 peerDependenciesMeta: @@ -46192,7 +46011,7 @@ packages: '@scure/bip32': 1.3.2 '@scure/bip39': 1.2.1 abitype: 1.0.0(typescript@5.2.2)(zod@3.21.4) - isows: 1.0.3(ws@8.13.0) + isows: 1.0.4(ws@8.13.0) typescript: 5.2.2 ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: @@ -46384,8 +46203,8 @@ packages: xml-name-validator: 4.0.0 dev: false - /wagmi@2.5.20(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(@upstash/redis@1.22.1)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-K/9qk6+t/+NKFdbQyB7LtFgl3UXnGjvgyzAyfMQ+dF56uTSJipQwc94CSlN8kdQXTIOvhUSK2P7WJrdTEd15AA==} + /wagmi@2.9.2(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(@upstash/redis@1.22.1)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-FUSYm0RY2Zo7qL3LKDymtAk+oAiLJc0UUhfAEGhAgYBYqYXsDEpPoZM14i8zi6t4FMGlMONuyOTb0sediCJN1g==} peerDependencies: '@tanstack/react-query': '>=5.0.0' react: '>=18' @@ -46396,12 +46215,12 @@ packages: optional: true dependencies: '@tanstack/react-query': 4.28.0(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - '@wagmi/connectors': 4.1.26(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + '@wagmi/connectors': 5.0.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) react: 18.2.0 typescript: 5.2.2 use-sync-external-store: 1.2.0(react@18.2.0) - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -46421,6 +46240,7 @@ packages: - encoding - immer - react-dom + - react-i18next - react-native - rollup - supports-color @@ -46428,8 +46248,8 @@ packages: - zod dev: false - /wagmi@2.5.20(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-K/9qk6+t/+NKFdbQyB7LtFgl3UXnGjvgyzAyfMQ+dF56uTSJipQwc94CSlN8kdQXTIOvhUSK2P7WJrdTEd15AA==} + /wagmi@2.9.2(@tanstack/react-query@4.28.0)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-FUSYm0RY2Zo7qL3LKDymtAk+oAiLJc0UUhfAEGhAgYBYqYXsDEpPoZM14i8zi6t4FMGlMONuyOTb0sediCJN1g==} peerDependencies: '@tanstack/react-query': '>=5.0.0' react: '>=18' @@ -46440,56 +46260,12 @@ packages: optional: true dependencies: '@tanstack/react-query': 4.28.0(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0) - '@wagmi/connectors': 4.1.26(@types/react@18.2.14)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - react: 18.2.0 - typescript: 5.2.2 - use-sync-external-store: 1.2.0(react@18.2.0) - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) - transitivePeerDependencies: - - '@azure/app-configuration' - - '@azure/cosmos' - - '@azure/data-tables' - - '@azure/identity' - - '@azure/keyvault-secrets' - - '@azure/storage-blob' - - '@capacitor/preferences' - - '@netlify/blobs' - - '@planetscale/database' - - '@react-native-async-storage/async-storage' - - '@tanstack/query-core' - - '@types/react' - - '@upstash/redis' - - '@vercel/kv' - - bufferutil - - encoding - - immer - - react-dom - - react-native - - rollup - - supports-color - - utf-8-validate - - zod - dev: true - - /wagmi@2.5.20(@tanstack/react-query@5.29.2)(@types/react@18.2.14)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14): - resolution: {integrity: sha512-K/9qk6+t/+NKFdbQyB7LtFgl3UXnGjvgyzAyfMQ+dF56uTSJipQwc94CSlN8kdQXTIOvhUSK2P7WJrdTEd15AA==} - peerDependencies: - '@tanstack/react-query': '>=5.0.0' - react: '>=18' - typescript: 5.2.2 - viem: 2.x - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@tanstack/react-query': 5.29.2(react@18.2.0) - '@wagmi/connectors': 4.1.26(@types/react@18.2.14)(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + '@wagmi/connectors': 5.0.2(@types/react@18.2.14)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) react: 18.2.0 typescript: 5.2.2 use-sync-external-store: 1.2.0(react@18.2.0) - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -46509,6 +46285,7 @@ packages: - encoding - immer - react-dom + - react-i18next - react-native - rollup - supports-color @@ -46516,8 +46293,8 @@ packages: - zod dev: true - /wagmi@2.5.20(@tanstack/react-query@5.29.2)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14): - resolution: {integrity: sha512-K/9qk6+t/+NKFdbQyB7LtFgl3UXnGjvgyzAyfMQ+dF56uTSJipQwc94CSlN8kdQXTIOvhUSK2P7WJrdTEd15AA==} + /wagmi@2.9.2(@tanstack/react-query@5.29.2)(@types/react@18.2.14)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11): + resolution: {integrity: sha512-FUSYm0RY2Zo7qL3LKDymtAk+oAiLJc0UUhfAEGhAgYBYqYXsDEpPoZM14i8zi6t4FMGlMONuyOTb0sediCJN1g==} peerDependencies: '@tanstack/react-query': '>=5.0.0' react: '>=18' @@ -46528,12 +46305,12 @@ packages: optional: true dependencies: '@tanstack/react-query': 5.29.2(react@18.2.0) - '@wagmi/connectors': 4.1.26(@wagmi/core@2.6.17)(react-dom@18.2.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14) + '@wagmi/connectors': 5.0.2(@types/react@18.2.14)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) react: 18.2.0 typescript: 5.2.2 use-sync-external-store: 1.2.0(react@18.2.0) - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -46553,15 +46330,15 @@ packages: - encoding - immer - react-dom + - react-i18next - react-native - rollup - supports-color - utf-8-validate - zod - dev: false - /wagmi@2.5.20(@tanstack/react-query@5.29.2)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4): - resolution: {integrity: sha512-K/9qk6+t/+NKFdbQyB7LtFgl3UXnGjvgyzAyfMQ+dF56uTSJipQwc94CSlN8kdQXTIOvhUSK2P7WJrdTEd15AA==} + /wagmi@2.9.2(@tanstack/react-query@5.29.2)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): + resolution: {integrity: sha512-FUSYm0RY2Zo7qL3LKDymtAk+oAiLJc0UUhfAEGhAgYBYqYXsDEpPoZM14i8zi6t4FMGlMONuyOTb0sediCJN1g==} peerDependencies: '@tanstack/react-query': '>=5.0.0' react: '>=18' @@ -46572,12 +46349,12 @@ packages: optional: true dependencies: '@tanstack/react-query': 5.29.2(react@18.2.0) - '@wagmi/connectors': 4.1.26(@wagmi/core@2.6.17)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) - '@wagmi/core': 2.6.17(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.8.14)(zod@3.21.4) + '@wagmi/connectors': 5.0.2(@wagmi/core@2.10.2)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) + '@wagmi/core': 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) react: 18.2.0 typescript: 5.2.2 use-sync-external-store: 1.2.0(react@18.2.0) - viem: 2.8.14(typescript@5.2.2)(zod@3.21.4) + viem: 2.10.11(typescript@5.2.2)(zod@3.21.4) transitivePeerDependencies: - '@azure/app-configuration' - '@azure/cosmos' @@ -46597,6 +46374,7 @@ packages: - encoding - immer - react-dom + - react-i18next - react-native - rollup - supports-color @@ -47276,18 +47054,9 @@ packages: pvtsutils: 1.3.4 tslib: 2.6.2 - /webextension-polyfill-ts@0.25.0: - resolution: {integrity: sha512-ikQhwwHYkpBu00pFaUzIKY26I6L87DeRI+Q6jBT1daZUNuu8dSrg5U9l/ZbqdaQ1M/TTSPKeAa3kolP5liuedw==} - deprecated: This project has moved to @types/webextension-polyfill - dependencies: - webextension-polyfill: 0.7.0 - /webextension-polyfill@0.10.0: resolution: {integrity: sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==} - /webextension-polyfill@0.7.0: - resolution: {integrity: sha512-su48BkMLxqzTTvPSE1eWxKToPS2Tv5DLGxKexLEVpwFd6Po6N8hhSLIvG6acPAg7qERoEaDL+Y5HQJeJeml5Aw==} - /webidl-conversions@3.0.1: resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} @@ -47309,6 +47078,29 @@ packages: engines: {node: '>=12'} dev: false + /webpack-bundle-analyzer@4.10.1: + resolution: {integrity: sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==} + engines: {node: '>= 10.13.0'} + hasBin: true + dependencies: + '@discoveryjs/json-ext': 0.5.7 + acorn: 8.11.3 + acorn-walk: 8.2.0 + commander: 7.2.0 + debounce: 1.2.1 + escape-string-regexp: 4.0.0 + gzip-size: 6.0.0 + html-escaper: 2.0.2 + is-plain-object: 5.0.0 + opener: 1.5.2 + picocolors: 1.0.0 + sirv: 2.0.4 + ws: 7.5.9 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + /webpack-dev-middleware@5.3.4(webpack@5.91.0): resolution: {integrity: sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q==} engines: {node: '>= 12.13.0'} @@ -48015,7 +47807,7 @@ packages: utf-8-validate: optional: true - /ws@8.11.0(bufferutil@4.0.8)(utf-8-validate@6.0.3): + /ws@8.11.0: resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==} engines: {node: '>=10.0.0'} peerDependencies: @@ -48026,9 +47818,6 @@ packages: optional: true utf-8-validate: optional: true - dependencies: - bufferutil: 4.0.8 - utf-8-validate: 6.0.3 /ws@8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10): resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==} diff --git a/protocols/route-processor/package.json b/protocols/route-processor/package.json index dd8c27026e..eb73251933 100644 --- a/protocols/route-processor/package.json +++ b/protocols/route-processor/package.json @@ -68,6 +68,6 @@ "ts-generator": "0.1.1", "ts-node": "10.9.1", "typescript": "5.2.2", - "viem": "2.8.14" + "viem": "2.10.11" } } diff --git a/protocols/tines-sandbox/package.json b/protocols/tines-sandbox/package.json index c8c04b6c81..5d107a6734 100644 --- a/protocols/tines-sandbox/package.json +++ b/protocols/tines-sandbox/package.json @@ -76,6 +76,6 @@ "ts-node": "10.9.1", "tsup": "7.2.0", "typescript": "5.2.2", - "viem": "2.8.14" + "viem": "2.10.11" } } From c23c8e96f5d53a8680c134ee8b93b37f28f78233 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 22 May 2024 19:10:15 +0000 Subject: [PATCH 008/119] chore(optimization): move wagmi pkg --- apps/evm/next.config.mjs | 3 +- apps/evm/package.json | 1 - .../evm/src/app/(landing)/components/Hero.tsx | 2 +- .../src/app/(landing)/components/Search.tsx | 2 +- apps/evm/src/app/bonds/header.tsx | 2 +- .../src/app/claims/components/ClaimItem.tsx | 18 ++- apps/evm/src/app/claims/components/Header.tsx | 2 +- .../src/app/claims/components/RevokeItem.tsx | 5 +- apps/evm/src/app/claims/rp2/page.tsx | 10 +- apps/evm/src/app/home/header.tsx | 2 +- apps/evm/src/app/layout.tsx | 4 +- apps/evm/src/app/pool/add/page.tsx | 5 +- .../src/app/pool/add/v2/[chainId]/page.tsx | 9 +- apps/evm/src/app/pool/header.tsx | 2 +- apps/evm/src/app/pool/hero.tsx | 2 +- apps/evm/src/app/pool/incentivize/page.tsx | 21 ++- apps/evm/src/app/providers.tsx | 4 +- apps/evm/src/app/stake/header.tsx | 2 +- apps/evm/src/app/swap/header.tsx | 2 +- apps/evm/src/app/swap/providers.tsx | 2 +- apps/evm/src/app/tokenlist-request/page.tsx | 2 +- apps/evm/src/lib/hooks/useSimulateTrade.ts | 6 +- .../v3/use-concentrated-active-liquidity.ts | 2 +- apps/evm/src/lib/pool/v3/use-ticks.ts | 10 +- apps/evm/src/lib/swap/getTokenTax.ts | 2 +- .../useSquidCrossChainTrade.ts | 2 +- .../useStargateBridgeFees.ts | 7 +- .../useStargateCrossChainTrade.ts | 2 +- .../wagmi}/actions/account/fetchBalances.ts | 0 .../account/AddressToEnsResolver.tsx | 0 .../account/EnsToAddressResolver.tsx | 0 .../lib/wagmi}/components/account/index.ts | 0 .../lib/wagmi}/components/connect-button.tsx | 2 +- .../components/header-network-selector.tsx | 0 .../lib/wagmi}/components/network-check.tsx | 0 .../components/sanctioned-address-dialog.tsx | 0 .../wagmi}/components/token-security-view.tsx | 0 .../token-selector/TokenSelector.tsx | 2 +- .../TokenSelectorCurrencyList.tsx | 0 .../token-selector/TokenSelectorImportRow.tsx | 0 .../token-selector/TokenSelectorRow.tsx | 0 .../hooks/useSortedTokenList.ts | 8 +- .../components/user-profile/ConnectView.tsx | 3 +- .../components/user-profile/DefaultView.tsx | 0 .../components/user-profile/Notification.tsx | 0 .../user-profile/NotificationGroup.tsx | 0 .../components/user-profile/ProfileView.ts | 0 .../components/user-profile/SettingsView.tsx | 0 .../user-profile/TransactionsView.tsx | 0 .../wagmi}/components/user-profile/index.tsx | 0 .../wagmi}/components/user-profile/types.ts | 0 .../components/wagmi-header-components.tsx | 0 .../components/wagmi-store-version-check.tsx | 0 .../web3-input/Currency/BalancePanel.tsx | 0 .../web3-input/Currency/CurrencyInput.tsx | 2 +- .../web3-input/Currency/PricePanel.tsx | 0 .../components/web3-input/Currency/index.tsx | 0 .../lib/wagmi}/components/web3-input/Ens.tsx | 0 .../lib/wagmi}/components/web3-input/index.ts | 0 apps/evm/src/lib/wagmi/config/index.ts | 27 ++++ .../src/lib/wagmi/{ => config}/production.ts | 0 .../lib/wagmi/{ => config}/test/constants.ts | 0 .../src/lib/wagmi/{ => config}/test/index.ts | 0 .../getTridentConstantPoolFactoryContract.ts | 0 .../getTridentStablePoolFactoryContract.ts | 0 .../useTridentContantPoolFactoryContract.ts | 7 +- .../useTridentStablePoolFactoryContract.ts | 7 +- .../approvals/actions/getTokenAllowance.ts | 0 .../approvals/hooks/useTokenAllowance.ts | 0 .../hooks/approvals/hooks/useTokenApproval.ts | 0 .../hooks/approvals/hooks/useTokenPermit.ts | 2 +- .../approvals/hooks/useTokenRevokeApproval.ts | 0 .../wagmi}/hooks/balances/useBalanceWeb3.ts | 2 +- .../hooks/balances/useBalanceWeb3Refetch.ts | 0 .../wagmi}/hooks/balances/useBalancesWeb3.ts | 2 +- .../src/lib/wagmi}/hooks/bar/useBarDeposit.ts | 0 .../src/lib/wagmi}/hooks/bar/useBarWithdaw.ts | 0 .../bentobox/actions/getBentoboxTotal.ts | 0 .../bentobox/actions/getBentoboxTotals.ts | 0 .../bentobox/hooks/useBentoBoxApproval.ts | 4 +- .../hooks/bentobox/hooks/useBentoBoxTotals.ts | 2 +- .../hooks/block/useCurrentBlockTimestamp.ts | 5 +- .../wagmi/hooks/bonds/use-bond-discount.ts | 2 +- .../hooks/bonds/use-bond-market-details.ts | 0 .../hooks/bonds/use-bond-market-price.ts | 0 .../hooks/contracts/useBentoBoxContract.ts | 0 .../hooks/contracts/useMulticall3Contract.ts | 0 .../hooks/contracts/useMulticallContract.ts | 0 .../hooks/contracts/useSushiSwapRouter.ts | 0 .../hooks/contracts/useSushiXSwap2Contract.ts | 0 .../hooks/contracts/useSushiXSwapContract.ts | 0 .../hooks/contracts/useTridentRouter.ts | 0 .../hooks/contracts/useV3FactoryContract.ts | 0 .../useV3NonFungiblePositionManager.ts | 0 .../wagmi}/hooks/contracts/useV3TickLens.ts | 0 .../hooks/currency/useCurrencyCombinations.ts | 0 .../hooks/currency/useNativeCurrency.ts | 0 .../exploits/abis/SushiFundsReturnerAbi.ts | 0 .../lib/wagmi}/hooks/exploits/constants.ts | 0 .../hooks/exploits/data/arbitrum-tree.json | 0 .../hooks/exploits/data/avalanche-tree.json | 0 .../wagmi}/hooks/exploits/data/boba-tree.json | 0 .../wagmi}/hooks/exploits/data/bsc-tree.json | 0 .../hooks/exploits/data/ethereum-tree.json | 0 .../hooks/exploits/data/fantom-tree.json | 0 .../wagmi}/hooks/exploits/data/nova-tree.json | 0 .../hooks/exploits/data/optimism-tree.json | 0 .../hooks/exploits/data/polygon-tree.json | 0 .../hooks/exploits/data/rp2-approvals.json | 0 .../exploits/hooks/useRP2ExploitCheck.ts | 0 .../exploits/hooks/useRP2ExploitClaim.ts | 0 .../hooks/useRP2ExploitClaimFinder.ts | 0 .../exploits/hooks/useRP2ExploitIsClaimed.ts | 0 .../src/lib/wagmi}/hooks/exploits/types.ts | 0 .../hooks/master-chef/use-farm-rewards.ts | 4 +- .../master-chef/use-master-chef-contract.ts | 0 .../master-chef/use-master-chef-deposit.ts | 0 .../master-chef/use-master-chef-withdraw.ts | 0 .../hooks/master-chef/use-master-chef.ts | 0 .../wagmi}/hooks/master-chef/use-rewarder.ts | 0 .../wagmi}/hooks/migrate/abis/V3Migrator.ts | 0 .../src/lib/wagmi}/hooks/migrate/constants.ts | 0 .../hooks/migrate/hooks/useV3Migrate.tsx | 0 .../evm/src/lib/wagmi}/hooks/migrate/types.ts | 0 .../wagmi}/hooks/pools/actions/getAllPools.ts | 2 +- .../hooks/pools/actions/getAllPoolsCodeMap.ts | 0 .../pools/actions/getBridgeBentoPools.ts | 0 .../actions/getConcentratedLiquidityPool.ts | 0 .../getConcentratedLiquidityPoolReserves.ts | 2 +- .../actions/getConcentratedPositionOwner.ts | 0 .../pools/actions/getSushiSwapV2Pools.ts | 0 .../pools/actions/getTridentConstantPools.ts | 17 ++- .../pools/actions/getTridentStablePools.ts | 2 +- .../wagmi}/hooks/pools/actions/getV3Pools.ts | 0 .../lib/wagmi}/hooks/pools/actions/utils.ts | 0 .../hooks/useConcentratedLiquidityPool.ts | 2 +- .../useConcentratedLiquidityPoolReserves.ts | 2 +- .../lib/wagmi}/hooks/pools/hooks/usePools.ts | 0 .../wagmi}/hooks/pools/hooks/usePoolsAsMap.ts | 2 +- .../hooks/pools/hooks/usePoolsCodeMap.ts | 0 .../hooks/pools/hooks/useSushiSwapV2Pools.ts | 0 .../useTridentConstantPoolFactoryContract.ts | 0 .../pools/hooks/useTridentConstantPools.ts | 26 ++-- .../useTridentStablePoolFactoryContract.ts | 2 +- .../pools/hooks/useTridentStablePools.ts | 4 +- .../src/lib/wagmi}/hooks/pools/types/index.ts | 0 .../getConcentratedLiquidityPositionFees.ts | 0 .../getConcentratedLiquidityPositions.ts | 0 ...centratedLiquidityPositionsFromTokenIds.ts | 0 .../useConcentratedLiquidityPositions.ts | 8 +- .../hooks/useConcentratedPositionInfo.ts | 2 +- .../hooks/useConcentratedPositionOwner.ts | 0 .../useConcentratedPositionsFromTokenId.ts | 2 +- .../useConcentratedPositionsFromTokenIds.ts | 2 +- .../src/lib/wagmi}/hooks/positions/types.ts | 2 +- .../hooks/rewards/abis/DistributionCreator.ts | 0 .../wagmi}/hooks/rewards/abis/ERC1967Proxy.ts | 0 .../lib/wagmi}/hooks/rewards/abis/index.ts | 0 .../rewards/hooks/useAcceptAngleConditions.ts | 0 .../rewards/hooks/useHarvestAngleRewards.ts | 0 .../hooks/useIncentivizePoolWithRewards.ts | 0 .../hooks/tokens/useSortedTokensByQuery.ts | 0 .../wagmi}/hooks/tokens/useTokenWithCache.ts | 0 .../src/lib/wagmi}/hooks/tokens/useTokens.ts | 0 .../lib/wagmi}/hooks/tokens/useTotalSupply.ts | 0 .../wagmi}/hooks/trade/use-client-trade.ts | 2 +- .../hooks/useSteer/useSteerAccountPosition.ts | 2 +- .../useSteerAccountPositionsExtended.ts | 0 .../hooks/useSteer/useSteerVaultReserves.ts | 2 +- .../utils/hooks/useTransactionDeadline.ts | 2 +- .../src/lib/wagmi}/hooks/wallet/useConnect.ts | 0 .../lib/wagmi}/hooks/wallet/useWalletState.ts | 0 .../lib/wagmi}/hooks/watch/useWatchByBlock.ts | 0 .../wagmi}/hooks/watch/useWatchByInterval.ts | 0 apps/evm/src/lib/wagmi/index.ts | 28 +--- .../lib/wagmi}/systems/Checker/Amounts.tsx | 3 +- .../systems/Checker/ApproveBentobox.tsx | 4 +- .../wagmi}/systems/Checker/ApproveERC20.tsx | 12 +- .../systems/Checker/ApproveERC20Multiple.tsx | 0 .../Checker/ApproveERC20WithPermit.tsx | 13 +- .../lib/wagmi}/systems/Checker/Connect.tsx | 2 +- .../src/lib/wagmi}/systems/Checker/Custom.tsx | 0 .../src/lib/wagmi}/systems/Checker/Guard.tsx | 0 .../lib/wagmi}/systems/Checker/Network.tsx | 0 .../lib/wagmi}/systems/Checker/Provider.tsx | 0 .../lib/wagmi}/systems/Checker/Success.tsx | 0 .../src/lib/wagmi}/systems/Checker/index.ts | 0 .../systems/PoolFinder/ComponentsWrapper.tsx | 0 .../wagmi}/systems/PoolFinder/PoolFinder.tsx | 2 +- .../systems/PoolFinder/SushiSwapV2Pool.tsx | 2 +- .../PoolFinder/TridentConstantPool.tsx | 2 +- .../systems/PoolFinder/TridentStablePool.tsx | 2 +- .../lib/wagmi}/systems/PoolFinder/types.ts | 9 +- apps/evm/src/providers/wagmi-provider.tsx | 11 +- .../src/ui/bonds/bonds-buy-review-modal.tsx | 17 +-- .../evm/src/ui/bonds/bonds-market-details.tsx | 2 +- .../bonds-market-page-header-discount.tsx | 2 +- .../bonds-positions-table-columns.tsx | 16 +-- .../bonds-positions-table.tsx | 2 +- apps/evm/src/ui/bonds/bonds-widget.tsx | 12 +- apps/evm/src/ui/pool/AddSectionLegacy.tsx | 14 +- .../src/ui/pool/AddSectionPoolShareCardV2.tsx | 2 +- .../AddSectionReviewModalConcentrated.tsx | 24 ++-- .../ui/pool/AddSectionReviewModalLegacy.tsx | 35 ++--- .../ui/pool/AddSectionReviewModalTrident.tsx | 36 +++--- apps/evm/src/ui/pool/AddSectionStake.tsx | 16 +-- .../evm/src/ui/pool/AddSectionStakeWidget.tsx | 2 +- apps/evm/src/ui/pool/AddSectionWidget.tsx | 4 +- .../ConcentratedLiquidityCollectButton.tsx | 18 +-- .../ConcentratedLiquidityHarvestButton.tsx | 2 +- .../ConcentratedLiquidityPositionAPRCell.tsx | 2 +- .../ui/pool/ConcentratedLiquidityProvider.tsx | 2 +- .../ConcentratedLiquidityRemoveWidget.tsx | 24 ++-- .../ConcentratedLiquidityURLStateProvider.tsx | 4 +- .../ui/pool/ConcentratedLiquidityWidget.tsx | 10 +- .../ConcentratedPositionsTable.tsx | 6 +- .../Tables/Manual/Manual.tsx | 2 +- .../Tables/Manual/useManualPositions.ts | 3 +- .../Tables/Smart/useSteerPositions.ts | 3 +- apps/evm/src/ui/pool/CreatePositionManual.tsx | 2 +- .../pool/CreateSectionReviewModalTrident.tsx | 45 ++++--- apps/evm/src/ui/pool/MigrateTab.tsx | 37 +++--- apps/evm/src/ui/pool/MigrateTabContent.tsx | 3 +- apps/evm/src/ui/pool/PoolMyRewards.tsx | 2 +- apps/evm/src/ui/pool/PoolNameCellV3.tsx | 2 +- apps/evm/src/ui/pool/PoolPageV3.tsx | 6 +- apps/evm/src/ui/pool/PoolPosition.tsx | 3 +- apps/evm/src/ui/pool/PoolPositionProvider.tsx | 4 +- .../ui/pool/PoolPositionRewardsProvider.tsx | 12 +- .../ui/pool/PoolPositionStakedProvider.tsx | 2 +- apps/evm/src/ui/pool/PositionCardList.tsx | 2 +- .../src/ui/pool/PositionQuickHoverTooltip.tsx | 2 +- apps/evm/src/ui/pool/PositionView.tsx | 16 +-- apps/evm/src/ui/pool/PositionsTable.tsx | 2 +- apps/evm/src/ui/pool/PriceRangeCell.tsx | 2 +- apps/evm/src/ui/pool/RemoveSectionLegacy.tsx | 48 ++++--- apps/evm/src/ui/pool/RemoveSectionTrident.tsx | 46 +++---- apps/evm/src/ui/pool/RemoveSectionUnstake.tsx | 6 +- apps/evm/src/ui/pool/RemoveSectionWidget.tsx | 2 +- apps/evm/src/ui/pool/RewardSlide.tsx | 2 +- apps/evm/src/ui/pool/RewardsSection.tsx | 2 +- apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx | 2 +- apps/evm/src/ui/pool/SelectPricesWidget.tsx | 4 +- apps/evm/src/ui/pool/SelectTokensWidget.tsx | 2 +- apps/evm/src/ui/pool/SmartPositionsTable.tsx | 3 +- .../Add/SteerPositionAdd.tsx | 5 +- .../Add/SteerPositionAddProvider.tsx | 2 +- .../Add/SteerPositionAddReviewModal.tsx | 17 +-- .../Remove/SteerPositionRemove.tsx | 18 +-- .../SteerPositionDetails.tsx | 3 +- apps/evm/src/ui/pool/UnknownTokenAlert.tsx | 2 +- apps/evm/src/ui/pool/columns.tsx | 2 +- apps/evm/src/ui/stake/BarBalanceProvider.tsx | 3 +- apps/evm/src/ui/stake/StakeSection.tsx | 9 +- apps/evm/src/ui/stake/StakeSectionWidget.tsx | 2 +- apps/evm/src/ui/stake/UnstakeSection.tsx | 5 +- .../evm/src/ui/stake/UnstakeSectionWidget.tsx | 2 +- apps/evm/src/ui/stake/VotingPowerProvider.tsx | 10 +- ...ross-chain-swap-token-not-found-dialog.tsx | 3 +- .../cross-chain-swap-token0-input.tsx | 2 +- .../cross-chain-swap-token1-input.tsx | 2 +- .../cross-chain-swap-trade-button.tsx | 2 +- .../cross-chain-swap-trade-review-dialog.tsx | 20 +-- .../cross-chain-swap-trade-stats.tsx | 4 +- ...derivedstate-cross-chain-swap-provider.tsx | 10 +- .../src/ui/swap/defer-until-wallet-ready.tsx | 2 +- .../derivedstate-simple-swap-provider.tsx | 13 +- .../simple/simple-swap-additional-button.tsx | 2 +- .../simple-swap-token-not-found-dialog.tsx | 3 +- .../swap/simple/simple-swap-token0-input.tsx | 2 +- .../swap/simple/simple-swap-token1-input.tsx | 2 +- .../swap/simple/simple-swap-trade-button.tsx | 2 +- .../simple-swap-trade-review-dialog.tsx | 23 ++-- .../swap/simple/simple-swap-trade-stats.tsx | 4 +- .../react-query/src/hooks/tokens/useToken.ts | 2 +- packages/wagmi/.eslintrc.cjs | 3 - packages/wagmi/README.md | 3 - packages/wagmi/package.json | 121 ------------------ packages/wagmi/src/actions/account/index.ts | 1 - packages/wagmi/src/actions/index.ts | 3 - packages/wagmi/src/components/index.ts | 8 -- packages/wagmi/src/contracts/actions/index.ts | 2 - packages/wagmi/src/contracts/hooks/index.ts | 2 - packages/wagmi/src/contracts/index.ts | 2 - .../src/hooks/approvals/actions/index.ts | 1 - .../wagmi/src/hooks/approvals/hooks/index.ts | 4 - packages/wagmi/src/hooks/approvals/index.ts | 2 - packages/wagmi/src/hooks/balances/index.ts | 3 - packages/wagmi/src/hooks/bar/index.ts | 2 - .../wagmi/src/hooks/bentobox/actions/index.ts | 2 - .../wagmi/src/hooks/bentobox/hooks/index.ts | 2 - packages/wagmi/src/hooks/bentobox/index.ts | 2 - packages/wagmi/src/hooks/block/index.ts | 1 - packages/wagmi/src/hooks/bonds/index.ts | 3 - packages/wagmi/src/hooks/contracts/index.ts | 10 -- packages/wagmi/src/hooks/currency/index.ts | 2 - .../wagmi/src/hooks/exploits/hooks/index.ts | 4 - packages/wagmi/src/hooks/exploits/index.ts | 3 - packages/wagmi/src/hooks/index.ts | 22 ---- packages/wagmi/src/hooks/master-chef/index.ts | 6 - .../wagmi/src/hooks/migrate/hooks/index.ts | 1 - packages/wagmi/src/hooks/migrate/index.ts | 3 - .../wagmi/src/hooks/pools/actions/index.ts | 6 - packages/wagmi/src/hooks/pools/hooks/index.ts | 11 -- packages/wagmi/src/hooks/pools/index.ts | 3 - .../src/hooks/positions/actions/index.ts | 3 - .../wagmi/src/hooks/positions/hooks/index.ts | 5 - packages/wagmi/src/hooks/positions/index.ts | 3 - .../wagmi/src/hooks/rewards/hooks/index.ts | 3 - packages/wagmi/src/hooks/rewards/index.ts | 2 - packages/wagmi/src/hooks/tokens/index.ts | 4 - packages/wagmi/src/hooks/trade/index.ts | 1 - packages/wagmi/src/hooks/useSteer/index.ts | 3 - packages/wagmi/src/hooks/utils/hooks/index.ts | 1 - packages/wagmi/src/hooks/utils/index.ts | 1 - packages/wagmi/src/hooks/wallet/index.ts | 2 - packages/wagmi/src/hooks/watch/index.ts | 2 - packages/wagmi/src/index.ts | 27 ---- .../wagmi/src/systems/PoolFinder/index.ts | 2 - packages/wagmi/src/systems/index.ts | 2 - packages/wagmi/tsconfig.json | 20 --- pnpm-lock.yaml | 3 - 322 files changed, 547 insertions(+), 861 deletions(-) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/actions/account/fetchBalances.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/account/AddressToEnsResolver.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/account/EnsToAddressResolver.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/account/index.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/connect-button.tsx (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/header-network-selector.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/network-check.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/sanctioned-address-dialog.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-security-view.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-selector/TokenSelector.tsx (99%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-selector/TokenSelectorCurrencyList.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-selector/TokenSelectorImportRow.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-selector/TokenSelectorRow.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/token-selector/hooks/useSortedTokenList.ts (97%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/ConnectView.tsx (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/DefaultView.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/Notification.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/NotificationGroup.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/ProfileView.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/SettingsView.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/TransactionsView.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/index.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/user-profile/types.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/wagmi-header-components.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/wagmi-store-version-check.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/Currency/BalancePanel.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/Currency/CurrencyInput.tsx (99%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/Currency/PricePanel.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/Currency/index.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/Ens.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/components/web3-input/index.ts (100%) create mode 100644 apps/evm/src/lib/wagmi/config/index.ts rename apps/evm/src/lib/wagmi/{ => config}/production.ts (100%) rename apps/evm/src/lib/wagmi/{ => config}/test/constants.ts (100%) rename apps/evm/src/lib/wagmi/{ => config}/test/index.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/contracts/actions/getTridentConstantPoolFactoryContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/contracts/actions/getTridentStablePoolFactoryContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/contracts/hooks/useTridentContantPoolFactoryContract.ts (93%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/contracts/hooks/useTridentStablePoolFactoryContract.ts (83%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/approvals/actions/getTokenAllowance.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/approvals/hooks/useTokenAllowance.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/approvals/hooks/useTokenApproval.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/approvals/hooks/useTokenPermit.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/approvals/hooks/useTokenRevokeApproval.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/balances/useBalanceWeb3.ts (95%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/balances/useBalanceWeb3Refetch.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/balances/useBalancesWeb3.ts (97%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bar/useBarDeposit.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bar/useBarWithdaw.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bentobox/actions/getBentoboxTotal.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bentobox/actions/getBentoboxTotals.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bentobox/hooks/useBentoBoxApproval.ts (97%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/bentobox/hooks/useBentoBoxTotals.ts (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/block/useCurrentBlockTimestamp.ts (88%) rename packages/wagmi/src/hooks/bonds/useDiscount.ts => apps/evm/src/lib/wagmi/hooks/bonds/use-bond-discount.ts (96%) rename packages/wagmi/src/hooks/bonds/useMarketDetails.ts => apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-details.ts (100%) rename packages/wagmi/src/hooks/bonds/useMarketPrice.ts => apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-price.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useBentoBoxContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useMulticall3Contract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useMulticallContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useSushiSwapRouter.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useSushiXSwap2Contract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useSushiXSwapContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useTridentRouter.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useV3FactoryContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useV3NonFungiblePositionManager.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/contracts/useV3TickLens.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/currency/useCurrencyCombinations.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/currency/useNativeCurrency.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/abis/SushiFundsReturnerAbi.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/constants.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/arbitrum-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/avalanche-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/boba-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/bsc-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/ethereum-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/fantom-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/nova-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/optimism-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/polygon-tree.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/data/rp2-approvals.json (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/hooks/useRP2ExploitCheck.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/hooks/useRP2ExploitClaim.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/exploits/types.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-farm-rewards.ts (96%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-master-chef-contract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-master-chef-deposit.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-master-chef-withdraw.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-master-chef.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/master-chef/use-rewarder.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/migrate/abis/V3Migrator.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/migrate/constants.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/migrate/hooks/useV3Migrate.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/migrate/types.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getAllPools.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getAllPoolsCodeMap.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getBridgeBentoPools.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getConcentratedLiquidityPool.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts (92%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getConcentratedPositionOwner.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getSushiSwapV2Pools.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getTridentConstantPools.ts (91%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getTridentStablePools.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/getV3Pools.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/actions/utils.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useConcentratedLiquidityPool.ts (91%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts (96%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/usePools.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/usePoolsAsMap.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/usePoolsCodeMap.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useSushiSwapV2Pools.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useTridentConstantPools.ts (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts (91%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/hooks/useTridentStablePools.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/pools/types/index.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/actions/getConcentratedLiquidityPositions.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/hooks/useConcentratedLiquidityPositions.ts (95%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/hooks/useConcentratedPositionInfo.ts (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/hooks/useConcentratedPositionOwner.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts (95%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/positions/types.ts (86%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/abis/DistributionCreator.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/abis/ERC1967Proxy.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/abis/index.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/hooks/useAcceptAngleConditions.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/hooks/useHarvestAngleRewards.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/rewards/hooks/useIncentivizePoolWithRewards.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/tokens/useSortedTokensByQuery.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/tokens/useTokenWithCache.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/tokens/useTokens.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/tokens/useTotalSupply.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/trade/use-client-trade.ts (99%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/useSteer/useSteerAccountPosition.ts (98%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/useSteer/useSteerAccountPositionsExtended.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/useSteer/useSteerVaultReserves.ts (97%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/utils/hooks/useTransactionDeadline.ts (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/wallet/useConnect.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/wallet/useWalletState.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/watch/useWatchByBlock.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/hooks/watch/useWatchByInterval.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Amounts.tsx (96%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/ApproveBentobox.tsx (93%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/ApproveERC20.tsx (91%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/ApproveERC20Multiple.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/ApproveERC20WithPermit.tsx (94%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Connect.tsx (93%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Custom.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Guard.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Network.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Provider.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/Success.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/Checker/index.ts (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/ComponentsWrapper.tsx (100%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/PoolFinder.tsx (95%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/SushiSwapV2Pool.tsx (87%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/TridentConstantPool.tsx (87%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/TridentStablePool.tsx (88%) rename {packages/wagmi/src => apps/evm/src/lib/wagmi}/systems/PoolFinder/types.ts (84%) delete mode 100644 packages/wagmi/.eslintrc.cjs delete mode 100644 packages/wagmi/README.md delete mode 100644 packages/wagmi/package.json delete mode 100644 packages/wagmi/src/actions/account/index.ts delete mode 100644 packages/wagmi/src/actions/index.ts delete mode 100644 packages/wagmi/src/components/index.ts delete mode 100644 packages/wagmi/src/contracts/actions/index.ts delete mode 100644 packages/wagmi/src/contracts/hooks/index.ts delete mode 100644 packages/wagmi/src/contracts/index.ts delete mode 100644 packages/wagmi/src/hooks/approvals/actions/index.ts delete mode 100644 packages/wagmi/src/hooks/approvals/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/approvals/index.ts delete mode 100644 packages/wagmi/src/hooks/balances/index.ts delete mode 100644 packages/wagmi/src/hooks/bar/index.ts delete mode 100644 packages/wagmi/src/hooks/bentobox/actions/index.ts delete mode 100644 packages/wagmi/src/hooks/bentobox/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/bentobox/index.ts delete mode 100644 packages/wagmi/src/hooks/block/index.ts delete mode 100644 packages/wagmi/src/hooks/bonds/index.ts delete mode 100644 packages/wagmi/src/hooks/contracts/index.ts delete mode 100644 packages/wagmi/src/hooks/currency/index.ts delete mode 100644 packages/wagmi/src/hooks/exploits/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/exploits/index.ts delete mode 100644 packages/wagmi/src/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/master-chef/index.ts delete mode 100644 packages/wagmi/src/hooks/migrate/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/migrate/index.ts delete mode 100644 packages/wagmi/src/hooks/pools/actions/index.ts delete mode 100644 packages/wagmi/src/hooks/pools/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/pools/index.ts delete mode 100644 packages/wagmi/src/hooks/positions/actions/index.ts delete mode 100644 packages/wagmi/src/hooks/positions/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/positions/index.ts delete mode 100644 packages/wagmi/src/hooks/rewards/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/rewards/index.ts delete mode 100644 packages/wagmi/src/hooks/tokens/index.ts delete mode 100644 packages/wagmi/src/hooks/trade/index.ts delete mode 100644 packages/wagmi/src/hooks/useSteer/index.ts delete mode 100644 packages/wagmi/src/hooks/utils/hooks/index.ts delete mode 100644 packages/wagmi/src/hooks/utils/index.ts delete mode 100644 packages/wagmi/src/hooks/wallet/index.ts delete mode 100644 packages/wagmi/src/hooks/watch/index.ts delete mode 100644 packages/wagmi/src/index.ts delete mode 100644 packages/wagmi/src/systems/PoolFinder/index.ts delete mode 100644 packages/wagmi/src/systems/index.ts delete mode 100644 packages/wagmi/tsconfig.json diff --git a/apps/evm/next.config.mjs b/apps/evm/next.config.mjs index 4a06670ed1..06a0127075 100644 --- a/apps/evm/next.config.mjs +++ b/apps/evm/next.config.mjs @@ -3,7 +3,7 @@ import defaultNextConfig from '@sushiswap/nextjs-config' import { withAxiom } from 'next-axiom' import withBundleAnalyzer from '@next/bundle-analyzer' -const bundleAnalyzer = withBundleAnalyzer({ enabled: true }) +const bundleAnalyzer = (a) => a // withBundleAnalyzer({ enabled: true }) const ACADEMY_URL = process.env.ACADEMY_URL || 'https://academy.sushi.com' const BLOG_URL = process.env.BLOG_URL || 'https://blog.sushi.com' @@ -20,7 +20,6 @@ const nextConfig = bundleAnalyzer({ experimental: { testProxy: true, }, - transpilePackages: ['@sushiswap/wagmi'], async redirects() { return [ { diff --git a/apps/evm/package.json b/apps/evm/package.json index b4acdeda36..f364d8c825 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -37,7 +37,6 @@ "@sushiswap/steer-sdk": "workspace:*", "@sushiswap/tailwindcss-config": "workspace:*", "@sushiswap/ui": "workspace:*", - "@sushiswap/wagmi": "workspace:*", "@sushiswap/wagmi-config": "workspace:*", "@tanstack/react-query": "4.28.0", "@tanstack/react-query-devtools": "4.28.0", diff --git a/apps/evm/src/app/(landing)/components/Hero.tsx b/apps/evm/src/app/(landing)/components/Hero.tsx index 9d18df630a..187daa5223 100644 --- a/apps/evm/src/app/(landing)/components/Hero.tsx +++ b/apps/evm/src/app/(landing)/components/Hero.tsx @@ -3,9 +3,9 @@ import { useInterval } from '@sushiswap/hooks' import { LinkInternal, typographyVariants } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { Container } from '@sushiswap/ui/components/container' -import { CurrencyInput } from '@sushiswap/wagmi/components/web3-input/Currency' import { motion } from 'framer-motion' import React, { FC, useEffect, useState } from 'react' +import { CurrencyInput } from 'src/lib/wagmi/components/web3-input/Currency' import { ChainId } from 'sushi/chain' import { Native, SUSHI } from 'sushi/currency' diff --git a/apps/evm/src/app/(landing)/components/Search.tsx b/apps/evm/src/app/(landing)/components/Search.tsx index 762b17591a..b9a260fb18 100644 --- a/apps/evm/src/app/(landing)/components/Search.tsx +++ b/apps/evm/src/app/(landing)/components/Search.tsx @@ -8,7 +8,6 @@ import { LinkInternal, classNames } from '@sushiswap/ui' import { Currency } from '@sushiswap/ui/components/currency' import { NetworkIcon } from '@sushiswap/ui/components/icons' import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' -import { useToken } from '@sushiswap/wagmi' import { FC, useEffect, useMemo, useRef, useState } from 'react' import chains, { ChainId, chainShortName } from 'sushi/chain' import { Native, Token, Type } from 'sushi/currency' @@ -16,6 +15,7 @@ import { type TokenList } from 'sushi/token-list' import { isAddress } from 'viem' import { useQuery } from '@tanstack/react-query' +import { useToken } from 'wagmi' import { SUPPORTED_CHAIN_IDS } from '../../../config' const EXAMPLE_CURRENCIES = [ diff --git a/apps/evm/src/app/bonds/header.tsx b/apps/evm/src/app/bonds/header.tsx index 6a4255561a..d9062fdaeb 100644 --- a/apps/evm/src/app/bonds/header.tsx +++ b/apps/evm/src/app/bonds/header.tsx @@ -1,9 +1,9 @@ 'use client' import { Navigation } from '@sushiswap/ui' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/claims/components/ClaimItem.tsx b/apps/evm/src/app/claims/components/ClaimItem.tsx index bfaab7fb1a..5af3dd5618 100644 --- a/apps/evm/src/app/claims/components/ClaimItem.tsx +++ b/apps/evm/src/app/claims/components/ClaimItem.tsx @@ -7,17 +7,15 @@ import { Button } from '@sushiswap/ui/components/button' import { Currency } from '@sushiswap/ui/components/currency' import { NetworkIcon } from '@sushiswap/ui/components/icons' import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' -import { - useRP2ExploitClaim, - useRP2ExploitIsClaimed, - useTokenAllowance, - useTokenRevokeApproval, - useTokenWithCache, -} from '@sushiswap/wagmi' -import { RP2ClaimChainId } from '@sushiswap/wagmi' -import { RP2MerkleTreeClaimSchema } from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' import React, { FC, useMemo } from 'react' +import { useTokenAllowance } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance' +import { useTokenRevokeApproval } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval' +import { RP2MerkleTreeClaimSchema } from 'src/lib/wagmi/hooks/exploits/constants' +import { useRP2ExploitClaim } from 'src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaim' +import { useRP2ExploitIsClaimed } from 'src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed' +import { type RP2ClaimChainId } from 'src/lib/wagmi/hooks/exploits/types' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { ROUTE_PROCESSOR_2_ADDRESS } from 'sushi/config' import { Amount } from 'sushi/currency' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/app/claims/components/Header.tsx b/apps/evm/src/app/claims/components/Header.tsx index 6a4255561a..d9062fdaeb 100644 --- a/apps/evm/src/app/claims/components/Header.tsx +++ b/apps/evm/src/app/claims/components/Header.tsx @@ -1,9 +1,9 @@ 'use client' import { Navigation } from '@sushiswap/ui' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/claims/components/RevokeItem.tsx b/apps/evm/src/app/claims/components/RevokeItem.tsx index 41729c7671..b148006ded 100644 --- a/apps/evm/src/app/claims/components/RevokeItem.tsx +++ b/apps/evm/src/app/claims/components/RevokeItem.tsx @@ -4,9 +4,10 @@ import { Button } from '@sushiswap/ui/components/button' import { Currency } from '@sushiswap/ui/components/currency' import { NetworkIcon } from '@sushiswap/ui/components/icons' import { List } from '@sushiswap/ui/components/list/List' -import { useTokenAllowance, useTokenRevokeApproval } from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' import React, { FC } from 'react' +import { useTokenAllowance } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance' +import { useTokenRevokeApproval } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { ROUTE_PROCESSOR_2_ADDRESS, RouteProcessor2ChainId } from 'sushi/config' import { Token } from 'sushi/currency' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/app/claims/rp2/page.tsx b/apps/evm/src/app/claims/rp2/page.tsx index decf5a53f4..0b8a0dbd9a 100644 --- a/apps/evm/src/app/claims/rp2/page.tsx +++ b/apps/evm/src/app/claims/rp2/page.tsx @@ -5,14 +5,12 @@ import { ChevronRightIcon } from '@heroicons/react-v1/solid' import { LinkExternal, LinkInternal } from '@sushiswap/ui' import { Container } from '@sushiswap/ui/components/container' import { List } from '@sushiswap/ui/components/list/List' -import { - useAccount, - useRP2ExploitCheck, - useRP2ExploitClaimFinder, -} from '@sushiswap/wagmi' -import { ConnectButton } from '@sushiswap/wagmi/components' import React, { Fragment } from 'react' +import { ConnectButton } from 'src/lib/wagmi/components/connect-button' +import { useRP2ExploitCheck } from 'src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck' +import { useRP2ExploitClaimFinder } from 'src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder' +import { useAccount } from 'wagmi' import { ClaimItem } from '../components/ClaimItem' import { Header } from '../components/Header' import { RevokeItem } from '../components/RevokeItem' diff --git a/apps/evm/src/app/home/header.tsx b/apps/evm/src/app/home/header.tsx index eff9cdd84e..49de5ed335 100644 --- a/apps/evm/src/app/home/header.tsx +++ b/apps/evm/src/app/home/header.tsx @@ -1,10 +1,10 @@ 'use client' import { Navigation } from '@sushiswap/ui/components/navigation' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from '../../config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/layout.tsx b/apps/evm/src/app/layout.tsx index a852c95200..befefbb162 100644 --- a/apps/evm/src/app/layout.tsx +++ b/apps/evm/src/app/layout.tsx @@ -1,12 +1,12 @@ import '@sushiswap/ui/index.css' -import { SanctionedAddressDialog } from '@sushiswap/wagmi/components/sanctioned-address-dialog' import type { Metadata } from 'next' import { Inter, Roboto_Mono } from 'next/font/google' import React from 'react' import { headers } from 'next/headers' -import { getWagmiInitialState } from 'src/lib/wagmi' +import { SanctionedAddressDialog } from 'src/lib/wagmi/components/sanctioned-address-dialog' +import { getWagmiInitialState } from 'src/lib/wagmi/config' import { Providers } from './providers' import { Trackers } from './trackers' diff --git a/apps/evm/src/app/pool/add/page.tsx b/apps/evm/src/app/pool/add/page.tsx index bdd23ee3c9..5aa67fa84e 100644 --- a/apps/evm/src/app/pool/add/page.tsx +++ b/apps/evm/src/app/pool/add/page.tsx @@ -1,12 +1,13 @@ 'use client' -import { useAccount, useConcentratedPositionInfo } from '@sushiswap/wagmi' -import { getV3FactoryContractConfig } from '@sushiswap/wagmi/hooks/contracts/useV3FactoryContract' import React, { FC, useMemo, useState } from 'react' +import { getV3FactoryContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3FactoryContract' +import { useConcentratedPositionInfo } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo' import { computeSushiSwapV3PoolAddress } from 'sushi' import { isWNativeSupported } from 'sushi/config' import { tryParseAmount } from 'sushi/currency' import { SWRConfig } from 'swr' +import { useAccount } from 'wagmi' import { SUPPORTED_CHAIN_IDS } from '../../../config' import { useTokenAmountDollarValues } from '../../../lib/hooks' import { ConcentratedLiquidityProvider } from '../../../ui/pool/ConcentratedLiquidityProvider' diff --git a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx index 2edf34d21a..5f8f33d3c1 100644 --- a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx +++ b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx @@ -4,10 +4,6 @@ import { PlusIcon } from '@heroicons/react-v1/solid' import { FormSection } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { Loader } from '@sushiswap/ui/components/loader' -import { PoolFinder, SushiSwapV2PoolState } from '@sushiswap/wagmi' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' -import { Checker } from '@sushiswap/wagmi/systems' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' import { useRouter } from 'next/navigation' import React, { Dispatch, @@ -37,10 +33,15 @@ import { ZERO } from 'sushi/math' import { SushiSwapV2Pool } from 'sushi/pool' import { SWRConfig } from 'swr' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { SushiSwapV2PoolState } from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { AddSectionPoolShareCardV2 } from 'src/ui/pool/AddSectionPoolShareCardV2' import { AddSectionReviewModalLegacy } from '../../../../../ui/pool/AddSectionReviewModalLegacy' import { SelectNetworkWidget } from '../../../../../ui/pool/SelectNetworkWidget' import { SelectTokensWidget } from '../../../../../ui/pool/SelectTokensWidget' +import { PoolFinder } from 'src/lib/wagmi/systems/PoolFinder/PoolFinder' export default function Page({ params }: { params: { chainId: string } }) { const router = useRouter() diff --git a/apps/evm/src/app/pool/header.tsx b/apps/evm/src/app/pool/header.tsx index 6a4255561a..d9062fdaeb 100644 --- a/apps/evm/src/app/pool/header.tsx +++ b/apps/evm/src/app/pool/header.tsx @@ -1,9 +1,9 @@ 'use client' import { Navigation } from '@sushiswap/ui' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/pool/hero.tsx b/apps/evm/src/app/pool/hero.tsx index 66d16d1fbe..c796e911b0 100644 --- a/apps/evm/src/app/pool/hero.tsx +++ b/apps/evm/src/app/pool/hero.tsx @@ -13,7 +13,6 @@ import { } from '@sushiswap/ui/components/dropdown-menu' import { DiscordIcon } from '@sushiswap/ui/components/icons' import { SelectIcon } from '@sushiswap/ui/components/select' -import { useChainId } from '@sushiswap/wagmi' import { FC } from 'react' import { ChainId } from 'sushi/chain' import { @@ -21,6 +20,7 @@ import { isSushiSwapV2ChainId, isSushiSwapV3ChainId, } from 'sushi/config' +import { useChainId } from 'wagmi' export const Hero: FC = () => { const chainId = useChainId() diff --git a/apps/evm/src/app/pool/incentivize/page.tsx b/apps/evm/src/app/pool/incentivize/page.tsx index 0fdbf8b8ff..e75f2aa6b5 100644 --- a/apps/evm/src/app/pool/incentivize/page.tsx +++ b/apps/evm/src/app/pool/incentivize/page.tsx @@ -27,22 +27,20 @@ import { classNames, typographyVariants, } from '@sushiswap/ui' +import { format } from 'date-fns' +import { useMemo, useState } from 'react' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import { AngleConditionsState, useAcceptAngleConditions, - useAccount, - useConcentratedLiquidityPool, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { useIncentivizePoolWithRewards } from '@sushiswap/wagmi' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' -import { Checker } from '@sushiswap/wagmi/systems' +} from 'src/lib/wagmi/hooks/rewards/hooks/useAcceptAngleConditions' +import { useIncentivizePoolWithRewards } from 'src/lib/wagmi/hooks/rewards/hooks/useIncentivizePoolWithRewards' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { useApproved, withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' -import { format } from 'date-fns' -import { useMemo, useState } from 'react' +} from 'src/lib/wagmi/systems/Checker/Provider' import { Chain } from 'sushi/chain' import { ANGLE_ENABLED_NETWORKS, @@ -52,6 +50,7 @@ import { import { Token, Type, tryParseAmount } from 'sushi/currency' import { SushiSwapV3Pool } from 'sushi/pool' import { Address, zeroAddress } from 'viem' +import { useAccount, useWaitForTransactionReceipt } from 'wagmi' import { ConcentratedLiquidityProvider } from '../../../ui/pool/ConcentratedLiquidityProvider' import { ConcentratedLiquidityURLStateProvider, @@ -503,7 +502,7 @@ const Incentivize = withCheckerRoot(() => { In order to incentivize a pool, you must review and agree to{' '} . diff --git a/apps/evm/src/app/providers.tsx b/apps/evm/src/app/providers.tsx index 4b2febceb7..9e3be71109 100644 --- a/apps/evm/src/app/providers.tsx +++ b/apps/evm/src/app/providers.tsx @@ -1,8 +1,8 @@ 'use client' -import { State } from '@sushiswap/wagmi' -import { WagmiStoreVersionCheck } from '@sushiswap/wagmi/components' +import { State } from 'wagmi' +import { WagmiStoreVersionCheck } from 'src/lib/wagmi/components/wagmi-store-version-check' import { QueryClientProvider } from '../providers/query-client-provider' import { WagmiConfig } from '../providers/wagmi-provider' diff --git a/apps/evm/src/app/stake/header.tsx b/apps/evm/src/app/stake/header.tsx index 9fb8a588c7..4a23605f8d 100644 --- a/apps/evm/src/app/stake/header.tsx +++ b/apps/evm/src/app/stake/header.tsx @@ -1,9 +1,9 @@ 'use client' import { Navigation } from '@sushiswap/ui/components/navigation' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/swap/header.tsx b/apps/evm/src/app/swap/header.tsx index 9fb8a588c7..4a23605f8d 100644 --- a/apps/evm/src/app/swap/header.tsx +++ b/apps/evm/src/app/swap/header.tsx @@ -1,9 +1,9 @@ 'use client' import { Navigation } from '@sushiswap/ui/components/navigation' -import { WagmiHeaderComponents } from '@sushiswap/wagmi/components' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' export const Header: FC = () => { return ( diff --git a/apps/evm/src/app/swap/providers.tsx b/apps/evm/src/app/swap/providers.tsx index 94e4b2a23b..84e0cb079b 100644 --- a/apps/evm/src/app/swap/providers.tsx +++ b/apps/evm/src/app/swap/providers.tsx @@ -1,7 +1,7 @@ 'use client' import { ThemeProvider } from '@sushiswap/ui' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { DeferUntilWalletReady } from 'src/ui/swap/defer-until-wallet-ready' export function Providers({ children }: { children: React.ReactNode }) { diff --git a/apps/evm/src/app/tokenlist-request/page.tsx b/apps/evm/src/app/tokenlist-request/page.tsx index ad64783cb9..1a19f6cfaa 100644 --- a/apps/evm/src/app/tokenlist-request/page.tsx +++ b/apps/evm/src/app/tokenlist-request/page.tsx @@ -21,12 +21,12 @@ import { typographyVariants, } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' -import { useTokenWithCache } from '@sushiswap/wagmi' import React, { useCallback, useEffect } from 'react' import { DropzoneOptions, useDropzone } from 'react-dropzone' import { useForm } from 'react-hook-form' import { Chain, ChainId } from 'sushi/chain' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { SUPPORTED_CHAIN_IDS } from '../../config' import { ApplyForTokenListListType, diff --git a/apps/evm/src/lib/hooks/useSimulateTrade.ts b/apps/evm/src/lib/hooks/useSimulateTrade.ts index db1b815d3e..9dc9f5906f 100644 --- a/apps/evm/src/lib/hooks/useSimulateTrade.ts +++ b/apps/evm/src/lib/hooks/useSimulateTrade.ts @@ -1,8 +1,5 @@ import { UseTradeReturn } from '@sushiswap/react-query' -import { - SimulateContractErrorType, - useSimulateContract, -} from '@sushiswap/wagmi' +import { SimulateContractErrorType } from '@wagmi/core' import { useMemo } from 'react' import { useDerivedStateSimpleSwap } from 'src/ui/swap/simple/derivedstate-simple-swap-provider' import { routeProcessor4Abi } from 'sushi/abi' @@ -11,6 +8,7 @@ import { isRouteProcessor4ChainId, } from 'sushi/config' import { BaseError } from 'viem' +import { useSimulateContract } from 'wagmi' import { getTokenTax } from '../swap/getTokenTax' const isMinOutError = (error: SimulateContractErrorType | null) => diff --git a/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts b/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts index 8104ae78e7..5718d317d2 100644 --- a/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts +++ b/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts @@ -1,6 +1,5 @@ 'use client' -import { useConcentratedLiquidityPool } from '@sushiswap/wagmi' import { useMemo } from 'react' import { SushiSwapV3ChainId, @@ -10,6 +9,7 @@ import { import { Type } from 'sushi/currency' import { tickToPrice } from 'sushi/pool' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import computeSurroundingTicks from '../../functions' import { useTicks } from './use-ticks' diff --git a/apps/evm/src/lib/pool/v3/use-ticks.ts b/apps/evm/src/lib/pool/v3/use-ticks.ts index 13902a0b14..22ecaf5f61 100644 --- a/apps/evm/src/lib/pool/v3/use-ticks.ts +++ b/apps/evm/src/lib/pool/v3/use-ticks.ts @@ -1,12 +1,9 @@ 'use client' -import { useReadContracts } from '@sushiswap/wagmi' -import { - getV3FactoryContractConfig, - getV3TickLensContractConfig, - useConcentratedLiquidityPool, -} from '@sushiswap/wagmi' import { useMemo } from 'react' +import { getV3FactoryContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3FactoryContract' +import { getV3TickLensContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3TickLens' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import { SushiSwapV3ChainId, SushiSwapV3FeeAmount, @@ -15,6 +12,7 @@ import { import { Type } from 'sushi/currency' import { computeSushiSwapV3PoolAddress, nearestUsableTick } from 'sushi/pool' import { Address } from 'viem' +import { useReadContracts } from 'wagmi' import { Writeable } from 'zod' interface useTicksProps { diff --git a/apps/evm/src/lib/swap/getTokenTax.ts b/apps/evm/src/lib/swap/getTokenTax.ts index 3bfec20dd6..795c2db1e0 100644 --- a/apps/evm/src/lib/swap/getTokenTax.ts +++ b/apps/evm/src/lib/swap/getTokenTax.ts @@ -1,4 +1,4 @@ -import { SimulateContractErrorType } from '@sushiswap/wagmi' +import { SimulateContractErrorType } from '@wagmi/core' import { Fraction, Percent } from 'sushi' import { Amount, Type } from 'sushi/currency' import { decodeErrorResult } from 'viem' diff --git a/apps/evm/src/lib/swap/useCrossChainTrade/useSquidCrossChainTrade.ts b/apps/evm/src/lib/swap/useCrossChainTrade/useSquidCrossChainTrade.ts index 3ca594c107..b901001a22 100644 --- a/apps/evm/src/lib/swap/useCrossChainTrade/useSquidCrossChainTrade.ts +++ b/apps/evm/src/lib/swap/useCrossChainTrade/useSquidCrossChainTrade.ts @@ -1,5 +1,4 @@ import { UseTradeReturn, useTrade as useApiTrade } from '@sushiswap/react-query' -import { useAccount, useGasPrice } from '@sushiswap/wagmi' import { useQuery } from '@tanstack/react-query' import { log } from 'next-axiom' import { useMemo } from 'react' @@ -15,6 +14,7 @@ import { Percent, ZERO_PERCENT } from 'sushi/math' import { RouterLiquiditySource } from 'sushi/router' import { RToken } from 'sushi/tines' import { Hex, encodeFunctionData, stringify } from 'viem' +import { useAccount, useGasPrice } from 'wagmi' import { TransactionType, decodeSquidRouterCallData, diff --git a/apps/evm/src/lib/swap/useCrossChainTrade/useStargateBridgeFees.ts b/apps/evm/src/lib/swap/useCrossChainTrade/useStargateBridgeFees.ts index 06482159ad..8811f0531f 100644 --- a/apps/evm/src/lib/swap/useCrossChainTrade/useStargateBridgeFees.ts +++ b/apps/evm/src/lib/swap/useCrossChainTrade/useStargateBridgeFees.ts @@ -1,8 +1,3 @@ -import { - useBlockNumber, - useReadContract, - useReadContracts, -} from '@sushiswap/wagmi' import { useQueryClient } from '@tanstack/react-query' import { useEffect, useMemo } from 'react' import { stargateFeeLibraryV03Abi, stargatePoolAbi } from 'sushi/abi' @@ -17,6 +12,8 @@ import { } from 'sushi/config' import { Amount, Currency } from 'sushi/currency' import { Address, zeroAddress } from 'viem' +import { useBlockNumber, useReadContract } from 'wagmi' +import { useReadContracts } from 'wagmi' interface UseStargateBridgeFees { amount?: Amount diff --git a/apps/evm/src/lib/swap/useCrossChainTrade/useStargateCrossChainTrade.ts b/apps/evm/src/lib/swap/useCrossChainTrade/useStargateCrossChainTrade.ts index 8aeccf9512..78bc1fd556 100644 --- a/apps/evm/src/lib/swap/useCrossChainTrade/useStargateCrossChainTrade.ts +++ b/apps/evm/src/lib/swap/useCrossChainTrade/useStargateCrossChainTrade.ts @@ -1,5 +1,4 @@ import { useTrade as useApiTrade } from '@sushiswap/react-query' -import { useGasPrice, usePublicClient } from '@sushiswap/wagmi' import { useQuery } from '@tanstack/react-query' import { log } from 'next-axiom' import { useMemo } from 'react' @@ -19,6 +18,7 @@ import { parseUnits, stringify, } from 'viem' +import { useGasPrice, usePublicClient } from 'wagmi' import { STARGATE_DEFAULT_SLIPPAGE, TransactionType, diff --git a/packages/wagmi/src/actions/account/fetchBalances.ts b/apps/evm/src/lib/wagmi/actions/account/fetchBalances.ts similarity index 100% rename from packages/wagmi/src/actions/account/fetchBalances.ts rename to apps/evm/src/lib/wagmi/actions/account/fetchBalances.ts diff --git a/packages/wagmi/src/components/account/AddressToEnsResolver.tsx b/apps/evm/src/lib/wagmi/components/account/AddressToEnsResolver.tsx similarity index 100% rename from packages/wagmi/src/components/account/AddressToEnsResolver.tsx rename to apps/evm/src/lib/wagmi/components/account/AddressToEnsResolver.tsx diff --git a/packages/wagmi/src/components/account/EnsToAddressResolver.tsx b/apps/evm/src/lib/wagmi/components/account/EnsToAddressResolver.tsx similarity index 100% rename from packages/wagmi/src/components/account/EnsToAddressResolver.tsx rename to apps/evm/src/lib/wagmi/components/account/EnsToAddressResolver.tsx diff --git a/packages/wagmi/src/components/account/index.ts b/apps/evm/src/lib/wagmi/components/account/index.ts similarity index 100% rename from packages/wagmi/src/components/account/index.ts rename to apps/evm/src/lib/wagmi/components/account/index.ts diff --git a/packages/wagmi/src/components/connect-button.tsx b/apps/evm/src/lib/wagmi/components/connect-button.tsx similarity index 98% rename from packages/wagmi/src/components/connect-button.tsx rename to apps/evm/src/lib/wagmi/components/connect-button.tsx index 1ccbfd01e6..ecfe89b082 100644 --- a/packages/wagmi/src/components/connect-button.tsx +++ b/apps/evm/src/lib/wagmi/components/connect-button.tsx @@ -21,7 +21,7 @@ import { import React, { FC, useCallback, useMemo } from 'react' import Link from 'next/link' -import { useConnect } from '../hooks' +import { useConnect } from '../hooks/wallet/useConnect' const Icons: Record = { Injected: ChevronDoubleDownIcon, diff --git a/packages/wagmi/src/components/header-network-selector.tsx b/apps/evm/src/lib/wagmi/components/header-network-selector.tsx similarity index 100% rename from packages/wagmi/src/components/header-network-selector.tsx rename to apps/evm/src/lib/wagmi/components/header-network-selector.tsx diff --git a/packages/wagmi/src/components/network-check.tsx b/apps/evm/src/lib/wagmi/components/network-check.tsx similarity index 100% rename from packages/wagmi/src/components/network-check.tsx rename to apps/evm/src/lib/wagmi/components/network-check.tsx diff --git a/packages/wagmi/src/components/sanctioned-address-dialog.tsx b/apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx similarity index 100% rename from packages/wagmi/src/components/sanctioned-address-dialog.tsx rename to apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx diff --git a/packages/wagmi/src/components/token-security-view.tsx b/apps/evm/src/lib/wagmi/components/token-security-view.tsx similarity index 100% rename from packages/wagmi/src/components/token-security-view.tsx rename to apps/evm/src/lib/wagmi/components/token-security-view.tsx diff --git a/packages/wagmi/src/components/token-selector/TokenSelector.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx similarity index 99% rename from packages/wagmi/src/components/token-selector/TokenSelector.tsx rename to apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx index 1bb31d73e9..956782526c 100644 --- a/packages/wagmi/src/components/token-selector/TokenSelector.tsx +++ b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx @@ -42,7 +42,7 @@ import { ChainId } from 'sushi/chain' import { Native, Token, Type } from 'sushi/currency' import { isAddress } from 'viem' import { useAccount } from 'wagmi' -import { useTokenWithCache } from '../../hooks' +import { useTokenWithCache } from '../../hooks/tokens/useTokenWithCache' import { TokenSelectorCurrencyList } from './TokenSelectorCurrencyList' import { TokenSelectorImportRow } from './TokenSelectorImportRow' import { useSortedTokenList } from './hooks/useSortedTokenList' diff --git a/packages/wagmi/src/components/token-selector/TokenSelectorCurrencyList.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx similarity index 100% rename from packages/wagmi/src/components/token-selector/TokenSelectorCurrencyList.tsx rename to apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx diff --git a/packages/wagmi/src/components/token-selector/TokenSelectorImportRow.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx similarity index 100% rename from packages/wagmi/src/components/token-selector/TokenSelectorImportRow.tsx rename to apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx diff --git a/packages/wagmi/src/components/token-selector/TokenSelectorRow.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx similarity index 100% rename from packages/wagmi/src/components/token-selector/TokenSelectorRow.tsx rename to apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx diff --git a/packages/wagmi/src/components/token-selector/hooks/useSortedTokenList.ts b/apps/evm/src/lib/wagmi/components/token-selector/hooks/useSortedTokenList.ts similarity index 97% rename from packages/wagmi/src/components/token-selector/hooks/useSortedTokenList.ts rename to apps/evm/src/lib/wagmi/components/token-selector/hooks/useSortedTokenList.ts index a06e26d4ef..52dfb89f44 100644 --- a/packages/wagmi/src/components/token-selector/hooks/useSortedTokenList.ts +++ b/apps/evm/src/lib/wagmi/components/token-selector/hooks/useSortedTokenList.ts @@ -1,12 +1,12 @@ import { useQuery } from '@tanstack/react-query' -import { ChainId } from 'sushi/chain' -import { Amount, Native, Token, Type } from 'sushi/currency' -import { Fraction } from 'sushi/math' import { filterTokens, getSortedTokensByQuery, tokenComparator, -} from '../../../hooks' +} from 'src/lib/wagmi/hooks/tokens/useSortedTokensByQuery' +import { ChainId } from 'sushi/chain' +import { Amount, Native, Token, Type } from 'sushi/currency' +import { Fraction } from 'sushi/math' interface Params { query: string diff --git a/packages/wagmi/src/components/user-profile/ConnectView.tsx b/apps/evm/src/lib/wagmi/components/user-profile/ConnectView.tsx similarity index 98% rename from packages/wagmi/src/components/user-profile/ConnectView.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/ConnectView.tsx index 14ccd1cec7..a2a0784043 100644 --- a/packages/wagmi/src/components/user-profile/ConnectView.tsx +++ b/apps/evm/src/lib/wagmi/components/user-profile/ConnectView.tsx @@ -14,8 +14,7 @@ import { } from '@sushiswap/ui/components/icons' import { List } from '@sushiswap/ui/components/list/List' import React, { FC, ReactNode, SVGProps, useCallback, useMemo } from 'react' - -import { useConnect } from '../../hooks' +import { useConnect } from 'wagmi' const Icons: Record< string, diff --git a/packages/wagmi/src/components/user-profile/DefaultView.tsx b/apps/evm/src/lib/wagmi/components/user-profile/DefaultView.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/DefaultView.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/DefaultView.tsx diff --git a/packages/wagmi/src/components/user-profile/Notification.tsx b/apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/Notification.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx diff --git a/packages/wagmi/src/components/user-profile/NotificationGroup.tsx b/apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/NotificationGroup.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx diff --git a/packages/wagmi/src/components/user-profile/ProfileView.ts b/apps/evm/src/lib/wagmi/components/user-profile/ProfileView.ts similarity index 100% rename from packages/wagmi/src/components/user-profile/ProfileView.ts rename to apps/evm/src/lib/wagmi/components/user-profile/ProfileView.ts diff --git a/packages/wagmi/src/components/user-profile/SettingsView.tsx b/apps/evm/src/lib/wagmi/components/user-profile/SettingsView.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/SettingsView.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/SettingsView.tsx diff --git a/packages/wagmi/src/components/user-profile/TransactionsView.tsx b/apps/evm/src/lib/wagmi/components/user-profile/TransactionsView.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/TransactionsView.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/TransactionsView.tsx diff --git a/packages/wagmi/src/components/user-profile/index.tsx b/apps/evm/src/lib/wagmi/components/user-profile/index.tsx similarity index 100% rename from packages/wagmi/src/components/user-profile/index.tsx rename to apps/evm/src/lib/wagmi/components/user-profile/index.tsx diff --git a/packages/wagmi/src/components/user-profile/types.ts b/apps/evm/src/lib/wagmi/components/user-profile/types.ts similarity index 100% rename from packages/wagmi/src/components/user-profile/types.ts rename to apps/evm/src/lib/wagmi/components/user-profile/types.ts diff --git a/packages/wagmi/src/components/wagmi-header-components.tsx b/apps/evm/src/lib/wagmi/components/wagmi-header-components.tsx similarity index 100% rename from packages/wagmi/src/components/wagmi-header-components.tsx rename to apps/evm/src/lib/wagmi/components/wagmi-header-components.tsx diff --git a/packages/wagmi/src/components/wagmi-store-version-check.tsx b/apps/evm/src/lib/wagmi/components/wagmi-store-version-check.tsx similarity index 100% rename from packages/wagmi/src/components/wagmi-store-version-check.tsx rename to apps/evm/src/lib/wagmi/components/wagmi-store-version-check.tsx diff --git a/packages/wagmi/src/components/web3-input/Currency/BalancePanel.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Currency/BalancePanel.tsx similarity index 100% rename from packages/wagmi/src/components/web3-input/Currency/BalancePanel.tsx rename to apps/evm/src/lib/wagmi/components/web3-input/Currency/BalancePanel.tsx diff --git a/packages/wagmi/src/components/web3-input/Currency/CurrencyInput.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx similarity index 99% rename from packages/wagmi/src/components/web3-input/Currency/CurrencyInput.tsx rename to apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx index 4d308e7b75..fa6d2b22fa 100644 --- a/packages/wagmi/src/components/web3-input/Currency/CurrencyInput.tsx +++ b/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx @@ -17,10 +17,10 @@ import { Token, Type, tryParseAmount } from 'sushi/currency' import { useAccount } from 'wagmi' import { useIsMounted } from '@sushiswap/hooks' -import { useBalanceWeb3 } from '../../../hooks' import { TokenSelector } from '../../token-selector/TokenSelector' import { BalancePanel } from './BalancePanel' import { PricePanel } from './PricePanel' +import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' interface CurrencyInputProps { id?: string diff --git a/packages/wagmi/src/components/web3-input/Currency/PricePanel.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Currency/PricePanel.tsx similarity index 100% rename from packages/wagmi/src/components/web3-input/Currency/PricePanel.tsx rename to apps/evm/src/lib/wagmi/components/web3-input/Currency/PricePanel.tsx diff --git a/packages/wagmi/src/components/web3-input/Currency/index.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Currency/index.tsx similarity index 100% rename from packages/wagmi/src/components/web3-input/Currency/index.tsx rename to apps/evm/src/lib/wagmi/components/web3-input/Currency/index.tsx diff --git a/packages/wagmi/src/components/web3-input/Ens.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Ens.tsx similarity index 100% rename from packages/wagmi/src/components/web3-input/Ens.tsx rename to apps/evm/src/lib/wagmi/components/web3-input/Ens.tsx diff --git a/packages/wagmi/src/components/web3-input/index.ts b/apps/evm/src/lib/wagmi/components/web3-input/index.ts similarity index 100% rename from packages/wagmi/src/components/web3-input/index.ts rename to apps/evm/src/lib/wagmi/components/web3-input/index.ts diff --git a/apps/evm/src/lib/wagmi/config/index.ts b/apps/evm/src/lib/wagmi/config/index.ts new file mode 100644 index 0000000000..4b64f3c732 --- /dev/null +++ b/apps/evm/src/lib/wagmi/config/index.ts @@ -0,0 +1,27 @@ +import { PublicWagmiConfig } from '@sushiswap/wagmi-config' +import { cookieToInitialState } from '@wagmi/core' +import { createProductionConfig } from './production' +import { createTestConfig } from './test' + +export { createProductionConfig } +export { createTestConfig } + +export const wagmiConfig = (() => { + const isTest = process.env.NEXT_PUBLIC_APP_ENV === 'test' + + const config = (() => { + if (isTest) { + return createTestConfig() as unknown as PublicWagmiConfig + } + return createProductionConfig() + })() + + return config +})() + +export const getWagmiInitialState = ( + cookieHeaders: string | null | undefined, +) => { + const initialState = cookieToInitialState(wagmiConfig, cookieHeaders) + return initialState +} diff --git a/apps/evm/src/lib/wagmi/production.ts b/apps/evm/src/lib/wagmi/config/production.ts similarity index 100% rename from apps/evm/src/lib/wagmi/production.ts rename to apps/evm/src/lib/wagmi/config/production.ts diff --git a/apps/evm/src/lib/wagmi/test/constants.ts b/apps/evm/src/lib/wagmi/config/test/constants.ts similarity index 100% rename from apps/evm/src/lib/wagmi/test/constants.ts rename to apps/evm/src/lib/wagmi/config/test/constants.ts diff --git a/apps/evm/src/lib/wagmi/test/index.ts b/apps/evm/src/lib/wagmi/config/test/index.ts similarity index 100% rename from apps/evm/src/lib/wagmi/test/index.ts rename to apps/evm/src/lib/wagmi/config/test/index.ts diff --git a/packages/wagmi/src/contracts/actions/getTridentConstantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts similarity index 100% rename from packages/wagmi/src/contracts/actions/getTridentConstantPoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts diff --git a/packages/wagmi/src/contracts/actions/getTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts similarity index 100% rename from packages/wagmi/src/contracts/actions/getTridentStablePoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts diff --git a/packages/wagmi/src/contracts/hooks/useTridentContantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts similarity index 93% rename from packages/wagmi/src/contracts/hooks/useTridentContantPoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts index 36df782f80..c19df0d83c 100644 --- a/packages/wagmi/src/contracts/hooks/useTridentContantPoolFactoryContract.ts +++ b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts @@ -1,9 +1,8 @@ -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - import { useMemo } from 'react' import { TridentChainId } from 'sushi/config' -import { getTridentConstantPoolFactoryContract } from '../actions' +import { PublicClient, getContract } from 'viem' +import { usePublicClient } from 'wagmi' +import { getTridentConstantPoolFactoryContract } from '../actions/getTridentConstantPoolFactoryContract' export function useTridentConstantPoolFactoryContract( chainId: TridentChainId | null, diff --git a/packages/wagmi/src/contracts/hooks/useTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts similarity index 83% rename from packages/wagmi/src/contracts/hooks/useTridentStablePoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts index cac3e8c93a..8d30740e47 100644 --- a/packages/wagmi/src/contracts/hooks/useTridentStablePoolFactoryContract.ts +++ b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts @@ -1,9 +1,8 @@ -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - import { useMemo } from 'react' import { TridentChainId } from 'sushi/config' -import { getTridentStablePoolFactoryContract } from '../actions' +import { PublicClient, getContract } from 'viem' +import { usePublicClient } from 'wagmi' +import { getTridentStablePoolFactoryContract } from '../actions/getTridentStablePoolFactoryContract' export function useStablePoolFactoryContract( chainId: TridentChainId | undefined, diff --git a/packages/wagmi/src/hooks/approvals/actions/getTokenAllowance.ts b/apps/evm/src/lib/wagmi/hooks/approvals/actions/getTokenAllowance.ts similarity index 100% rename from packages/wagmi/src/hooks/approvals/actions/getTokenAllowance.ts rename to apps/evm/src/lib/wagmi/hooks/approvals/actions/getTokenAllowance.ts diff --git a/packages/wagmi/src/hooks/approvals/hooks/useTokenAllowance.ts b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance.ts similarity index 100% rename from packages/wagmi/src/hooks/approvals/hooks/useTokenAllowance.ts rename to apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance.ts diff --git a/packages/wagmi/src/hooks/approvals/hooks/useTokenApproval.ts b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenApproval.ts similarity index 100% rename from packages/wagmi/src/hooks/approvals/hooks/useTokenApproval.ts rename to apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenApproval.ts diff --git a/packages/wagmi/src/hooks/approvals/hooks/useTokenPermit.ts b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts similarity index 98% rename from packages/wagmi/src/hooks/approvals/hooks/useTokenPermit.ts rename to apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts index bad8998653..b67301250e 100644 --- a/packages/wagmi/src/hooks/approvals/hooks/useTokenPermit.ts +++ b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts @@ -13,7 +13,7 @@ import { useApprovedActions, useSignature, } from '../../../systems/Checker/Provider' -import { useTransactionDeadline } from '../../utils' +import { useTransactionDeadline } from '../../utils/hooks/useTransactionDeadline' import { ApprovalState } from './useTokenApproval' export enum PermitType { diff --git a/packages/wagmi/src/hooks/approvals/hooks/useTokenRevokeApproval.ts b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval.ts similarity index 100% rename from packages/wagmi/src/hooks/approvals/hooks/useTokenRevokeApproval.ts rename to apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval.ts diff --git a/packages/wagmi/src/hooks/balances/useBalanceWeb3.ts b/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts similarity index 95% rename from packages/wagmi/src/hooks/balances/useBalanceWeb3.ts rename to apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts index 3fbb61aab8..39f211ded2 100644 --- a/packages/wagmi/src/hooks/balances/useBalanceWeb3.ts +++ b/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts @@ -4,8 +4,8 @@ import { Type } from 'sushi/currency' import { Address, zeroAddress } from 'viem' import { serialize, useBalance, useConfig } from 'wagmi' -import { useWatchByInterval } from '../watch' import { queryFnUseBalances } from './useBalancesWeb3' +import { useWatchByInterval } from '../watch/useWatchByInterval' interface UseBalanceParams { chainId: ChainId | undefined diff --git a/packages/wagmi/src/hooks/balances/useBalanceWeb3Refetch.ts b/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3Refetch.ts similarity index 100% rename from packages/wagmi/src/hooks/balances/useBalanceWeb3Refetch.ts rename to apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3Refetch.ts diff --git a/packages/wagmi/src/hooks/balances/useBalancesWeb3.ts b/apps/evm/src/lib/wagmi/hooks/balances/useBalancesWeb3.ts similarity index 97% rename from packages/wagmi/src/hooks/balances/useBalancesWeb3.ts rename to apps/evm/src/lib/wagmi/hooks/balances/useBalancesWeb3.ts index 81bd86e0d7..75a953e01e 100644 --- a/packages/wagmi/src/hooks/balances/useBalancesWeb3.ts +++ b/apps/evm/src/lib/wagmi/hooks/balances/useBalancesWeb3.ts @@ -7,7 +7,7 @@ import { Address, erc20Abi, isAddress, zeroAddress } from 'viem' import { getBalance, readContracts } from '@wagmi/core' import { Config, serialize, useBalance, useConfig } from 'wagmi' import { GetBalanceReturnType } from 'wagmi/actions' -import { useWatchByInterval } from '../watch' +import { useWatchByInterval } from '../watch/useWatchByInterval' interface QueryBalanceParams { chainId: ChainId | undefined diff --git a/packages/wagmi/src/hooks/bar/useBarDeposit.ts b/apps/evm/src/lib/wagmi/hooks/bar/useBarDeposit.ts similarity index 100% rename from packages/wagmi/src/hooks/bar/useBarDeposit.ts rename to apps/evm/src/lib/wagmi/hooks/bar/useBarDeposit.ts diff --git a/packages/wagmi/src/hooks/bar/useBarWithdaw.ts b/apps/evm/src/lib/wagmi/hooks/bar/useBarWithdaw.ts similarity index 100% rename from packages/wagmi/src/hooks/bar/useBarWithdaw.ts rename to apps/evm/src/lib/wagmi/hooks/bar/useBarWithdaw.ts diff --git a/packages/wagmi/src/hooks/bentobox/actions/getBentoboxTotal.ts b/apps/evm/src/lib/wagmi/hooks/bentobox/actions/getBentoboxTotal.ts similarity index 100% rename from packages/wagmi/src/hooks/bentobox/actions/getBentoboxTotal.ts rename to apps/evm/src/lib/wagmi/hooks/bentobox/actions/getBentoboxTotal.ts diff --git a/packages/wagmi/src/hooks/bentobox/actions/getBentoboxTotals.ts b/apps/evm/src/lib/wagmi/hooks/bentobox/actions/getBentoboxTotals.ts similarity index 100% rename from packages/wagmi/src/hooks/bentobox/actions/getBentoboxTotals.ts rename to apps/evm/src/lib/wagmi/hooks/bentobox/actions/getBentoboxTotals.ts diff --git a/packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxApproval.ts b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts similarity index 97% rename from packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxApproval.ts rename to apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts index 7892eff34f..ed0a8ac6f6 100644 --- a/packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxApproval.ts +++ b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts @@ -18,12 +18,12 @@ import { } from 'wagmi' import { SendTransactionReturnType } from 'wagmi/actions' -import { getBentoBoxContractConfig } from '../..' import { useApprovedActions, useSignature, } from '../../../systems/Checker/Provider' -import { ApprovalState } from '../../approvals' +import { ApprovalState } from '../../approvals/hooks/useTokenApproval' +import { getBentoBoxContractConfig } from '../../contracts/useBentoBoxContract' interface UseBentoboxApprovalParams { enabled?: boolean diff --git a/packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxTotals.ts b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals.ts similarity index 94% rename from packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxTotals.ts rename to apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals.ts index 6c5a714500..b58fb2ef7d 100644 --- a/packages/wagmi/src/hooks/bentobox/hooks/useBentoBoxTotals.ts +++ b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals.ts @@ -7,7 +7,7 @@ import { Type } from 'sushi/currency' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { useConfig } from 'wagmi' -import { getBentoboxTotals } from '../actions' +import { getBentoboxTotals } from '../actions/getBentoboxTotals' interface UseBentoboxTotalsParams { chainId: ChainId diff --git a/packages/wagmi/src/hooks/block/useCurrentBlockTimestamp.ts b/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts similarity index 88% rename from packages/wagmi/src/hooks/block/useCurrentBlockTimestamp.ts rename to apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts index dfe990d820..1d6ddd4c03 100644 --- a/packages/wagmi/src/hooks/block/useCurrentBlockTimestamp.ts +++ b/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts @@ -3,7 +3,10 @@ import { useQueryClient } from '@tanstack/react-query' import { useEffect } from 'react' import { useBlockNumber, useReadContract } from 'wagmi' -import { Multicall3ChainId, getMulticall3ContractConfig } from '../contracts' +import { + Multicall3ChainId, + getMulticall3ContractConfig, +} from '../contracts/useMulticall3Contract' // TODO: Readd direct export, not sure why it's not working export const useCurrentBlockTimestamp = ( diff --git a/packages/wagmi/src/hooks/bonds/useDiscount.ts b/apps/evm/src/lib/wagmi/hooks/bonds/use-bond-discount.ts similarity index 96% rename from packages/wagmi/src/hooks/bonds/useDiscount.ts rename to apps/evm/src/lib/wagmi/hooks/bonds/use-bond-discount.ts index 3db1576d2a..05c43167ff 100644 --- a/packages/wagmi/src/hooks/bonds/useDiscount.ts +++ b/apps/evm/src/lib/wagmi/hooks/bonds/use-bond-discount.ts @@ -6,7 +6,7 @@ import { import { usePrices } from '@sushiswap/react-query' import { useMemo } from 'react' import { Address, getAddress } from 'viem' -import { useBondMarketPrices } from './useMarketPrice' +import { useBondMarketPrices } from './use-bond-market-price' interface UseBondsDiscount { marketId: MarketId diff --git a/packages/wagmi/src/hooks/bonds/useMarketDetails.ts b/apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-details.ts similarity index 100% rename from packages/wagmi/src/hooks/bonds/useMarketDetails.ts rename to apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-details.ts diff --git a/packages/wagmi/src/hooks/bonds/useMarketPrice.ts b/apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-price.ts similarity index 100% rename from packages/wagmi/src/hooks/bonds/useMarketPrice.ts rename to apps/evm/src/lib/wagmi/hooks/bonds/use-bond-market-price.ts diff --git a/packages/wagmi/src/hooks/contracts/useBentoBoxContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useBentoBoxContract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts diff --git a/packages/wagmi/src/hooks/contracts/useMulticall3Contract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useMulticall3Contract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts diff --git a/packages/wagmi/src/hooks/contracts/useMulticallContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useMulticallContract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts diff --git a/packages/wagmi/src/hooks/contracts/useSushiSwapRouter.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useSushiSwapRouter.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useSushiSwapRouter.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useSushiSwapRouter.ts diff --git a/packages/wagmi/src/hooks/contracts/useSushiXSwap2Contract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useSushiXSwap2Contract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts diff --git a/packages/wagmi/src/hooks/contracts/useSushiXSwapContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useSushiXSwapContract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts diff --git a/packages/wagmi/src/hooks/contracts/useTridentRouter.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useTridentRouter.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts diff --git a/packages/wagmi/src/hooks/contracts/useV3FactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useV3FactoryContract.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts diff --git a/packages/wagmi/src/hooks/contracts/useV3NonFungiblePositionManager.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useV3NonFungiblePositionManager.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts diff --git a/packages/wagmi/src/hooks/contracts/useV3TickLens.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts similarity index 100% rename from packages/wagmi/src/hooks/contracts/useV3TickLens.ts rename to apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts diff --git a/packages/wagmi/src/hooks/currency/useCurrencyCombinations.ts b/apps/evm/src/lib/wagmi/hooks/currency/useCurrencyCombinations.ts similarity index 100% rename from packages/wagmi/src/hooks/currency/useCurrencyCombinations.ts rename to apps/evm/src/lib/wagmi/hooks/currency/useCurrencyCombinations.ts diff --git a/packages/wagmi/src/hooks/currency/useNativeCurrency.ts b/apps/evm/src/lib/wagmi/hooks/currency/useNativeCurrency.ts similarity index 100% rename from packages/wagmi/src/hooks/currency/useNativeCurrency.ts rename to apps/evm/src/lib/wagmi/hooks/currency/useNativeCurrency.ts diff --git a/packages/wagmi/src/hooks/exploits/abis/SushiFundsReturnerAbi.ts b/apps/evm/src/lib/wagmi/hooks/exploits/abis/SushiFundsReturnerAbi.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/abis/SushiFundsReturnerAbi.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/abis/SushiFundsReturnerAbi.ts diff --git a/packages/wagmi/src/hooks/exploits/constants.ts b/apps/evm/src/lib/wagmi/hooks/exploits/constants.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/constants.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/constants.ts diff --git a/packages/wagmi/src/hooks/exploits/data/arbitrum-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/arbitrum-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/arbitrum-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/arbitrum-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/avalanche-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/avalanche-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/avalanche-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/avalanche-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/boba-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/boba-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/boba-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/boba-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/bsc-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/bsc-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/bsc-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/bsc-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/ethereum-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/ethereum-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/ethereum-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/ethereum-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/fantom-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/fantom-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/fantom-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/fantom-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/nova-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/nova-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/nova-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/nova-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/optimism-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/optimism-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/optimism-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/optimism-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/polygon-tree.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/polygon-tree.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/polygon-tree.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/polygon-tree.json diff --git a/packages/wagmi/src/hooks/exploits/data/rp2-approvals.json b/apps/evm/src/lib/wagmi/hooks/exploits/data/rp2-approvals.json similarity index 100% rename from packages/wagmi/src/hooks/exploits/data/rp2-approvals.json rename to apps/evm/src/lib/wagmi/hooks/exploits/data/rp2-approvals.json diff --git a/packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitCheck.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitCheck.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts diff --git a/packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitClaim.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaim.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitClaim.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaim.ts diff --git a/packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts diff --git a/packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts diff --git a/packages/wagmi/src/hooks/exploits/types.ts b/apps/evm/src/lib/wagmi/hooks/exploits/types.ts similarity index 100% rename from packages/wagmi/src/hooks/exploits/types.ts rename to apps/evm/src/lib/wagmi/hooks/exploits/types.ts diff --git a/packages/wagmi/src/hooks/master-chef/use-farm-rewards.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-farm-rewards.ts similarity index 96% rename from packages/wagmi/src/hooks/master-chef/use-farm-rewards.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-farm-rewards.ts index 3ee6c48c89..d1800ff7fa 100644 --- a/packages/wagmi/src/hooks/master-chef/use-farm-rewards.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-farm-rewards.ts @@ -5,8 +5,8 @@ import { UseQueryOptions, useQuery } from '@tanstack/react-query' import { useMemo } from 'react' import { chainShortName } from 'sushi/chain' import { Token } from 'sushi/currency' -import { RewarderType } from '.' -import { PoolType } from '../pools' +import { PoolType } from '../pools/types' +import { RewarderType } from './use-rewarder' export interface FarmMap { chainId: number diff --git a/packages/wagmi/src/hooks/master-chef/use-master-chef-contract.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts similarity index 100% rename from packages/wagmi/src/hooks/master-chef/use-master-chef-contract.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts diff --git a/packages/wagmi/src/hooks/master-chef/use-master-chef-deposit.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts similarity index 100% rename from packages/wagmi/src/hooks/master-chef/use-master-chef-deposit.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts diff --git a/packages/wagmi/src/hooks/master-chef/use-master-chef-withdraw.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-withdraw.ts similarity index 100% rename from packages/wagmi/src/hooks/master-chef/use-master-chef-withdraw.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-withdraw.ts diff --git a/packages/wagmi/src/hooks/master-chef/use-master-chef.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts similarity index 100% rename from packages/wagmi/src/hooks/master-chef/use-master-chef.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts diff --git a/packages/wagmi/src/hooks/master-chef/use-rewarder.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts similarity index 100% rename from packages/wagmi/src/hooks/master-chef/use-rewarder.ts rename to apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts diff --git a/packages/wagmi/src/hooks/migrate/abis/V3Migrator.ts b/apps/evm/src/lib/wagmi/hooks/migrate/abis/V3Migrator.ts similarity index 100% rename from packages/wagmi/src/hooks/migrate/abis/V3Migrator.ts rename to apps/evm/src/lib/wagmi/hooks/migrate/abis/V3Migrator.ts diff --git a/packages/wagmi/src/hooks/migrate/constants.ts b/apps/evm/src/lib/wagmi/hooks/migrate/constants.ts similarity index 100% rename from packages/wagmi/src/hooks/migrate/constants.ts rename to apps/evm/src/lib/wagmi/hooks/migrate/constants.ts diff --git a/packages/wagmi/src/hooks/migrate/hooks/useV3Migrate.tsx b/apps/evm/src/lib/wagmi/hooks/migrate/hooks/useV3Migrate.tsx similarity index 100% rename from packages/wagmi/src/hooks/migrate/hooks/useV3Migrate.tsx rename to apps/evm/src/lib/wagmi/hooks/migrate/hooks/useV3Migrate.tsx diff --git a/packages/wagmi/src/hooks/migrate/types.ts b/apps/evm/src/lib/wagmi/hooks/migrate/types.ts similarity index 100% rename from packages/wagmi/src/hooks/migrate/types.ts rename to apps/evm/src/lib/wagmi/hooks/migrate/types.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getAllPools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts similarity index 98% rename from packages/wagmi/src/hooks/pools/actions/getAllPools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts index 9b0cfe0599..e21543c734 100644 --- a/packages/wagmi/src/hooks/pools/actions/getAllPools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts @@ -13,7 +13,7 @@ import { } from 'sushi/pool' import { getCurrencyCombinations } from 'sushi/router' import { BridgeBento, UniV3Pool } from 'sushi/tines' -import { getBentoboxTotalsMap } from '../../bentobox' +import { getBentoboxTotalsMap } from '../../bentobox/actions/getBentoboxTotals' import { UsePoolsParams, UsePoolsReturn } from '../types' import { BridgeBentoState, getBridgeBentoPools } from './getBridgeBentoPools' import { PairState, getSushiSwapV2Pools } from './getSushiSwapV2Pools' diff --git a/packages/wagmi/src/hooks/pools/actions/getAllPoolsCodeMap.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPoolsCodeMap.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getAllPoolsCodeMap.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPoolsCodeMap.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getBridgeBentoPools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getBridgeBentoPools.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getBridgeBentoPools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getBridgeBentoPools.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getConcentratedLiquidityPool.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getConcentratedLiquidityPool.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts similarity index 92% rename from packages/wagmi/src/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts index 834c6f7629..e2b3aff828 100644 --- a/packages/wagmi/src/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts @@ -4,7 +4,7 @@ import { SushiSwapV3Pool, computeSushiSwapV3PoolAddress } from 'sushi/pool' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { getBalance } from '@wagmi/core' -import { getV3FactoryContractConfig } from '../../contracts' +import { getV3FactoryContractConfig } from '../../contracts/useV3FactoryContract' export const getConcentratedLiquidityPoolReserves = async ({ pool, diff --git a/packages/wagmi/src/hooks/pools/actions/getConcentratedPositionOwner.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getConcentratedPositionOwner.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getSushiSwapV2Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getSushiSwapV2Pools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts diff --git a/packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentConstantPools.ts similarity index 91% rename from packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentConstantPools.ts index feca61bc8d..79be876fec 100644 --- a/packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentConstantPools.ts @@ -6,10 +6,12 @@ import { tridentConstantPoolAbi, tridentConstantPoolFactoryAbi, } from 'sushi/abi' -import { TridentChainId } from 'sushi/config' +import { + TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, + TridentChainId, +} from 'sushi/config' import { Amount, Currency, Token } from 'sushi/currency' -import { Address, getContract } from 'viem' -import { getTridentConstantPoolFactoryContract } from '../../../contracts' +import { Address } from 'viem' import { pairsUnique } from './utils' export enum TridentConstantPoolState { @@ -32,10 +34,7 @@ export const getTridentConstantPools = async ( ) => { const client = getPublicClient(config, { chainId }) - const contract = getContract({ - ...getTridentConstantPoolFactoryContract(chainId), - client, - }) + const contractAddress = TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId] const _pairsUnique = pairsUnique(currencies) const _pairsUniqueAddr = _pairsUnique.map( @@ -45,7 +44,7 @@ export const getTridentConstantPools = async ( const callStatePoolsCount = await client.multicall({ contracts: _pairsUniqueAddr.map((el) => ({ chainId, - address: contract?.address, + address: contractAddress, abi: tridentConstantPoolFactoryAbi, functionName: 'poolsCount', args: el, @@ -81,7 +80,7 @@ export const getTridentConstantPools = async ( (args) => ({ chainId, - address: contract?.address, + address: contractAddress, abi: tridentConstantPoolFactoryAbi, functionName: 'getPools', args, diff --git a/packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts similarity index 98% rename from packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts index 1f20cae740..1383e4b344 100644 --- a/packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts @@ -6,7 +6,7 @@ import { Amount, Currency, Token } from 'sushi/currency' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { Address, getContract } from 'viem' import { getPublicClient, readContracts } from 'wagmi/actions' -import { getTridentStablePoolFactoryContract } from '../../../contracts' +import { getTridentStablePoolFactoryContract } from '../../../contracts/actions/getTridentStablePoolFactoryContract' import { pairsUnique } from './utils' export enum TridentStablePoolState { diff --git a/packages/wagmi/src/hooks/pools/actions/getV3Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/getV3Pools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts diff --git a/packages/wagmi/src/hooks/pools/actions/utils.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/utils.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/actions/utils.ts rename to apps/evm/src/lib/wagmi/hooks/pools/actions/utils.ts diff --git a/packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPool.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool.ts similarity index 91% rename from packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPool.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool.ts index 6d37839177..2f1764b573 100644 --- a/packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPool.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool.ts @@ -3,7 +3,7 @@ import { SushiSwapV3ChainId, SushiSwapV3FeeAmount } from 'sushi/config' import { Type } from 'sushi/currency' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPool } from '../actions' +import { getConcentratedLiquidityPool } from '../actions/getConcentratedLiquidityPool' interface UseConcentratedLiquidityPool { token0: Type | undefined diff --git a/packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts similarity index 96% rename from packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts index 9679801083..33c072adcf 100644 --- a/packages/wagmi/src/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts @@ -2,7 +2,7 @@ import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' import { SushiSwapV3Pool } from 'sushi/pool' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPoolReserves } from '../actions' +import { getConcentratedLiquidityPoolReserves } from '../actions/getConcentratedLiquidityPoolReserves' interface UseConcentratedLiquidityPoolReserves { pool: SushiSwapV3Pool | null | undefined diff --git a/packages/wagmi/src/hooks/pools/hooks/usePools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePools.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/hooks/usePools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/usePools.ts diff --git a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts similarity index 98% rename from packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts index 11ca5b15cd..72a13ee856 100644 --- a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts @@ -19,7 +19,7 @@ import { } from 'sushi/pool' import { useConfig } from 'wagmi' -import { getAllPools } from '../actions' +import { getAllPools } from '../actions/getAllPools' import { PoolType, UsePoolsParams } from '../types' const getPoolAddress = ({ diff --git a/packages/wagmi/src/hooks/pools/hooks/usePoolsCodeMap.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsCodeMap.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/hooks/usePoolsCodeMap.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsCodeMap.ts diff --git a/packages/wagmi/src/hooks/pools/hooks/useSushiSwapV2Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/hooks/useSushiSwapV2Pools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPools.ts similarity index 94% rename from packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPools.ts index cf39b387a2..de89d2eb00 100644 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPools.ts @@ -15,10 +15,12 @@ import { } from 'wagmi' import { useQueryClient } from '@tanstack/react-query' -import { TridentChainId } from 'sushi/config' +import { + TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, + TridentChainId, +} from 'sushi/config' import { Address } from 'viem' -import { TridentConstantPoolState } from '../actions' -import { useTridentConstantPoolFactoryContract } from './useTridentConstantPoolFactoryContract' +import { TridentConstantPoolState } from '../actions/getTridentConstantPools' type PoolInput = [Currency | undefined, Currency | undefined, Fee, boolean] @@ -41,7 +43,9 @@ export function useGetTridentConstantPools( currencies: [Currency | undefined, Currency | undefined][], config: Config = { query: { enabled: true } }, ): UseGetTridentConstantPoolsReturn { - const contract = useTridentConstantPoolFactoryContract(chainId) + const contract = chainId + ? TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId] + : null const pairsUnique = useMemo<[Token, Token][]>(() => { const pairsMap = new Map() currencies.map(([c1, c2]) => { @@ -73,7 +77,7 @@ export function useGetTridentConstantPools( } = useReadContracts({ contracts: pairsUniqueAddr.map((el) => ({ chainId, - address: contract?.address as Address, + address: contract as Address, abi: tridentConstantPoolFactoryAbi, functionName: 'poolsCount', args: el as [Address, Address], @@ -118,12 +122,12 @@ export function useGetTridentConstantPools( if (!callStatePoolsCountProcessed) return [] return callStatePoolsCountProcessed.map((args) => ({ chainId, - address: contract?.address as Address, + address: contract as Address, abi: tridentConstantPoolFactoryAbi, functionName: 'getPools' as const, args, })) - }, [callStatePoolsCountProcessed, chainId, contract?.address]), + }, [callStatePoolsCountProcessed, chainId, contract]), query: { enabled: Boolean( @@ -260,7 +264,7 @@ export function useTridentConstantPools( pools: PoolInput[], ): [TridentConstantPoolState, TridentConstantPool | null][] { const tridentConstantPoolFactory = - useTridentConstantPoolFactoryContract(chainId) + TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId] const input = useMemo( () => @@ -274,7 +278,7 @@ export function useTridentConstantPools( twap !== undefined && currencyA.chainId === currencyB.chainId && !currencyA.wrapped.equals(currencyB.wrapped) && - tridentConstantPoolFactory?.address, + tridentConstantPoolFactory, ) }) .map<[Token, Token, Fee, boolean]>( @@ -285,7 +289,7 @@ export function useTridentConstantPools( twap, ], ), - [tridentConstantPoolFactory?.address, pools], + [tridentConstantPoolFactory, pools], ) const poolsAddresses = useMemo( @@ -293,7 +297,7 @@ export function useTridentConstantPools( input.reduce((acc, [tokenA, tokenB, fee, twap]) => { if (!tridentConstantPoolFactory) return acc const address = computeTridentConstantPoolAddress({ - factoryAddress: tridentConstantPoolFactory.address, + factoryAddress: tridentConstantPoolFactory, tokenA, tokenB, fee, diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts similarity index 91% rename from packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts index bfe23d4d44..7f491afa34 100644 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts @@ -4,7 +4,7 @@ import { useMemo } from 'react' import { TridentChainId } from 'sushi/config' import { PublicClient, getContract } from 'viem' import { usePublicClient } from 'wagmi' -import { getTridentStablePoolFactoryContract } from '../../../contracts' +import { getTridentStablePoolFactoryContract } from '../../../contracts/actions/getTridentStablePoolFactoryContract' export function useTridentStablePoolFactoryContract( chainId: TridentChainId | undefined, diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts similarity index 98% rename from packages/wagmi/src/hooks/pools/hooks/useTridentStablePools.ts rename to apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts index 41993b2a59..29e0a946c9 100644 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts @@ -15,8 +15,8 @@ import { import { useQueryClient } from '@tanstack/react-query' import { Address } from 'viem' -import { useBentoBoxTotals } from '../../bentobox' -import { TridentStablePoolState } from '../actions' +import { useBentoBoxTotals } from '../../bentobox/hooks/useBentoBoxTotals' +import { TridentStablePoolState } from '../actions/getTridentStablePools' import { useTridentStablePoolFactoryContract } from './useTridentStablePoolFactoryContract' interface Rebase { diff --git a/packages/wagmi/src/hooks/pools/types/index.ts b/apps/evm/src/lib/wagmi/hooks/pools/types/index.ts similarity index 100% rename from packages/wagmi/src/hooks/pools/types/index.ts rename to apps/evm/src/lib/wagmi/hooks/pools/types/index.ts diff --git a/packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts similarity index 100% rename from packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts rename to apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts diff --git a/packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositions.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts similarity index 100% rename from packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositions.ts rename to apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts diff --git a/packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts similarity index 100% rename from packages/wagmi/src/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts rename to apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts diff --git a/packages/wagmi/src/hooks/positions/hooks/useConcentratedLiquidityPositions.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts similarity index 95% rename from packages/wagmi/src/hooks/positions/hooks/useConcentratedLiquidityPositions.ts rename to apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts index 07dc1d5b90..88bf677c76 100644 --- a/packages/wagmi/src/hooks/positions/hooks/useConcentratedLiquidityPositions.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts @@ -8,13 +8,13 @@ import { Position, SushiSwapV3Pool } from 'sushi/pool' import { useMemo } from 'react' import { Address } from 'viem' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPool } from '../../pools' +import { ConcentratedLiquidityPosition } from '../types' +import { getConcentratedLiquidityPositions } from '../actions/getConcentratedLiquidityPositions' import { getTokenWithCacheQueryFn, getTokenWithQueryCacheHydrate, -} from '../../tokens' -import { getConcentratedLiquidityPositions } from '../actions' -import { ConcentratedLiquidityPosition } from '../types' +} from '../../tokens/useTokenWithCache' +import { getConcentratedLiquidityPool } from '../../pools/actions/getConcentratedLiquidityPool' interface UseConcentratedLiquidityPositionsData extends ConcentratedLiquidityPosition { diff --git a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionInfo.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts similarity index 94% rename from packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionInfo.ts rename to apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts index 05ac22ec52..7dd57a72f5 100644 --- a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionInfo.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts @@ -5,7 +5,7 @@ import { Position } from 'sushi/pool' import { stringify } from 'viem' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPool } from '../../pools' +import { getConcentratedLiquidityPool } from '../../pools/actions/getConcentratedLiquidityPool' import { useConcentratedLiquidityPositionsFromTokenId } from './useConcentratedPositionsFromTokenId' interface UseConcentratedLiquidityPositionsFromTokenIdParams { diff --git a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionOwner.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts similarity index 100% rename from packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionOwner.ts rename to apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts diff --git a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts similarity index 95% rename from packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts rename to apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts index 3c39fd8df1..cf37f9236d 100644 --- a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId.ts @@ -2,7 +2,7 @@ import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPositionsFromTokenIds } from '../actions' +import { getConcentratedLiquidityPositionsFromTokenIds } from '../actions/getConcentratedLiquidityPositionsFromTokenIds' interface UseConcentratedLiquidityPositionsFromTokenIdParams { tokenId: number | string | undefined diff --git a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts similarity index 94% rename from packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts rename to apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts index 871522b4da..dd275afeee 100644 --- a/packages/wagmi/src/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenIds.ts @@ -2,7 +2,7 @@ import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' import { useConfig } from 'wagmi' -import { getConcentratedLiquidityPositionsFromTokenIds } from '../actions' +import { getConcentratedLiquidityPositionsFromTokenIds } from '../actions/getConcentratedLiquidityPositionsFromTokenIds' interface UseConcentratedLiquidityPositionsFromTokenIdsParams { keys: { tokenId: bigint; chainId: SushiSwapV3ChainId }[] | undefined diff --git a/packages/wagmi/src/hooks/positions/types.ts b/apps/evm/src/lib/wagmi/hooks/positions/types.ts similarity index 86% rename from packages/wagmi/src/hooks/positions/types.ts rename to apps/evm/src/lib/wagmi/hooks/positions/types.ts index 0616ed1a56..c3b27cd025 100644 --- a/packages/wagmi/src/hooks/positions/types.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/types.ts @@ -1,6 +1,6 @@ import { SushiSwapV3ChainId } from 'sushi/config' -import { useConcentratedLiquidityPositions } from './hooks' +import { useConcentratedLiquidityPositions } from './hooks/useConcentratedLiquidityPositions' export interface ConcentratedLiquidityPosition { id: string diff --git a/packages/wagmi/src/hooks/rewards/abis/DistributionCreator.ts b/apps/evm/src/lib/wagmi/hooks/rewards/abis/DistributionCreator.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/abis/DistributionCreator.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/abis/DistributionCreator.ts diff --git a/packages/wagmi/src/hooks/rewards/abis/ERC1967Proxy.ts b/apps/evm/src/lib/wagmi/hooks/rewards/abis/ERC1967Proxy.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/abis/ERC1967Proxy.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/abis/ERC1967Proxy.ts diff --git a/packages/wagmi/src/hooks/rewards/abis/index.ts b/apps/evm/src/lib/wagmi/hooks/rewards/abis/index.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/abis/index.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/abis/index.ts diff --git a/packages/wagmi/src/hooks/rewards/hooks/useAcceptAngleConditions.ts b/apps/evm/src/lib/wagmi/hooks/rewards/hooks/useAcceptAngleConditions.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/hooks/useAcceptAngleConditions.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/hooks/useAcceptAngleConditions.ts diff --git a/packages/wagmi/src/hooks/rewards/hooks/useHarvestAngleRewards.ts b/apps/evm/src/lib/wagmi/hooks/rewards/hooks/useHarvestAngleRewards.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/hooks/useHarvestAngleRewards.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/hooks/useHarvestAngleRewards.ts diff --git a/packages/wagmi/src/hooks/rewards/hooks/useIncentivizePoolWithRewards.ts b/apps/evm/src/lib/wagmi/hooks/rewards/hooks/useIncentivizePoolWithRewards.ts similarity index 100% rename from packages/wagmi/src/hooks/rewards/hooks/useIncentivizePoolWithRewards.ts rename to apps/evm/src/lib/wagmi/hooks/rewards/hooks/useIncentivizePoolWithRewards.ts diff --git a/packages/wagmi/src/hooks/tokens/useSortedTokensByQuery.ts b/apps/evm/src/lib/wagmi/hooks/tokens/useSortedTokensByQuery.ts similarity index 100% rename from packages/wagmi/src/hooks/tokens/useSortedTokensByQuery.ts rename to apps/evm/src/lib/wagmi/hooks/tokens/useSortedTokensByQuery.ts diff --git a/packages/wagmi/src/hooks/tokens/useTokenWithCache.ts b/apps/evm/src/lib/wagmi/hooks/tokens/useTokenWithCache.ts similarity index 100% rename from packages/wagmi/src/hooks/tokens/useTokenWithCache.ts rename to apps/evm/src/lib/wagmi/hooks/tokens/useTokenWithCache.ts diff --git a/packages/wagmi/src/hooks/tokens/useTokens.ts b/apps/evm/src/lib/wagmi/hooks/tokens/useTokens.ts similarity index 100% rename from packages/wagmi/src/hooks/tokens/useTokens.ts rename to apps/evm/src/lib/wagmi/hooks/tokens/useTokens.ts diff --git a/packages/wagmi/src/hooks/tokens/useTotalSupply.ts b/apps/evm/src/lib/wagmi/hooks/tokens/useTotalSupply.ts similarity index 100% rename from packages/wagmi/src/hooks/tokens/useTotalSupply.ts rename to apps/evm/src/lib/wagmi/hooks/tokens/useTotalSupply.ts diff --git a/packages/wagmi/src/hooks/trade/use-client-trade.ts b/apps/evm/src/lib/wagmi/hooks/trade/use-client-trade.ts similarity index 99% rename from packages/wagmi/src/hooks/trade/use-client-trade.ts rename to apps/evm/src/lib/wagmi/hooks/trade/use-client-trade.ts index 16712b95b1..fca842e051 100644 --- a/packages/wagmi/src/hooks/trade/use-client-trade.ts +++ b/apps/evm/src/lib/wagmi/hooks/trade/use-client-trade.ts @@ -17,7 +17,7 @@ import { Fraction, Percent } from 'sushi/math' import { Router } from 'sushi/router' import { Address, Hex, zeroAddress } from 'viem' import { useGasPrice } from 'wagmi' -import { usePoolsCodeMap } from '../pools' +import { usePoolsCodeMap } from '../pools/hooks/usePoolsCodeMap' export const useClientTrade = (variables: UseTradeParams) => { const { diff --git a/packages/wagmi/src/hooks/useSteer/useSteerAccountPosition.ts b/apps/evm/src/lib/wagmi/hooks/useSteer/useSteerAccountPosition.ts similarity index 98% rename from packages/wagmi/src/hooks/useSteer/useSteerAccountPosition.ts rename to apps/evm/src/lib/wagmi/hooks/useSteer/useSteerAccountPosition.ts index 4c6de8df8e..f5cd071902 100644 --- a/packages/wagmi/src/hooks/useSteer/useSteerAccountPosition.ts +++ b/apps/evm/src/lib/wagmi/hooks/useSteer/useSteerAccountPosition.ts @@ -12,7 +12,7 @@ import { import { Address } from 'viem' import { useMemo } from 'react' -import { useWatchByInterval } from '../watch' +import { useWatchByInterval } from '../watch/useWatchByInterval' interface UseSteerAccountPositions { account: Address | undefined diff --git a/packages/wagmi/src/hooks/useSteer/useSteerAccountPositionsExtended.ts b/apps/evm/src/lib/wagmi/hooks/useSteer/useSteerAccountPositionsExtended.ts similarity index 100% rename from packages/wagmi/src/hooks/useSteer/useSteerAccountPositionsExtended.ts rename to apps/evm/src/lib/wagmi/hooks/useSteer/useSteerAccountPositionsExtended.ts diff --git a/packages/wagmi/src/hooks/useSteer/useSteerVaultReserves.ts b/apps/evm/src/lib/wagmi/hooks/useSteer/useSteerVaultReserves.ts similarity index 97% rename from packages/wagmi/src/hooks/useSteer/useSteerVaultReserves.ts rename to apps/evm/src/lib/wagmi/hooks/useSteer/useSteerVaultReserves.ts index 2685f6ac1c..d7eacc0066 100644 --- a/packages/wagmi/src/hooks/useSteer/useSteerVaultReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/useSteer/useSteerVaultReserves.ts @@ -7,7 +7,7 @@ import { useReadContracts, useSimulateContract } from 'wagmi' import { useQueryClient } from '@tanstack/react-query' import { useEffect, useMemo } from 'react' import { getChainIdAddressFromId } from 'sushi' -import { useWatchByBlock } from '../watch' +import { useWatchByBlock } from '../watch/useWatchByBlock' interface UseSteerVaultsReserves { vaultIds: string[] | undefined diff --git a/packages/wagmi/src/hooks/utils/hooks/useTransactionDeadline.ts b/apps/evm/src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline.ts similarity index 94% rename from packages/wagmi/src/hooks/utils/hooks/useTransactionDeadline.ts rename to apps/evm/src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline.ts index dce1c96283..67f73c4dd2 100644 --- a/packages/wagmi/src/hooks/utils/hooks/useTransactionDeadline.ts +++ b/apps/evm/src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline.ts @@ -1,7 +1,7 @@ import { TTLStorageKey, useTTL } from '@sushiswap/hooks' import { useQuery } from '@tanstack/react-query' import { ChainId, chainsL2 } from 'sushi/chain' -import { useCurrentBlockTimestamp } from '../../block' +import { useCurrentBlockTimestamp } from '../../block/useCurrentBlockTimestamp' const L2_TTL = 5n const TTL = 30n diff --git a/packages/wagmi/src/hooks/wallet/useConnect.ts b/apps/evm/src/lib/wagmi/hooks/wallet/useConnect.ts similarity index 100% rename from packages/wagmi/src/hooks/wallet/useConnect.ts rename to apps/evm/src/lib/wagmi/hooks/wallet/useConnect.ts diff --git a/packages/wagmi/src/hooks/wallet/useWalletState.ts b/apps/evm/src/lib/wagmi/hooks/wallet/useWalletState.ts similarity index 100% rename from packages/wagmi/src/hooks/wallet/useWalletState.ts rename to apps/evm/src/lib/wagmi/hooks/wallet/useWalletState.ts diff --git a/packages/wagmi/src/hooks/watch/useWatchByBlock.ts b/apps/evm/src/lib/wagmi/hooks/watch/useWatchByBlock.ts similarity index 100% rename from packages/wagmi/src/hooks/watch/useWatchByBlock.ts rename to apps/evm/src/lib/wagmi/hooks/watch/useWatchByBlock.ts diff --git a/packages/wagmi/src/hooks/watch/useWatchByInterval.ts b/apps/evm/src/lib/wagmi/hooks/watch/useWatchByInterval.ts similarity index 100% rename from packages/wagmi/src/hooks/watch/useWatchByInterval.ts rename to apps/evm/src/lib/wagmi/hooks/watch/useWatchByInterval.ts diff --git a/apps/evm/src/lib/wagmi/index.ts b/apps/evm/src/lib/wagmi/index.ts index 4b64f3c732..51272cd40a 100644 --- a/apps/evm/src/lib/wagmi/index.ts +++ b/apps/evm/src/lib/wagmi/index.ts @@ -1,27 +1,7 @@ import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { cookieToInitialState } from '@wagmi/core' -import { createProductionConfig } from './production' -import { createTestConfig } from './test' -export { createProductionConfig } -export { createTestConfig } - -export const wagmiConfig = (() => { - const isTest = process.env.NEXT_PUBLIC_APP_ENV === 'test' - - const config = (() => { - if (isTest) { - return createTestConfig() as unknown as PublicWagmiConfig - } - return createProductionConfig() - })() - - return config -})() - -export const getWagmiInitialState = ( - cookieHeaders: string | null | undefined, -) => { - const initialState = cookieToInitialState(wagmiConfig, cookieHeaders) - return initialState +declare module 'wagmi' { + interface Register { + config: PublicWagmiConfig + } } diff --git a/packages/wagmi/src/systems/Checker/Amounts.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Amounts.tsx similarity index 96% rename from packages/wagmi/src/systems/Checker/Amounts.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Amounts.tsx index f47c681886..0bdde34288 100644 --- a/packages/wagmi/src/systems/Checker/Amounts.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/Amounts.tsx @@ -7,8 +7,7 @@ import { Amount, Type } from 'sushi/currency' import { ZERO } from 'sushi/math' import { zeroAddress } from 'viem' import { useAccount } from 'wagmi' - -import { useBalancesWeb3 } from '../../hooks/balances' +import { useBalancesWeb3 } from '../../hooks/balances/useBalancesWeb3' interface AmountsProps extends ButtonProps { chainId: ChainId | undefined diff --git a/packages/wagmi/src/systems/Checker/ApproveBentobox.tsx b/apps/evm/src/lib/wagmi/systems/Checker/ApproveBentobox.tsx similarity index 93% rename from packages/wagmi/src/systems/Checker/ApproveBentobox.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/ApproveBentobox.tsx index 48e94bdf34..973555e352 100644 --- a/packages/wagmi/src/systems/Checker/ApproveBentobox.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/ApproveBentobox.tsx @@ -14,8 +14,8 @@ import { Button, ButtonProps } from '@sushiswap/ui/components/button' import { FC } from 'react' import { BentoBoxChainId } from 'sushi/config' import { Address } from 'viem' - -import { ApprovalState, useBentoBoxApproval } from '../../hooks' +import { ApprovalState } from '../../hooks/approvals/hooks/useTokenApproval' +import { useBentoBoxApproval } from '../../hooks/bentobox/hooks/useBentoBoxApproval' interface ApproveBentoboxProps extends ButtonProps { chainId: BentoBoxChainId diff --git a/packages/wagmi/src/systems/Checker/ApproveERC20.tsx b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20.tsx similarity index 91% rename from packages/wagmi/src/systems/Checker/ApproveERC20.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20.tsx index c1c0130b97..c32935c80f 100644 --- a/packages/wagmi/src/systems/Checker/ApproveERC20.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20.tsx @@ -23,7 +23,10 @@ import { FC, useState } from 'react' import { Amount, Type } from 'sushi/currency' import { Address } from 'viem' -import { ApprovalState, useTokenApproval } from '../../hooks' +import { + ApprovalState, + useTokenApproval, +} from '../../hooks/approvals/hooks/useTokenApproval' interface ApproveERC20Props extends ButtonProps { id: string @@ -119,8 +122,9 @@ const ApproveERC20: FC = ({
Approve one-time only - You'll give your approval to spend {amount?.toSignificant(6)}{' '} - {amount?.currency?.symbol} on your behalf + {`You'll give your approval to spend `} + {amount?.toSignificant(6)} {amount?.currency?.symbol} on your + behalf
@@ -128,7 +132,7 @@ const ApproveERC20: FC = ({
Approve unlimited amount - You won't need to approve again next time you want to spend{' '} + {`You won't need to approve again next time you want to spend`}{' '} {amount?.currency?.symbol}.
diff --git a/packages/wagmi/src/systems/Checker/ApproveERC20Multiple.tsx b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20Multiple.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/ApproveERC20Multiple.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20Multiple.tsx diff --git a/packages/wagmi/src/systems/Checker/ApproveERC20WithPermit.tsx b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx similarity index 94% rename from packages/wagmi/src/systems/Checker/ApproveERC20WithPermit.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx index c4756b9ed7..35033e8d93 100644 --- a/packages/wagmi/src/systems/Checker/ApproveERC20WithPermit.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx @@ -27,10 +27,12 @@ import { Address } from 'viem' import { useAccount, useBytecode } from 'wagmi' import { ApprovalState, - PermitInfo, useTokenApproval, +} from '../../hooks/approvals/hooks/useTokenApproval' +import { + PermitInfo, useTokenPermit, -} from '../../hooks' +} from '../../hooks/approvals/hooks/useTokenPermit' import { useApprovedActions } from './Provider' enum ApprovalType { @@ -200,8 +202,9 @@ const ApproveERC20WithPermit: FC = ({
Approve one-time only - You'll give your approval to spend {amount?.toSignificant(6)}{' '} - {amount?.currency?.symbol} on your behalf + {`You'll give your approval to spend `} + {amount?.toSignificant(6)} {amount?.currency?.symbol} on your + behalf
@@ -212,7 +215,7 @@ const ApproveERC20WithPermit: FC = ({
Approve unlimited amount - You won't need to approve again next time you want to spend{' '} + {`You won't need to approve again next time you want to spend`}{' '} {amount?.currency?.symbol}.
diff --git a/packages/wagmi/src/systems/Checker/Connect.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Connect.tsx similarity index 93% rename from packages/wagmi/src/systems/Checker/Connect.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Connect.tsx index dd47aecb9a..44bc706799 100644 --- a/packages/wagmi/src/systems/Checker/Connect.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/Connect.tsx @@ -7,7 +7,7 @@ import { useAccount } from 'wagmi' import { Dots } from '@sushiswap/ui' import { useIsMounted } from '@sushiswap/hooks' -import { ConnectButton } from '../../components' +import { ConnectButton } from '../../components/connect-button' const Connect: FC = ({ children, diff --git a/packages/wagmi/src/systems/Checker/Custom.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Custom.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/Custom.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Custom.tsx diff --git a/packages/wagmi/src/systems/Checker/Guard.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Guard.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/Guard.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Guard.tsx diff --git a/packages/wagmi/src/systems/Checker/Network.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Network.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/Network.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Network.tsx diff --git a/packages/wagmi/src/systems/Checker/Provider.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/Provider.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx diff --git a/packages/wagmi/src/systems/Checker/Success.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Success.tsx similarity index 100% rename from packages/wagmi/src/systems/Checker/Success.tsx rename to apps/evm/src/lib/wagmi/systems/Checker/Success.tsx diff --git a/packages/wagmi/src/systems/Checker/index.ts b/apps/evm/src/lib/wagmi/systems/Checker/index.ts similarity index 100% rename from packages/wagmi/src/systems/Checker/index.ts rename to apps/evm/src/lib/wagmi/systems/Checker/index.ts diff --git a/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx b/apps/evm/src/lib/wagmi/systems/PoolFinder/ComponentsWrapper.tsx similarity index 100% rename from packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx rename to apps/evm/src/lib/wagmi/systems/PoolFinder/ComponentsWrapper.tsx diff --git a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx b/apps/evm/src/lib/wagmi/systems/PoolFinder/PoolFinder.tsx similarity index 95% rename from packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx rename to apps/evm/src/lib/wagmi/systems/PoolFinder/PoolFinder.tsx index 57df47ab95..147ebde162 100644 --- a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/PoolFinder.tsx @@ -9,7 +9,7 @@ import { useReducer, } from 'react' -import { SushiSwapV2PoolState } from '../../hooks' +import { SushiSwapV2PoolState } from '../../hooks/pools/hooks/useSushiSwapV2Pools' import { ComponentsWrapper } from './ComponentsWrapper' import { SushiSwapV2Pool } from './SushiSwapV2Pool' import { TridentConstantPool } from './TridentConstantPool' diff --git a/packages/wagmi/src/systems/PoolFinder/SushiSwapV2Pool.tsx b/apps/evm/src/lib/wagmi/systems/PoolFinder/SushiSwapV2Pool.tsx similarity index 87% rename from packages/wagmi/src/systems/PoolFinder/SushiSwapV2Pool.tsx rename to apps/evm/src/lib/wagmi/systems/PoolFinder/SushiSwapV2Pool.tsx index beb5588ecb..0ec5912ff1 100644 --- a/packages/wagmi/src/systems/PoolFinder/SushiSwapV2Pool.tsx +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/SushiSwapV2Pool.tsx @@ -1,6 +1,6 @@ import { FC, useEffect } from 'react' -import { useSushiSwapV2Pool } from '../../hooks' +import { useSushiSwapV2Pool } from '../../hooks/pools/hooks/useSushiSwapV2Pools' import { PoolFinderType, SushiSwapV2PoolFinderProps } from './types' export const SushiSwapV2Pool: FC = ({ diff --git a/packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx b/apps/evm/src/lib/wagmi/systems/PoolFinder/TridentConstantPool.tsx similarity index 87% rename from packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx rename to apps/evm/src/lib/wagmi/systems/PoolFinder/TridentConstantPool.tsx index cf53b53182..9f5ea0d5f9 100644 --- a/packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/TridentConstantPool.tsx @@ -1,7 +1,7 @@ import { FC, useEffect } from 'react' import { Fee } from 'sushi/dex' -import { useTridentConstantPool } from '../../hooks' +import { useTridentConstantPool } from '../../hooks/pools/hooks/useTridentConstantPools' import { PoolFinderType, TridentPoolFinderProps } from './types' export const TridentConstantPool: FC = ({ diff --git a/packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx b/apps/evm/src/lib/wagmi/systems/PoolFinder/TridentStablePool.tsx similarity index 88% rename from packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx rename to apps/evm/src/lib/wagmi/systems/PoolFinder/TridentStablePool.tsx index 3bcec8ef0a..80599b59b5 100644 --- a/packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/TridentStablePool.tsx @@ -1,7 +1,7 @@ import { FC, useEffect } from 'react' import { Fee } from 'sushi/dex' -import { useTridentStablePool } from '../../hooks' +import { useTridentStablePool } from '../../hooks/pools/hooks/useTridentStablePools' import { PoolFinderType, TridentPoolFinderProps } from './types' export const TridentStablePool: FC = ({ diff --git a/packages/wagmi/src/systems/PoolFinder/types.ts b/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts similarity index 84% rename from packages/wagmi/src/systems/PoolFinder/types.ts rename to apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts index e1153cca14..d4a6be749f 100644 --- a/packages/wagmi/src/systems/PoolFinder/types.ts +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts @@ -7,12 +7,9 @@ import { TridentConstantPool, TridentStablePool, } from 'sushi/pool' - -import { - SushiSwapV2PoolState, - TridentConstantPoolState, - TridentStablePoolState, -} from '../../hooks' +import { TridentConstantPoolState } from '../../hooks/pools/actions/getTridentConstantPools' +import { TridentStablePoolState } from '../../hooks/pools/actions/getTridentStablePools' +import { SushiSwapV2PoolState } from '../../hooks/pools/hooks/useSushiSwapV2Pools' export type ComponentsWrapperProps = { children: diff --git a/apps/evm/src/providers/wagmi-provider.tsx b/apps/evm/src/providers/wagmi-provider.tsx index 7f006b3f73..93a1643523 100644 --- a/apps/evm/src/providers/wagmi-provider.tsx +++ b/apps/evm/src/providers/wagmi-provider.tsx @@ -1,14 +1,9 @@ 'use client' -import { - State, - WagmiProvider, - // getChainId, - // switchChain, - // watchChainId, -} from '@sushiswap/wagmi' import { type FC, type ReactNode } from 'react' -import { wagmiConfig } from 'src/lib/wagmi' +import { wagmiConfig } from 'src/lib/wagmi/config' +import { State } from 'wagmi' +import { WagmiProvider } from 'wagmi' // import { type ChainId } from 'sushi' export const WagmiConfig: FC<{ diff --git a/apps/evm/src/ui/bonds/bonds-buy-review-modal.tsx b/apps/evm/src/ui/bonds/bonds-buy-review-modal.tsx index 010cd5ff2f..31937086d5 100644 --- a/apps/evm/src/ui/bonds/bonds-buy-review-modal.tsx +++ b/apps/evm/src/ui/bonds/bonds-buy-review-modal.tsx @@ -19,19 +19,12 @@ import { createErrorToast, createToast, } from '@sushiswap/ui' -import { - UseSimulateContractParameters, - usePublicClient, - useSimulateContract, - useWriteContract, -} from '@sushiswap/wagmi' -import { useAccount, useWaitForTransactionReceipt } from '@sushiswap/wagmi' -import { useApproved } from '@sushiswap/wagmi/systems/Checker/Provider' import { SendTransactionReturnType } from '@wagmi/core' import format from 'date-fns/format' import formatDistance from 'date-fns/formatDistance' import { FC, ReactNode, useCallback, useMemo } from 'react' import { APPROVE_TAG_BONDS } from 'src/lib/constants' +import { useApproved } from 'src/lib/wagmi/systems/Checker/Provider' import { Percent, formatPercent, @@ -42,6 +35,14 @@ import { import { Chain } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' import { UserRejectedRequestError } from 'viem' +import { + UseSimulateContractParameters, + useAccount, + useSimulateContract, + useWaitForTransactionReceipt, + useWriteContract, +} from 'wagmi' +import { usePublicClient } from 'wagmi' interface BondsBuyReviewModal { bond: Bond diff --git a/apps/evm/src/ui/bonds/bonds-market-details.tsx b/apps/evm/src/ui/bonds/bonds-market-details.tsx index 4bf612d33f..f2f549fd87 100644 --- a/apps/evm/src/ui/bonds/bonds-market-details.tsx +++ b/apps/evm/src/ui/bonds/bonds-market-details.tsx @@ -16,8 +16,8 @@ import { SkeletonText, Toggle, } from '@sushiswap/ui' -import { useBondMarketDetails } from '@sushiswap/wagmi' import { FC, useMemo, useState } from 'react' +import { useBondMarketDetails } from 'src/lib/wagmi/hooks/bonds/use-bond-market-details' import { Token } from 'sushi/currency' import { formatNumber, formatPercent, formatUSD } from 'sushi/format' diff --git a/apps/evm/src/ui/bonds/bonds-market-page-header/bonds-market-page-header-discount.tsx b/apps/evm/src/ui/bonds/bonds-market-page-header/bonds-market-page-header-discount.tsx index 021de2f387..64e5055e44 100644 --- a/apps/evm/src/ui/bonds/bonds-market-page-header/bonds-market-page-header-discount.tsx +++ b/apps/evm/src/ui/bonds/bonds-market-page-header/bonds-market-page-header-discount.tsx @@ -2,7 +2,7 @@ import { Bond } from '@sushiswap/client' import { SkeletonText, classNames } from '@sushiswap/ui' -import { useBondMarketDetails } from '@sushiswap/wagmi' +import { useBondMarketDetails } from 'src/lib/wagmi/hooks/bonds/use-bond-market-details' import { formatPercent } from 'sushi/format' export const BondsMarketPageHeaderDiscount = ({ bond }: { bond: Bond }) => { diff --git a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table-columns.tsx b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table-columns.tsx index 2fa58bfe06..7adeebce48 100644 --- a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table-columns.tsx +++ b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table-columns.tsx @@ -14,18 +14,11 @@ import { createErrorToast, createToast, } from '@sushiswap/ui' -import { - Checker, - UseSimulateContractParameters, - useAccount, - usePublicClient, - useSimulateContract, - useWriteContract, -} from '@sushiswap/wagmi' import { ColumnDef } from '@tanstack/react-table' import format from 'date-fns/format' import formatDistance from 'date-fns/formatDistance' import { useCallback, useMemo, useState } from 'react' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { Amount, Token } from 'sushi/currency' import { formatUSD } from 'sushi/format' import { @@ -33,6 +26,13 @@ import { SendTransactionReturnType, UserRejectedRequestError, } from 'viem' +import { + type UseSimulateContractParameters, + useAccount, + usePublicClient, + useSimulateContract, + useWriteContract, +} from 'wagmi' export const PAYOUT_ASSET_COLUMN: ColumnDef = { id: 'payout-asset', diff --git a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx index 3335eeeb6d..ddf434ccdf 100644 --- a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx +++ b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx @@ -9,7 +9,6 @@ import { } from '@sushiswap/client' import { useIsMounted } from '@sushiswap/hooks' import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' -import { useAccount } from '@sushiswap/wagmi' import { useQuery } from '@tanstack/react-query' import { ColumnDef, PaginationState, SortingState } from '@tanstack/react-table' import React, { FC, useMemo, useState } from 'react' @@ -19,6 +18,7 @@ import { PAYOUT_AMOUNT_COLUMN, PAYOUT_ASSET_COLUMN, } from './bonds-positions-table-columns' +import { useAccount } from 'wagmi' const COLUMNS = [ PAYOUT_ASSET_COLUMN, diff --git a/apps/evm/src/ui/bonds/bonds-widget.tsx b/apps/evm/src/ui/bonds/bonds-widget.tsx index 115fd10086..4b695988a4 100644 --- a/apps/evm/src/ui/bonds/bonds-widget.tsx +++ b/apps/evm/src/ui/bonds/bonds-widget.tsx @@ -19,13 +19,6 @@ import { SkeletonText, classNames, } from '@sushiswap/ui' -import { - Checker, - Web3Input, - useBondMarketDetails, - useChainId, -} from '@sushiswap/wagmi' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' import format from 'date-fns/format' import formatDistance from 'date-fns/formatDistance' import React, { useCallback, useEffect, useMemo, useState } from 'react' @@ -33,6 +26,11 @@ import { APPROVE_TAG_BONDS } from 'src/lib/constants' import { Amount, Token, tryParseAmount } from 'sushi/currency' import { formatPercent } from 'sushi/format' import { BondsBuyReviewModal } from './bonds-buy-review-modal' +import { useBondMarketDetails } from 'src/lib/wagmi/hooks/bonds/use-bond-market-details' +import { useChainId } from 'wagmi' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' const GetTokens = ({ bond }: { bond: Bond }) => { if (!bond.quoteToken.pool && !bond.quoteToken.vault) return null diff --git a/apps/evm/src/ui/pool/AddSectionLegacy.tsx b/apps/evm/src/ui/pool/AddSectionLegacy.tsx index a022ec4219..72033ad0d3 100644 --- a/apps/evm/src/ui/pool/AddSectionLegacy.tsx +++ b/apps/evm/src/ui/pool/AddSectionLegacy.tsx @@ -3,13 +3,6 @@ import { Pool } from '@sushiswap/client' import { useIsMounted } from '@sushiswap/hooks' import { Button } from '@sushiswap/ui' -import { - SushiSwapV2PoolState, - getSushiSwapRouterContractConfig, - useSushiSwapV2Pool, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, useCallback, useMemo, useState } from 'react' import { APPROVE_TAG_ADD_LEGACY } from 'src/lib/constants' import { type ChainId } from 'sushi/chain' @@ -17,6 +10,13 @@ import { SushiSwapV2ChainId } from 'sushi/config' import { tryParseAmount } from 'sushi/currency' import { useTokensFromPool } from '../../lib/hooks' +import { getSushiSwapRouterContractConfig } from 'src/lib/wagmi/hooks/contracts/useSushiSwapRouter' +import { + SushiSwapV2PoolState, + useSushiSwapV2Pool, +} from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { AddSectionReviewModalLegacy } from './AddSectionReviewModalLegacy' import { AddSectionWidget } from './AddSectionWidget' diff --git a/apps/evm/src/ui/pool/AddSectionPoolShareCardV2.tsx b/apps/evm/src/ui/pool/AddSectionPoolShareCardV2.tsx index 1ee1d2bcd3..ce243870c8 100644 --- a/apps/evm/src/ui/pool/AddSectionPoolShareCardV2.tsx +++ b/apps/evm/src/ui/pool/AddSectionPoolShareCardV2.tsx @@ -6,8 +6,8 @@ import { StatLabel, StatValue, } from '@sushiswap/ui' -import { SushiSwapV2PoolState } from '@sushiswap/wagmi' import { FC, useMemo } from 'react' +import { SushiSwapV2PoolState } from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' import { SushiSwapV2Pool } from 'sushi' import { Amount, Type } from 'sushi/currency' import { formatPercent } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx index b66b9e1831..7b1a93c2ef 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx @@ -18,26 +18,28 @@ import { SettingsOverlay, } from '@sushiswap/ui' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - UseCallParameters, - getDefaultTTL, - getV3NonFungiblePositionManagerContractConfig, - useAccount, - useCall, - usePublicClient, - useSendTransaction, - useTransactionDeadline, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Bound } from 'src/lib/constants' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' +import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' +import { + getDefaultTTL, + useTransactionDeadline, +} from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV3FeeAmount, isSushiSwapV3ChainId } from 'sushi/config' import { Amount, Type, tryParseAmount } from 'sushi/currency' import { NonfungiblePositionManager, Position } from 'sushi/pool' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, + useWaitForTransactionReceipt, +} from 'wagmi' import { useConcentratedDerivedMintInfo } from './ConcentratedLiquidityProvider' interface AddSectionReviewModalConcentratedProps diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalLegacy.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalLegacy.tsx index 92ce624e84..c4e9b58bdc 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalLegacy.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalLegacy.tsx @@ -17,29 +17,34 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - SushiSwapV2PoolState, - UseSimulateContractParameters, - getDefaultTTL, - getSushiSwapRouterContractConfig, - useAccount, - usePublicClient, - useSimulateContract, - useTransactionDeadline, - useWaitForTransactionReceipt, - useWriteContract, -} from '@sushiswap/wagmi' -import { SendTransactionReturnType } from '@sushiswap/wagmi/actions' -import { useApproved } from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, ReactNode, useCallback, useMemo } from 'react' import { APPROVE_TAG_ADD_LEGACY } from 'src/lib/constants' import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' +import { getSushiSwapRouterContractConfig } from 'src/lib/wagmi/hooks/contracts/useSushiSwapRouter' +import { SushiSwapV2PoolState } from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' +import { + getDefaultTTL, + useTransactionDeadline, +} from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' +import { useApproved } from 'src/lib/wagmi/systems/Checker/Provider' import { gasMargin, slippageAmount } from 'sushi/calculate' import { SushiSwapV2ChainId } from 'sushi/config' import { BentoBoxChainId } from 'sushi/config' import { Amount, Type } from 'sushi/currency' import { ZERO } from 'sushi/math' -import { Address, UserRejectedRequestError } from 'viem' +import { + Address, + SendTransactionReturnType, + UserRejectedRequestError, +} from 'viem' +import { + UseSimulateContractParameters, + usePublicClient, + useWriteContract, +} from 'wagmi' +import { useSimulateContract } from 'wagmi' +import { useAccount } from 'wagmi' +import { useWaitForTransactionReceipt } from 'wagmi' import { AddSectionReviewModal } from './AddSectionReviewModal' interface UseAddSushiSwapV2 { diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx index 6d7178c3f3..a1b95ee142 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx @@ -12,24 +12,6 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - TridentConstantPoolState, - TridentStablePoolState, - UseCallParameters, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTotalSupply, - useTridentRouterContract, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { - useApproved, - useApprovedActions, - useSignature, -} from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, ReactNode, useCallback, useMemo } from 'react' import { @@ -57,6 +39,24 @@ import { } from 'viem' import { SlippageToleranceStorageKey } from '@sushiswap/hooks' +import { useBentoBoxTotals } from 'src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals' +import { useTridentRouterContract } from 'src/lib/wagmi/hooks/contracts/useTridentRouter' +import { TridentConstantPoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentConstantPools' +import { TridentStablePoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentStablePools' +import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' +import { + useApproved, + useApprovedActions, + useSignature, +} from 'src/lib/wagmi/systems/Checker/Provider' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, + useWaitForTransactionReceipt, +} from 'wagmi' import { AddSectionReviewModal } from './AddSectionReviewModal' interface AddSectionReviewModalTridentProps { diff --git a/apps/evm/src/ui/pool/AddSectionStake.tsx b/apps/evm/src/ui/pool/AddSectionStake.tsx index a658a8edda..bd9fc4373b 100644 --- a/apps/evm/src/ui/pool/AddSectionStake.tsx +++ b/apps/evm/src/ui/pool/AddSectionStake.tsx @@ -5,15 +5,6 @@ import { usePool } from '@sushiswap/client/hooks' import { useIsMounted } from '@sushiswap/hooks' import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' -import { - getMasterChefContractConfig, - useMasterChefDeposit, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { - useApproved, - withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, useMemo, useState } from 'react' import { APPROVE_TAG_STAKE } from 'src/lib/constants' import { useGraphPool } from 'src/lib/hooks' @@ -22,6 +13,13 @@ import { tryParseAmount } from 'sushi/currency' import { ZERO } from 'sushi/math' import { useSWRConfig } from 'swr' +import { getMasterChefContractConfig } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-contract' +import { useMasterChefDeposit } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-deposit' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { + useApproved, + withCheckerRoot, +} from 'src/lib/wagmi/systems/Checker/Provider' import { AddSectionStakeWidget } from './AddSectionStakeWidget' interface AddSectionStakeProps { diff --git a/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx b/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx index a83632f9a5..44635cfc11 100644 --- a/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx +++ b/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx @@ -9,7 +9,6 @@ import { } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { Widget, WidgetHeader } from '@sushiswap/ui/components/widget' -import { useTotalSupply } from '@sushiswap/wagmi' import { FC, ReactNode, useMemo } from 'react' import { useTokenAmountDollarValues, @@ -18,6 +17,7 @@ import { import { Amount, Token, Type, tryParseAmount } from 'sushi/currency' import { formatUSD } from 'sushi/format' +import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' import { usePoolPosition } from './PoolPositionProvider' interface AddSectionStakeWidgetProps { diff --git a/apps/evm/src/ui/pool/AddSectionWidget.tsx b/apps/evm/src/ui/pool/AddSectionWidget.tsx index ed21f098a6..83677d12e7 100644 --- a/apps/evm/src/ui/pool/AddSectionWidget.tsx +++ b/apps/evm/src/ui/pool/AddSectionWidget.tsx @@ -13,9 +13,9 @@ import { SettingsOverlay, } from '@sushiswap/ui/components/settings' import { Widget, WidgetHeader } from '@sushiswap/ui/components/widget' -import { getDefaultTTL } from '@sushiswap/wagmi' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' import React, { FC, ReactNode } from 'react' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { getDefaultTTL } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' import { ChainId } from 'sushi/chain' import { Type } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx index 6caadd42c3..69accb6741 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx @@ -1,21 +1,21 @@ 'use client' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - ConcentratedLiquidityPosition, - UseCallParameters, - getV3NonFungiblePositionManagerContractConfig, - useAccount, - useCall, - usePublicClient, - useSendTransaction, -} from '@sushiswap/wagmi' import { FC, ReactElement, useCallback, useMemo } from 'react' +import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' +import { ConcentratedLiquidityPosition } from 'src/lib/wagmi/hooks/positions/types' import { ChainId } from 'sushi/chain' import { isSushiSwapV3ChainId } from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' import { NonfungiblePositionManager, Position } from 'sushi/pool' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, +} from 'wagmi' interface ConcentratedLiquidityCollectButton { positionDetails: ConcentratedLiquidityPosition | undefined diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityHarvestButton.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityHarvestButton.tsx index 88994c1f9a..0035746ab1 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityHarvestButton.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityHarvestButton.tsx @@ -1,8 +1,8 @@ 'use client' import { useAngleRewards } from '@sushiswap/react-query' -import { useHarvestAngleRewards } from '@sushiswap/wagmi' import { FC, ReactElement, useMemo } from 'react' +import { useHarvestAngleRewards } from 'src/lib/wagmi/hooks/rewards/hooks/useHarvestAngleRewards' import { ChainId } from 'sushi/chain' import { Address } from 'viem' diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityPositionAPRCell.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityPositionAPRCell.tsx index 3e8c7cd1f2..c75fb5c3b8 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityPositionAPRCell.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityPositionAPRCell.tsx @@ -6,9 +6,9 @@ import { HoverCardContent, HoverCardTrigger, } from '@sushiswap/ui' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' import { Row } from '@tanstack/react-table' import { FC } from 'react' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' export const ConcentratedLiquidityPositionAPRCell: FC< Row diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx index 446300b7b5..c9989aa399 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx @@ -1,6 +1,5 @@ 'use client' -import { useConcentratedLiquidityPool } from '@sushiswap/wagmi' import { FC, ReactNode, @@ -12,6 +11,7 @@ import { } from 'react' import { Bound, Field } from 'src/lib/constants' import { getTickToPrice, tryParseTick } from 'src/lib/functions' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import { SushiSwapV3ChainId, SushiSwapV3FeeAmount, diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx index 3d06e72350..92bfdb7ab0 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx @@ -32,26 +32,28 @@ import { } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' +import React, { FC, useCallback, useMemo, useState } from 'react' +import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' +import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' +import { ConcentratedLiquidityPosition } from 'src/lib/wagmi/hooks/positions/types' import { - ConcentratedLiquidityPosition, getDefaultTTL, - getV3NonFungiblePositionManagerContractConfig, - useAccount, - useCall, - usePublicClient, - useSendTransaction, useTransactionDeadline, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import React, { FC, useCallback, useMemo, useState } from 'react' -import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' +} from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { Chain } from 'sushi/chain' import { SushiSwapV3ChainId, isSushiSwapV3ChainId } from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' import { Percent, ZERO } from 'sushi/math' import { NonfungiblePositionManager, Position } from 'sushi/pool' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' +import { + useCall, + useSendTransaction, + useWaitForTransactionReceipt, +} from 'wagmi' +import { useAccount } from 'wagmi' +import { usePublicClient } from 'wagmi' import { useTokenAmountDollarValues } from '../../lib/hooks' interface ConcentratedLiquidityRemoveWidget { diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityURLStateProvider.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityURLStateProvider.tsx index 1e3701156b..aad1aaf6e5 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityURLStateProvider.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityURLStateProvider.tsx @@ -1,10 +1,9 @@ 'use client' -import { useChainId } from '@sushiswap/wagmi' -import { useTokenWithCache } from '@sushiswap/wagmi' import { usePathname, useRouter, useSearchParams } from 'next/navigation' import React, { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { ChainId } from 'sushi/chain' import { SushiSwapV3ChainId, @@ -16,6 +15,7 @@ import { } from 'sushi/config' import { Native, Token, Type } from 'sushi/currency' import { isAddress } from 'viem' +import { useChainId } from 'wagmi' import { z } from 'zod' export const queryParamsSchema = z.object({ diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx index 81b29d8cbe..482a905669 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx @@ -4,12 +4,6 @@ import { Transition } from '@headlessui/react' import { LockClosedIcon, PlusIcon } from '@heroicons/react-v1/solid' import { DialogTrigger, FormSection, Message, classNames } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' -import { - getV3NonFungiblePositionManagerContractConfig, - useConcentratedPositionOwner, -} from '@sushiswap/wagmi' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' -import { Checker } from '@sushiswap/wagmi/systems' import { FC, Fragment, useCallback, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { @@ -20,6 +14,10 @@ import { import { Type } from 'sushi/currency' import { Position } from 'sushi/pool' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' +import { useConcentratedPositionOwner } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { Bound, Field } from '../../lib/constants' import { AddSectionReviewModalConcentrated } from './AddSectionReviewModalConcentrated' import { diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx index 3808b487da..ecdd7fbda7 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx @@ -12,12 +12,12 @@ import { Switch, } from '@sushiswap/ui' import { Slot } from '@sushiswap/ui/components/slot' -import { useAccount } from '@sushiswap/wagmi' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' -import { useConcentratedLiquidityPositions } from '@sushiswap/wagmi' import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' +import { useConcentratedLiquidityPositions } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' import { SushiSwapV3ChainId } from 'sushi/config' +import { useAccount } from 'wagmi' import { usePoolFilters } from '../PoolsFiltersProvider' import { NAME_COLUMN_V3, diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx index da54f3c07a..22a94c8a6a 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx @@ -6,7 +6,6 @@ import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useState } from 'react' import { ChainId } from 'sushi/chain' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' import { Address } from 'viem' import { NAME_COLUMN_V3, @@ -15,6 +14,7 @@ import { PRICE_RANGE_COLUMN, } from '../../../columns' import { useManualPositions } from './useManualPositions' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' const COLUMNS = [ NAME_COLUMN_V3, diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts index 4a5c138b1d..fcdd1d0310 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts @@ -1,6 +1,5 @@ 'use client' -import { useAccount, useConcentratedLiquidityPositions } from '@sushiswap/wagmi' import { useMemo } from 'react' import { ChainId } from 'sushi/chain' import { @@ -9,7 +8,9 @@ import { } from 'sushi/config' import { Writeable } from 'zod' +import { useConcentratedLiquidityPositions } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions' import { Address } from 'viem' +import { useAccount } from 'wagmi' import { usePoolFilters } from '../../../PoolsFiltersProvider' interface UseManualPositions { diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts index 1968a860c2..5f98b71098 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts @@ -2,11 +2,12 @@ import { usePool, useSteerVaults } from '@sushiswap/client/hooks' import { useAllPrices } from '@sushiswap/react-query' -import { useAccount, useSteerAccountPositions } from '@sushiswap/wagmi' import { useMemo } from 'react' +import { useSteerAccountPositions } from 'src/lib/wagmi/hooks/useSteer/useSteerAccountPosition' import { ChainId } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' import { Address } from 'viem' +import { useAccount } from 'wagmi' interface UseSteerPositions { chainId?: ChainId diff --git a/apps/evm/src/ui/pool/CreatePositionManual.tsx b/apps/evm/src/ui/pool/CreatePositionManual.tsx index f95d4eb364..1554cbcb48 100644 --- a/apps/evm/src/ui/pool/CreatePositionManual.tsx +++ b/apps/evm/src/ui/pool/CreatePositionManual.tsx @@ -9,11 +9,11 @@ import { CardTitle, Separator, } from '@sushiswap/ui' -import { useAccount } from '@sushiswap/wagmi' import React, { FC, useMemo, useState } from 'react' import { ConcentratedLiquidityWidget } from 'src/ui/pool/ConcentratedLiquidityWidget' import { SushiSwapV3ChainId } from 'sushi/config' import { unwrapToken } from 'sushi/currency' +import { useAccount } from 'wagmi' import { SelectPricesWidget } from './SelectPricesWidget' interface ManualProps { diff --git a/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx b/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx index 8f815caa06..e3517293ec 100644 --- a/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx +++ b/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx @@ -12,24 +12,6 @@ import { Dots, } from '@sushiswap/ui' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - PoolFinderType, - UseCallParameters, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTridentConstantPoolFactoryContract, - useTridentRouterContract, - useTridentStablePoolFactoryContract, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { - useApproved, - useApprovedActions, - useSignature, -} from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, ReactNode, useCallback, useMemo } from 'react' import { @@ -47,7 +29,12 @@ import { computeTridentStablePoolAddress, } from 'sushi' import { ChainId } from 'sushi/chain' -import { BentoBoxChainId, TridentChainId } from 'sushi/config' +import { + BentoBoxChainId, + TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, + TRIDENT_STABLE_POOL_FACTORY_ADDRESS, + TridentChainId, +} from 'sushi/config' import { Amount, Type } from 'sushi/currency' import { Fee } from 'sushi/dex' import { @@ -60,6 +47,22 @@ import { zeroAddress, } from 'viem' +import { useBentoBoxTotals } from 'src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals' +import { useTridentRouterContract } from 'src/lib/wagmi/hooks/contracts/useTridentRouter' +import { + useApproved, + useApprovedActions, + useSignature, +} from 'src/lib/wagmi/systems/Checker/Provider' +import { PoolFinderType } from 'src/lib/wagmi/systems/PoolFinder/types' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, + useWaitForTransactionReceipt, +} from 'wagmi' import { AddSectionReviewModal } from './AddSectionReviewModal' interface CreateSectionReviewModalTridentProps { @@ -83,8 +86,8 @@ export const CreateSectionReviewModalTrident: FC< const { approved } = useApproved(APPROVE_TAG_CREATE_TRIDENT) const contract = useTridentRouterContract(chainId) const constantProductPoolFactory = - useTridentConstantPoolFactoryContract(chainId) - const stablePoolFactory = useTridentStablePoolFactoryContract(chainId) + TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId] + const stablePoolFactory = TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId] const { data: totals } = useBentoBoxTotals({ chainId, diff --git a/apps/evm/src/ui/pool/MigrateTab.tsx b/apps/evm/src/ui/pool/MigrateTab.tsx index d314065091..2ea85282b0 100644 --- a/apps/evm/src/ui/pool/MigrateTab.tsx +++ b/apps/evm/src/ui/pool/MigrateTab.tsx @@ -34,24 +34,6 @@ import { SettingsOverlay, } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' -import { - V3MigrateChainId, - V3MigrateContractConfig, - getDefaultTTL, - getMasterChefContractConfig, - useAccount, - useMasterChefWithdraw, - useSushiSwapV2Pool, - useTotalSupply, - useTransactionDeadline, - useV3Migrate, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { - useApproved, - withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' import React, { FC, useMemo, useState } from 'react' import { APPROVE_TAG_MIGRATE, @@ -61,6 +43,24 @@ import { } from 'src/lib/constants' import { useGraphPool, useTokenAmountDollarValues } from 'src/lib/hooks' import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' +import { getMasterChefContractConfig } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-contract' +import { useMasterChefWithdraw } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-withdraw' +import { + V3MigrateContractConfig, + useV3Migrate, +} from 'src/lib/wagmi/hooks/migrate/hooks/useV3Migrate' +import { V3MigrateChainId } from 'src/lib/wagmi/hooks/migrate/types' +import { useSushiSwapV2Pool } from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' +import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' +import { + getDefaultTTL, + useTransactionDeadline, +} from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { + useApproved, + withCheckerRoot, +} from 'src/lib/wagmi/systems/Checker/Provider' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV2ChainId, @@ -77,6 +77,7 @@ import { priceToClosestTick, } from 'sushi/pool' import { Address } from 'viem' +import { useAccount, useWaitForTransactionReceipt } from 'wagmi' import { useConcentratedDerivedMintInfo } from './ConcentratedLiquidityProvider' import { usePoolPosition } from './PoolPositionProvider' import { usePoolPositionStaked } from './PoolPositionStakedProvider' diff --git a/apps/evm/src/ui/pool/MigrateTabContent.tsx b/apps/evm/src/ui/pool/MigrateTabContent.tsx index 4c8fa2246f..08959b5c4b 100644 --- a/apps/evm/src/ui/pool/MigrateTabContent.tsx +++ b/apps/evm/src/ui/pool/MigrateTabContent.tsx @@ -7,12 +7,13 @@ import { Carousel, Container, } from '@sushiswap/ui' -import { ConnectButton, useAccount } from '@sushiswap/wagmi' import React from 'react' import { ChainId } from 'sushi/chain' import { isSushiSwapV3ChainId } from 'sushi/config' import { useIsMounted } from '@sushiswap/hooks' +import { ConnectButton } from 'src/lib/wagmi/components/connect-button' +import { useAccount } from 'wagmi' import { PositionCard, PositionCardSkeleton } from './PositionCard' import { PositionCardList } from './PositionCardList' diff --git a/apps/evm/src/ui/pool/PoolMyRewards.tsx b/apps/evm/src/ui/pool/PoolMyRewards.tsx index 72f622277d..393c589ba0 100644 --- a/apps/evm/src/ui/pool/PoolMyRewards.tsx +++ b/apps/evm/src/ui/pool/PoolMyRewards.tsx @@ -13,10 +13,10 @@ import { CardLabel, CardTitle, } from '@sushiswap/ui/components/card' -import { Checker } from '@sushiswap/wagmi/systems/Checker' import { FC } from 'react' import { formatUSD } from 'sushi/format' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { type ChainId } from 'sushi/chain' import { usePoolPositionRewards } from './PoolPositionRewardsProvider' diff --git a/apps/evm/src/ui/pool/PoolNameCellV3.tsx b/apps/evm/src/ui/pool/PoolNameCellV3.tsx index c0f260fbc4..78b8cf701d 100644 --- a/apps/evm/src/ui/pool/PoolNameCellV3.tsx +++ b/apps/evm/src/ui/pool/PoolNameCellV3.tsx @@ -2,9 +2,9 @@ import { classNames } from '@sushiswap/ui' import { Badge } from '@sushiswap/ui/components/badge' import { Currency } from '@sushiswap/ui/components/currency' import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' import { Row } from '@tanstack/react-table' import { FC, useMemo } from 'react' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' import { ChainId } from 'sushi/chain' import { Type, unwrapToken } from 'sushi/currency' import { formatNumber } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolPageV3.tsx b/apps/evm/src/ui/pool/PoolPageV3.tsx index b085529761..bfd5552b90 100644 --- a/apps/evm/src/ui/pool/PoolPageV3.tsx +++ b/apps/evm/src/ui/pool/PoolPageV3.tsx @@ -13,10 +13,6 @@ import { CardTitle, } from '@sushiswap/ui/components/card' import { Toggle } from '@sushiswap/ui/components/toggle' -import { - useConcentratedLiquidityPool, - useConcentratedLiquidityPoolReserves, -} from '@sushiswap/wagmi' import React, { FC, useState } from 'react' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { SushiSwapV3ChainId } from 'sushi/config' @@ -28,6 +24,8 @@ import { PoolRewardDistributionsCard } from './PoolRewardDistributionsCard' import { PoolTransactionsV3 } from './PoolTransactionsV3' import { PoolsFiltersProvider } from './PoolsFiltersProvider' import { StatisticsCharts } from './StatisticsChart' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' +import { useConcentratedLiquidityPoolReserves } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves' enum Granularity { Day = 0, diff --git a/apps/evm/src/ui/pool/PoolPosition.tsx b/apps/evm/src/ui/pool/PoolPosition.tsx index e48d2192c5..7d40ec4208 100644 --- a/apps/evm/src/ui/pool/PoolPosition.tsx +++ b/apps/evm/src/ui/pool/PoolPosition.tsx @@ -12,7 +12,8 @@ import { FC } from 'react' import { formatUSD } from 'sushi/format' import { SkeletonText } from '@sushiswap/ui' -import { ConnectButton, useAccount } from '@sushiswap/wagmi' +import { ConnectButton } from 'src/lib/wagmi/components/connect-button' +import { useAccount } from 'wagmi' import { PoolPositionDesktop } from './PoolPositionDesktop' import { usePoolPosition } from './PoolPositionProvider' import { PoolPositionStakedDesktop } from './PoolPositionStakedDesktop' diff --git a/apps/evm/src/ui/pool/PoolPositionProvider.tsx b/apps/evm/src/ui/pool/PoolPositionProvider.tsx index a9284abd22..42ffead899 100644 --- a/apps/evm/src/ui/pool/PoolPositionProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionProvider.tsx @@ -1,16 +1,16 @@ 'use client' import { Pool } from '@sushiswap/client' -import { useAccount } from '@sushiswap/wagmi' -import { useBalanceWeb3 } from '@sushiswap/wagmi' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { useGraphPool, useTokenAmountDollarValues, useUnderlyingTokenBalanceFromPool, } from 'src/lib/hooks' +import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' import { ChainId } from 'sushi/chain' import { Amount, Type } from 'sushi/currency' +import { useAccount } from 'wagmi' interface PoolPositionContext { balance: Amount | null | undefined diff --git a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx index 5bbe10e559..3e394cb0e3 100644 --- a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx @@ -1,17 +1,17 @@ 'use client' import { ChefType, Pool } from '@sushiswap/client' -import { - RewarderType, - useAccount, - useMasterChef, - useRewarder, -} from '@sushiswap/wagmi' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { incentiveRewardToToken } from 'src/lib/functions' import { useTokenAmountDollarValues, useTokensFromPool } from 'src/lib/hooks' +import { useMasterChef } from 'src/lib/wagmi/hooks/master-chef/use-master-chef' +import { + RewarderType, + useRewarder, +} from 'src/lib/wagmi/hooks/master-chef/use-rewarder' import { ChainId } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' +import { useAccount } from 'wagmi' interface PoolPositionRewardsContext { pendingRewards: (Amount | undefined)[] diff --git a/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx b/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx index 4bbd2f9cd4..393a0451b9 100644 --- a/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx @@ -1,13 +1,13 @@ 'use client' import { ChefType, Pool } from '@sushiswap/client' -import { useMasterChef } from '@sushiswap/wagmi' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { useGraphPool, useTokenAmountDollarValues, useUnderlyingTokenBalanceFromPool, } from 'src/lib/hooks' +import { useMasterChef } from 'src/lib/wagmi/hooks/master-chef/use-master-chef' import { ChainId } from 'sushi/chain' import { Amount, Currency, Token } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index dcc6dac66c..3910c66227 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -1,9 +1,9 @@ import { Protocol } from '@sushiswap/client' -import { useAccount } from '@sushiswap/wagmi' import React, { FC, ReactNode } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { useUserPositions } from 'src/lib/hooks' import { PositionWithPool } from 'src/types' +import { useAccount } from 'wagmi' interface PositionCardList { children({ diff --git a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx index c9d04472ff..b882bd9ab4 100644 --- a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx +++ b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx @@ -3,13 +3,13 @@ import { Button } from '@sushiswap/ui/components/button' import { Currency } from '@sushiswap/ui/components/currency' import { LinkInternal } from '@sushiswap/ui/components/link' import { List } from '@sushiswap/ui/components/list' -import { useAccount, useSwitchChain } from '@sushiswap/wagmi' import React, { FC, useCallback } from 'react' import { PositionWithPool } from 'src/types' import { formatPercent, formatUSD } from 'sushi/format' import { ZERO } from 'sushi/math' import { ChainId } from 'sushi/chain' +import { useAccount, useSwitchChain } from 'wagmi' import { PoolPositionProvider, usePoolPosition } from './PoolPositionProvider' import { PoolPositionRewardsProvider, diff --git a/apps/evm/src/ui/pool/PositionView.tsx b/apps/evm/src/ui/pool/PositionView.tsx index a7abb117cc..284eeeba64 100644 --- a/apps/evm/src/ui/pool/PositionView.tsx +++ b/apps/evm/src/ui/pool/PositionView.tsx @@ -33,21 +33,19 @@ import { import { Button } from '@sushiswap/ui/components/button' import { FormattedNumber } from '@sushiswap/ui/components/formatted-number' import { SkeletonText } from '@sushiswap/ui/components/skeleton' -import { - getDefaultTTL, - useAccount, - useConcentratedLiquidityPositionsFromTokenId, - useConcentratedPositionInfo, - useConcentratedPositionOwner, - useTokenWithCache, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' import { FC, useMemo, useState } from 'react' +import { useConcentratedPositionInfo } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo' +import { useConcentratedPositionOwner } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner' +import { useConcentratedLiquidityPositionsFromTokenId } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' +import { getDefaultTTL } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { Chain } from 'sushi/chain' import { SushiSwapV3ChainId, isAngleEnabledChainId } from 'sushi/config' import { Amount, unwrapToken } from 'sushi/currency' import { formatUSD } from 'sushi/format' import { getAddress } from 'viem' +import { useAccount } from 'wagmi' import { Bound } from '../../lib/constants' import { formatTickPrice, diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index e31fd26be2..6279494971 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -1,13 +1,13 @@ import { Protocol } from '@sushiswap/client' import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' import { Slot } from '@sushiswap/ui/components/slot' -import { useAccount } from '@sushiswap/wagmi' import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { useUserPositions } from 'src/lib/hooks' import { PositionWithPool } from 'src/types' +import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' import { APR_COLUMN, diff --git a/apps/evm/src/ui/pool/PriceRangeCell.tsx b/apps/evm/src/ui/pool/PriceRangeCell.tsx index 1996db0995..aa95b4fef6 100644 --- a/apps/evm/src/ui/pool/PriceRangeCell.tsx +++ b/apps/evm/src/ui/pool/PriceRangeCell.tsx @@ -3,7 +3,6 @@ import { ArrowSmLeftIcon, ArrowSmRightIcon } from '@heroicons/react-v1/solid' import { classNames } from '@sushiswap/ui' import { FormattedNumber } from '@sushiswap/ui/components/formatted-number' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' import { Row } from '@tanstack/react-table' import { FC, useMemo, useState } from 'react' import { Bound } from 'src/lib/constants' @@ -13,6 +12,7 @@ import { } from 'src/lib/functions' import { usePriceInverter } from 'src/lib/hooks' import { useIsTickAtLimit } from 'src/lib/pool/v3' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' import { Position } from 'sushi/pool' export const PriceRangeCell: FC> = diff --git a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx index 062a48784f..d184b1f737 100644 --- a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx @@ -10,27 +10,6 @@ import { import { Dots } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { createToast } from '@sushiswap/ui/components/toast' -import { - PermitInfo, - PermitType, - SushiSwapV2PoolState, - UseCallParameters, - getSushiSwapRouterContractConfig, - useAccount, - useCall, - usePublicClient, - useSendTransaction, - useSushiSwapRouterContract, - useSushiSwapV2Pool, - useTotalSupply, - useTransactionDeadline, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { - useApproved, - useSignature, - withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, useCallback, useEffect, useMemo, useState } from 'react' import { APPROVE_TAG_REMOVE_LEGACY } from 'src/lib/constants' import { @@ -45,6 +24,33 @@ import { Amount, Native } from 'sushi/currency' import { Percent } from 'sushi/math' import { SendTransactionReturnType, encodeFunctionData } from 'viem' +import { + PermitInfo, + PermitType, +} from 'src/lib/wagmi/hooks/approvals/hooks/useTokenPermit' +import { + getSushiSwapRouterContractConfig, + useSushiSwapRouterContract, +} from 'src/lib/wagmi/hooks/contracts/useSushiSwapRouter' +import { + SushiSwapV2PoolState, + useSushiSwapV2Pool, +} from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' +import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' +import { useTransactionDeadline } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { + useApproved, + useSignature, + withCheckerRoot, +} from 'src/lib/wagmi/systems/Checker/Provider' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, +} from 'wagmi' import { usePoolPosition } from './PoolPositionProvider' import { RemoveSectionWidget } from './RemoveSectionWidget' diff --git a/apps/evm/src/ui/pool/RemoveSectionTrident.tsx b/apps/evm/src/ui/pool/RemoveSectionTrident.tsx index ad2e0cc2e5..9516f50437 100644 --- a/apps/evm/src/ui/pool/RemoveSectionTrident.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionTrident.tsx @@ -5,28 +5,6 @@ import { SlippageToleranceStorageKey, useIsMounted } from '@sushiswap/hooks' import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' import { createToast } from '@sushiswap/ui/components/toast' -import { - TridentConstantPoolState, - TridentStablePoolState, - UseCallParameters, - getTridentRouterContractConfig, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTotalSupply, - useTridentConstantPool, - useTridentRouterContract, - useTridentStablePool, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { - useApproved, - useApprovedActions, - useSignature, - withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, useCallback, useMemo, useState } from 'react' import { APPROVE_TAG_REMOVE_TRIDENT } from 'src/lib/constants' import { @@ -48,7 +26,31 @@ import { BentoBoxChainId, TridentChainId } from 'sushi/config' import { Amount, Native } from 'sushi/currency' import { Percent } from 'sushi/math' +import { useBentoBoxTotals } from 'src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals' +import { + getTridentRouterContractConfig, + useTridentRouterContract, +} from 'src/lib/wagmi/hooks/contracts/useTridentRouter' +import { TridentConstantPoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentConstantPools' +import { TridentStablePoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentStablePools' +import { useTridentConstantPool } from 'src/lib/wagmi/hooks/pools/hooks/useTridentConstantPools' +import { useTridentStablePool } from 'src/lib/wagmi/hooks/pools/hooks/useTridentStablePools' +import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { + useApproved, + useApprovedActions, + useSignature, + withCheckerRoot, +} from 'src/lib/wagmi/systems/Checker/Provider' import { SendTransactionReturnType } from 'viem' +import { + UseCallParameters, + useAccount, + useCall, + usePublicClient, + useSendTransaction, +} from 'wagmi' import { usePoolPosition } from './PoolPositionProvider' import { RemoveSectionWidget } from './RemoveSectionWidget' diff --git a/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx b/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx index 246044582f..463a45edd8 100644 --- a/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx @@ -17,14 +17,14 @@ import { } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' -import { useMasterChefWithdraw } from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { withCheckerRoot } from '@sushiswap/wagmi/systems/Checker/Provider' import { FC, useMemo, useState } from 'react' import { ChainId } from 'sushi/chain' import { ZERO } from 'sushi/math' import { useSWRConfig } from 'swr' +import { useMasterChefWithdraw } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-withdraw' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { withCheckerRoot } from 'src/lib/wagmi/systems/Checker/Provider' import { usePoolPositionStaked } from './PoolPositionStakedProvider' interface AddSectionStakeProps { diff --git a/apps/evm/src/ui/pool/RemoveSectionWidget.tsx b/apps/evm/src/ui/pool/RemoveSectionWidget.tsx index 61a69612fb..2935cda806 100644 --- a/apps/evm/src/ui/pool/RemoveSectionWidget.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionWidget.tsx @@ -28,7 +28,7 @@ import { Amount, Type } from 'sushi/currency' import { ZERO } from 'sushi/math' import { SlippageToleranceStorageKey, TTLStorageKey } from '@sushiswap/hooks' -import { getDefaultTTL } from '@sushiswap/wagmi' +import { getDefaultTTL } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' import { usePoolPosition } from './PoolPositionProvider' interface RemoveSectionWidgetProps { diff --git a/apps/evm/src/ui/pool/RewardSlide.tsx b/apps/evm/src/ui/pool/RewardSlide.tsx index f91c882fa0..110b110e29 100644 --- a/apps/evm/src/ui/pool/RewardSlide.tsx +++ b/apps/evm/src/ui/pool/RewardSlide.tsx @@ -19,8 +19,8 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Currency } from '@sushiswap/ui/components/currency' import { List } from '@sushiswap/ui/components/list/List' -import { Checker } from '@sushiswap/wagmi/systems/Checker' import React, { FC, ReactNode, useMemo } from 'react' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { Chain } from 'sushi/chain' import { formatNumber } from 'sushi/format' import { Address } from 'viem' diff --git a/apps/evm/src/ui/pool/RewardsSection.tsx b/apps/evm/src/ui/pool/RewardsSection.tsx index 84700cc689..45d8546130 100644 --- a/apps/evm/src/ui/pool/RewardsSection.tsx +++ b/apps/evm/src/ui/pool/RewardsSection.tsx @@ -12,11 +12,11 @@ import { DataTable, } from '@sushiswap/ui' import { Carousel } from '@sushiswap/ui/components/carousel' -import { useAccount } from '@sushiswap/wagmi' import { ColumnDef, PaginationState } from '@tanstack/react-table' import React, { FC, useCallback, useMemo, useState } from 'react' import { ANGLE_ENABLED_NETWORKS } from 'sushi/config' +import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' import { RewardSlide, RewardSlideSkeleton } from './RewardSlide' import { diff --git a/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx b/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx index 18543321a8..47563701da 100644 --- a/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx @@ -4,8 +4,8 @@ import { RadioGroup } from '@headlessui/react' import { StarIcon } from '@heroicons/react-v1/solid' import { FormSection, classNames } from '@sushiswap/ui' import { CheckIcon } from '@sushiswap/ui/components/icons' -import { PoolFinderType } from '@sushiswap/wagmi' import React, { FC, memo } from 'react' +import { PoolFinderType } from 'src/lib/wagmi/systems/PoolFinder/types' const POOL_OPTIONS = [ { diff --git a/apps/evm/src/ui/pool/SelectPricesWidget.tsx b/apps/evm/src/ui/pool/SelectPricesWidget.tsx index 12e0468dc1..c7e52428f2 100644 --- a/apps/evm/src/ui/pool/SelectPricesWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPricesWidget.tsx @@ -29,8 +29,6 @@ import { } from '@sushiswap/ui' import { SkeletonText } from '@sushiswap/ui/components/skeleton' import { Toggle } from '@sushiswap/ui/components/toggle' -import { useAccount } from '@sushiswap/wagmi' -import { useConcentratedLiquidityPositionsFromTokenId } from '@sushiswap/wagmi' import React, { FC, ReactNode, @@ -58,6 +56,8 @@ import { useRangeHopCallbacks, } from './ConcentratedLiquidityProvider' import LiquidityChartRangeInput from './LiquidityChartRangeInput' +import { useConcentratedLiquidityPositionsFromTokenId } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId' +import { useAccount } from 'wagmi' enum PriceRange { FULL_RANGE = 0, diff --git a/apps/evm/src/ui/pool/SelectTokensWidget.tsx b/apps/evm/src/ui/pool/SelectTokensWidget.tsx index 27cb5f8e9c..dd28c8a6b0 100644 --- a/apps/evm/src/ui/pool/SelectTokensWidget.tsx +++ b/apps/evm/src/ui/pool/SelectTokensWidget.tsx @@ -2,8 +2,8 @@ import { FormSection } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import { Currency } from '@sushiswap/ui/components/currency' import { SelectIcon } from '@sushiswap/ui/components/select' -import { TokenSelector } from '@sushiswap/wagmi/components/token-selector/TokenSelector' import React, { FC } from 'react' +import { TokenSelector } from 'src/lib/wagmi/components/token-selector/TokenSelector' import { ChainId } from 'sushi/chain' import { Type } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/SmartPositionsTable.tsx b/apps/evm/src/ui/pool/SmartPositionsTable.tsx index e8e9a4340f..fab0b98d27 100644 --- a/apps/evm/src/ui/pool/SmartPositionsTable.tsx +++ b/apps/evm/src/ui/pool/SmartPositionsTable.tsx @@ -12,7 +12,6 @@ import { TooltipProvider, TooltipTrigger, } from '@sushiswap/ui' -import { useAccount, useSteerAccountPositionsExtended } from '@sushiswap/wagmi' import { formatPercent } from 'sushi' import { APRHoverCard } from './APRHoverCard' import { @@ -22,6 +21,8 @@ import { } from './ConcentratedPositionsTable/Tables/Smart/columns' import { SteerPosition } from './ConcentratedPositionsTable/Tables/Smart/useSteerPositions' import { usePoolFilters } from './PoolsFiltersProvider' +import { useAccount } from 'wagmi' +import { useSteerAccountPositionsExtended } from 'src/lib/wagmi/hooks/useSteer/useSteerAccountPositionsExtended' const COLUMNS = [ STEER_NAME_COLUMN, diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx index 7d807f6386..0a8aaabd05 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx @@ -4,13 +4,14 @@ import { PlusIcon } from '@heroicons/react-v1/solid' import { SteerVault } from '@sushiswap/client' import { STEER_PERIPHERY_ADDRESS, SteerChainId } from '@sushiswap/steer-sdk' import { Button, DialogTrigger, classNames } from '@sushiswap/ui' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' import React, { FC, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { useIsMounted } from '@sushiswap/hooks' -import { Checker, Web3Input } from '@sushiswap/wagmi' import { APPROVE_TAG_STEER, Field } from 'src/lib/constants' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { useSteerPositionAddActions, useSteerPositionAddDerivedInfo, diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx index fe5947e2ff..e73fe1dfba 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx @@ -2,7 +2,6 @@ import type { SteerVault } from '@sushiswap/client' import { useSteerVault } from '@sushiswap/client/hooks' -import { useSteerVaultReserves } from '@sushiswap/wagmi' import { FC, ReactNode, @@ -12,6 +11,7 @@ import { useReducer, } from 'react' import { Field } from 'src/lib/constants' +import { useSteerVaultReserves } from 'src/lib/wagmi/hooks/useSteer/useSteerVaultReserves' import { Amount, Currency, Token, tryParseAmount } from 'sushi/currency' interface State { diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx index 1823705cd0..0eba0aa0f8 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx @@ -19,16 +19,6 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' import { List } from '@sushiswap/ui/components/list/List' -import { - UseSimulateContractParameters, - useAccount, - usePublicClient, - useSimulateContract, - useSteerAccountPosition, - useWaitForTransactionReceipt, - useWriteContract, -} from '@sushiswap/wagmi' -import { useApproved } from '@sushiswap/wagmi/systems/Checker/Provider' import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Chain, ChainId } from 'sushi/chain' import { Amount } from 'sushi/currency' @@ -45,7 +35,14 @@ import { useSlippageTolerance, } from '@sushiswap/hooks' import { APPROVE_TAG_STEER } from 'src/lib/constants' +import { useSteerAccountPosition } from 'src/lib/wagmi/hooks/useSteer/useSteerAccountPosition' +import { useApproved } from 'src/lib/wagmi/systems/Checker/Provider' import { slippageAmount } from 'sushi' +import { UseSimulateContractParameters, usePublicClient } from 'wagmi' +import { useAccount } from 'wagmi' +import { useSimulateContract } from 'wagmi' +import { useWaitForTransactionReceipt } from 'wagmi' +import { useWriteContract } from 'wagmi' import { useTokenAmountDollarValues } from '../../../../../lib/hooks' import { SteerStrategyConfig } from '../../constants' import { useSteerPositionAddDerivedInfo } from './SteerPositionAddProvider' diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Remove/SteerPositionRemove.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Remove/SteerPositionRemove.tsx index 66ab09a73d..068dbdd228 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Remove/SteerPositionRemove.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Remove/SteerPositionRemove.tsx @@ -22,16 +22,9 @@ import { createErrorToast, createToast, } from '@sushiswap/ui' -import { - Checker, - UseSimulateContractParameters, - useAccount, - usePublicClient, - useSimulateContract, - useSteerAccountPosition, - useWriteContract, -} from '@sushiswap/wagmi' import React, { FC, useCallback, useMemo, useState } from 'react' +import { useSteerAccountPosition } from 'src/lib/wagmi/hooks/useSteer/useSteerAccountPosition' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { slippageAmount } from 'sushi' import { ChainId } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' @@ -41,6 +34,13 @@ import { SendTransactionReturnType, UserRejectedRequestError, } from 'viem' +import { + UseSimulateContractParameters, + useAccount, + usePublicClient, + useSimulateContract, + useWriteContract, +} from 'wagmi' interface SteerPositionRemoveProps { vault: SteerVault diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/SteerPositionDetails.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/SteerPositionDetails.tsx index cd38d9e764..1ff9b7c82b 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/SteerPositionDetails.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/SteerPositionDetails.tsx @@ -10,10 +10,11 @@ import { CardLabel, CardTitle, } from '@sushiswap/ui' -import { useAccount, useSteerAccountPosition } from '@sushiswap/wagmi' import React, { FC, useMemo } from 'react' +import { useSteerAccountPosition } from 'src/lib/wagmi/hooks/useSteer/useSteerAccountPosition' import { Amount, Token } from 'sushi/currency' import { formatUSD } from 'sushi/format' +import { useAccount } from 'wagmi' import { useTokenAmountDollarValues } from '../../../../lib/hooks' interface SteerPositionDetails { diff --git a/apps/evm/src/ui/pool/UnknownTokenAlert.tsx b/apps/evm/src/ui/pool/UnknownTokenAlert.tsx index a6a4893055..da4115678e 100644 --- a/apps/evm/src/ui/pool/UnknownTokenAlert.tsx +++ b/apps/evm/src/ui/pool/UnknownTokenAlert.tsx @@ -3,8 +3,8 @@ import { Pool } from '@sushiswap/client' import { useCustomTokens } from '@sushiswap/hooks' import { Message } from '@sushiswap/ui' -import { useTokenWithCache } from '@sushiswap/wagmi' import { FC, useMemo } from 'react' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { ChainId } from 'sushi/chain' import { shortenAddress } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 059819c2c4..6024267a33 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -11,7 +11,6 @@ import { classNames, } from '@sushiswap/ui' import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' -import { ConcentratedLiquidityPositionWithV3Pool } from '@sushiswap/wagmi' import { ColumnDef } from '@tanstack/react-table' import { formatDistance } from 'date-fns' import React, { FC, ReactNode } from 'react' @@ -41,6 +40,7 @@ import { import { PriceRangeCell } from './PriceRangeCell' import { RewardsV3ClaimableCell } from './RewardsV3ClaimableCell' import { RewardsV3NameCell } from './RewardsV3NameCell' +import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' export const REWARDS_V3_NAME_COLUMN: ColumnDef = { id: 'poolName', diff --git a/apps/evm/src/ui/stake/BarBalanceProvider.tsx b/apps/evm/src/ui/stake/BarBalanceProvider.tsx index e327864094..3a07522660 100644 --- a/apps/evm/src/ui/stake/BarBalanceProvider.tsx +++ b/apps/evm/src/ui/stake/BarBalanceProvider.tsx @@ -1,9 +1,10 @@ 'use client' -import { useAccount, useBalanceWeb3 } from '@sushiswap/wagmi' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' +import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' import { ChainId } from 'sushi/chain' import { Amount, SUSHI, Type, XSUSHI } from 'sushi/currency' +import { useAccount } from 'wagmi' interface BarBalanceContext { sushiBalance: Amount diff --git a/apps/evm/src/ui/stake/StakeSection.tsx b/apps/evm/src/ui/stake/StakeSection.tsx index 9593c5f1b8..2f45dda4b3 100644 --- a/apps/evm/src/ui/stake/StakeSection.tsx +++ b/apps/evm/src/ui/stake/StakeSection.tsx @@ -1,13 +1,14 @@ 'use client' import { Button, Dots } from '@sushiswap/ui' -import { Checker, useBarDeposit } from '@sushiswap/wagmi' +import { useMemo, useState } from 'react' +import { APPROVE_TAG_STAKE } from 'src/lib/constants' +import { useBarDeposit } from 'src/lib/wagmi/hooks/bar/useBarDeposit' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { CheckerProvider, useApproved, -} from '@sushiswap/wagmi/systems/Checker/Provider' -import { useMemo, useState } from 'react' -import { APPROVE_TAG_STAKE } from 'src/lib/constants' +} from 'src/lib/wagmi/systems/Checker/Provider' import { ChainId } from 'sushi/chain' import { SUSHI, XSUSHI_ADDRESS, tryParseAmount } from 'sushi/currency' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/ui/stake/StakeSectionWidget.tsx b/apps/evm/src/ui/stake/StakeSectionWidget.tsx index 16fa68fac2..492beaba57 100644 --- a/apps/evm/src/ui/stake/StakeSectionWidget.tsx +++ b/apps/evm/src/ui/stake/StakeSectionWidget.tsx @@ -8,8 +8,8 @@ import { WidgetHeader, WidgetTitle, } from '@sushiswap/ui' -import { Web3Input } from '@sushiswap/wagmi' import { ReactNode, useMemo } from 'react' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { ChainId } from 'sushi/chain' import { Amount, SUSHI, Type, XSUSHI } from 'sushi/currency' import { useSushiBar } from './SushiBarProvider' diff --git a/apps/evm/src/ui/stake/UnstakeSection.tsx b/apps/evm/src/ui/stake/UnstakeSection.tsx index 7d647d19e2..1a80bbc5aa 100644 --- a/apps/evm/src/ui/stake/UnstakeSection.tsx +++ b/apps/evm/src/ui/stake/UnstakeSection.tsx @@ -1,7 +1,8 @@ import { Button, Dots } from '@sushiswap/ui' -import { Checker, useBarWithdraw } from '@sushiswap/wagmi' -import { CheckerProvider } from '@sushiswap/wagmi/systems/Checker/Provider' import { useMemo, useState } from 'react' +import { useBarWithdraw } from 'src/lib/wagmi/hooks/bar/useBarWithdaw' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { ChainId } from 'sushi/chain' import { XSUSHI, tryParseAmount } from 'sushi/currency' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/ui/stake/UnstakeSectionWidget.tsx b/apps/evm/src/ui/stake/UnstakeSectionWidget.tsx index 5a412ed65d..2a0fed5e54 100644 --- a/apps/evm/src/ui/stake/UnstakeSectionWidget.tsx +++ b/apps/evm/src/ui/stake/UnstakeSectionWidget.tsx @@ -8,8 +8,8 @@ import { WidgetHeader, WidgetTitle, } from '@sushiswap/ui' -import { Web3Input } from '@sushiswap/wagmi' import { ReactNode, useMemo } from 'react' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { ChainId } from 'sushi/chain' import { Amount, SUSHI, Type, XSUSHI } from 'sushi/currency' import { useSushiBar } from './SushiBarProvider' diff --git a/apps/evm/src/ui/stake/VotingPowerProvider.tsx b/apps/evm/src/ui/stake/VotingPowerProvider.tsx index 503c027d53..6f00432ec5 100644 --- a/apps/evm/src/ui/stake/VotingPowerProvider.tsx +++ b/apps/evm/src/ui/stake/VotingPowerProvider.tsx @@ -1,14 +1,9 @@ 'use client' -import { - MASTERCHEF_ADDRESS, - useAccount, - useBalancesWeb3, - useReadContract, - useReadContracts, -} from '@sushiswap/wagmi' import { useQuery } from '@tanstack/react-query' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' +import { useBalancesWeb3 } from 'src/lib/wagmi/hooks/balances/useBalancesWeb3' +import { MASTERCHEF_ADDRESS } from 'src/lib/wagmi/hooks/master-chef/use-master-chef-contract' import { erc20Abi, masterChefV1Abi } from 'sushi/abi' import { ChainId } from 'sushi/chain' import { @@ -21,6 +16,7 @@ import { tryParseAmount, } from 'sushi/currency' import { Fraction } from 'sushi/math' +import { useAccount, useReadContract, useReadContracts } from 'wagmi' const SnapshotStrategies = [ { diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx index f0626fa76a..375cfb9dfe 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx @@ -15,8 +15,9 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Icon } from '@sushiswap/ui/components/currency/Icon' import { List } from '@sushiswap/ui/components/list' -import { TokenSecurityView, useTokenWithCache } from '@sushiswap/wagmi' import React, { useCallback, useMemo } from 'react' +import { TokenSecurityView } from 'src/lib/wagmi/components/token-security-view' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { Chain } from 'sushi/chain' import { defaultCurrency, diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token0-input.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token0-input.tsx index 3d76660f6c..8528bfa077 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token0-input.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token0-input.tsx @@ -8,9 +8,9 @@ import { NetworkSelector, SelectIcon, } from '@sushiswap/ui' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' import { Chain } from 'sushi/chain' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { SUSHIXSWAP_2_SUPPORTED_CHAIN_IDS, isWNativeSupported, diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx index 7476e6ba8d..a8f84c8ace 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx @@ -8,7 +8,6 @@ import { NetworkSelector, SelectIcon, } from '@sushiswap/ui' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' import { Chain } from 'sushi/chain' import { @@ -19,6 +18,7 @@ import { useCrossChainSwapTrade, useDerivedStateCrossChainSwap, } from './derivedstate-cross-chain-swap-provider' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const CrossChainSwapToken1Input = () => { const { diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx index 13553ca924..bfd6b901dd 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx @@ -2,7 +2,6 @@ import { DialogTrigger } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' -import { Checker } from '@sushiswap/wagmi/systems' import React, { FC, useEffect, useState } from 'react' import { APPROVE_TAG_XSWAP } from 'src/lib/constants' import { SUSHIXSWAP_2_ADDRESS, SushiXSwap2ChainId } from 'sushi/config' @@ -14,6 +13,7 @@ import { useDerivedStateCrossChainSwap, } from './derivedstate-cross-chain-swap-provider' import { useIsCrossChainSwapMaintenance } from './use-is-cross-chain-swap-maintenance' +import { Checker } from 'src/lib/wagmi/systems/Checker' export const CrossChainSwapTradeButton: FC = () => { const { data: maintenance } = useIsCrossChainSwapMaintenance() diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-review-dialog.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-review-dialog.tsx index 22959d993c..3065c387f2 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-review-dialog.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-review-dialog.tsx @@ -24,15 +24,6 @@ import { createInfoToast, createToast, } from '@sushiswap/ui/components/toast' -import { - getSushiXSwap2ContractConfig, - useAccount, - useBalanceWeb3Refetch, - usePublicClient, - useSimulateContract, - useTransaction, - useWriteContract, -} from '@sushiswap/wagmi' import { nanoid } from 'nanoid' import { log } from 'next-axiom' import React, { @@ -54,14 +45,23 @@ import { stringify, } from 'viem' -import { useApproved } from '@sushiswap/wagmi/systems/Checker/Provider' import { APPROVE_TAG_XSWAP } from 'src/lib/constants' import { SushiXSwap2Adapter } from 'src/lib/swap/useCrossChainTrade/SushiXSwap2' import { UseCrossChainTradeReturn } from 'src/lib/swap/useCrossChainTrade/types' import { useAxelarScanLink } from 'src/lib/swap/useCrossChainTrade/useAxelarScanLink' import { useLayerZeroScanLink } from 'src/lib/swap/useCrossChainTrade/useLayerZeroScanLink' import { warningSeverity } from 'src/lib/swap/warningSeverity' +import { useBalanceWeb3Refetch } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3Refetch' +import { getSushiXSwap2ContractConfig } from 'src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract' +import { useApproved } from 'src/lib/wagmi/systems/Checker/Provider' import { Native } from 'sushi/currency' +import { + useAccount, + useSimulateContract, + useTransaction, + useWriteContract, +} from 'wagmi' +import { usePublicClient } from 'wagmi' import { ConfirmationDialogContent, Divider, diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-stats.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-stats.tsx index 0d86c28f54..8b04b8d356 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-stats.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-stats.tsx @@ -10,8 +10,6 @@ import { import { Collapsible } from '@sushiswap/ui/components/animation/Collapsible' import { Explainer } from '@sushiswap/ui/components/explainer' import { SkeletonBox } from '@sushiswap/ui/components/skeleton' -import { useAccount } from '@sushiswap/wagmi' -import { AddressToEnsResolver } from '@sushiswap/wagmi/components/account/AddressToEnsResolver' import React, { FC } from 'react' import { Chain } from 'sushi/chain' import { Native } from 'sushi/currency' @@ -19,6 +17,8 @@ import { shortenAddress } from 'sushi/format' import { ZERO } from 'sushi/math' import { isAddress } from 'viem' +import { AddressToEnsResolver } from 'src/lib/wagmi/components/account/AddressToEnsResolver' +import { useAccount } from 'wagmi' import { warningSeverity, warningSeverityClassName, diff --git a/apps/evm/src/ui/swap/cross-chain/derivedstate-cross-chain-swap-provider.tsx b/apps/evm/src/ui/swap/cross-chain/derivedstate-cross-chain-swap-provider.tsx index b2eed39120..4d24525781 100644 --- a/apps/evm/src/ui/swap/cross-chain/derivedstate-cross-chain-swap-provider.tsx +++ b/apps/evm/src/ui/swap/cross-chain/derivedstate-cross-chain-swap-provider.tsx @@ -1,13 +1,7 @@ 'use client' import { useSlippageTolerance } from '@sushiswap/hooks' -import { - useAccount, - useChainId, - useConfig, - useTokenWithCache, - watchAccount, -} from '@sushiswap/wagmi' +import { watchAccount } from '@wagmi/core' import { nanoid } from 'nanoid' import { usePathname, useRouter, useSearchParams } from 'next/navigation' import { @@ -24,6 +18,7 @@ import { import { SushiXSwap2Adapter } from 'src/lib/swap/useCrossChainTrade/SushiXSwap2' import { useSquidCrossChainTrade } from 'src/lib/swap/useCrossChainTrade/useSquidCrossChainTrade' import { useStargateCrossChainTrade } from 'src/lib/swap/useCrossChainTrade/useStargateCrossChainTrade' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { ChainId } from 'sushi/chain' import { SquidAdapterChainId, @@ -37,6 +32,7 @@ import { defaultQuoteCurrency } from 'sushi/config' import { Amount, Native, Type, tryParseAmount } from 'sushi/currency' import { ZERO } from 'sushi/math' import { Address, isAddress } from 'viem' +import { useAccount, useChainId, useConfig } from 'wagmi' const getTokenAsString = (token: Type | string) => typeof token === 'string' diff --git a/apps/evm/src/ui/swap/defer-until-wallet-ready.tsx b/apps/evm/src/ui/swap/defer-until-wallet-ready.tsx index c56cb1e71a..1faf2c7611 100644 --- a/apps/evm/src/ui/swap/defer-until-wallet-ready.tsx +++ b/apps/evm/src/ui/swap/defer-until-wallet-ready.tsx @@ -2,8 +2,8 @@ import { useInterval } from '@sushiswap/hooks' import { Splash } from '@sushiswap/ui' -import { useAccount } from '@sushiswap/wagmi' import { FC, ReactNode, useState } from 'react' +import { useAccount } from 'wagmi' export const DeferUntilWalletReady: FC<{ children: ReactNode }> = ({ children, diff --git a/apps/evm/src/ui/swap/simple/derivedstate-simple-swap-provider.tsx b/apps/evm/src/ui/swap/simple/derivedstate-simple-swap-provider.tsx index 8e0714003a..32fd9e846c 100644 --- a/apps/evm/src/ui/swap/simple/derivedstate-simple-swap-provider.tsx +++ b/apps/evm/src/ui/swap/simple/derivedstate-simple-swap-provider.tsx @@ -2,15 +2,7 @@ import { useSlippageTolerance } from '@sushiswap/hooks' import { useTrade as useApiTrade } from '@sushiswap/react-query' -import { - useAccount, - useChainId, - useClientTrade, - useConfig, - useGasPrice, - useTokenWithCache, - watchChainId, -} from '@sushiswap/wagmi' +import { watchChainId } from '@wagmi/core' import { useLogger } from 'next-axiom' import { usePathname, useRouter, useSearchParams } from 'next/navigation' import { @@ -22,6 +14,8 @@ import { useMemo, useState, } from 'react' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' +import { useClientTrade } from 'src/lib/wagmi/hooks/trade/use-client-trade' import { ChainId, TestnetChainId } from 'sushi/chain' import { defaultCurrency, @@ -31,6 +25,7 @@ import { import { Amount, Native, Type, tryParseAmount } from 'sushi/currency' import { Percent, ZERO } from 'sushi/math' import { Address, isAddress } from 'viem' +import { useAccount, useChainId, useConfig, useGasPrice } from 'wagmi' import { isSupportedChainId, isSwapApiEnabledChainId } from '../../../config' import { useCarbonOffset } from '../../../lib/swap/useCarbonOffset' diff --git a/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx b/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx index 2235291718..1003d9e73c 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx @@ -1,8 +1,8 @@ import { ArrowUpRightIcon } from '@heroicons/react/24/outline' import { Button } from '@sushiswap/ui' -import { useAccount } from '@sushiswap/wagmi' import { FC } from 'react' import { ChainId } from 'sushi/chain' +import { useAccount } from 'wagmi' import { useDerivedStateSimpleSwap } from './derivedstate-simple-swap-provider' const ClaimSFuelButton = () => { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-token-not-found-dialog.tsx b/apps/evm/src/ui/swap/simple/simple-swap-token-not-found-dialog.tsx index 09144e17e6..0e386965c0 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-token-not-found-dialog.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-token-not-found-dialog.tsx @@ -13,7 +13,6 @@ import { List, Message, } from '@sushiswap/ui' -import { TokenSecurityView, useTokenWithCache } from '@sushiswap/wagmi' import React, { useCallback, useMemo } from 'react' import { Chain } from 'sushi/chain' import { @@ -24,6 +23,8 @@ import { import { Token } from 'sushi/currency' import { shortenAddress } from 'sushi/format' +import { TokenSecurityView } from 'src/lib/wagmi/components/token-security-view' +import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' import { useDerivedStateSimpleSwap } from './derivedstate-simple-swap-provider' export const SimpleSwapTokenNotFoundDialog = () => { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx b/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx index c037cd19e4..d85e9199b9 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx @@ -1,8 +1,8 @@ 'use client' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' import { isWNativeSupported } from 'sushi/config' import { useDerivedStateSimpleSwap } from './derivedstate-simple-swap-provider' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const SimpleSwapToken0Input = () => { const { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx b/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx index b6988ed388..4a3876fa1a 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx @@ -1,11 +1,11 @@ 'use client' -import { Web3Input } from '@sushiswap/wagmi/components/web3-input' import { isWNativeSupported } from 'sushi/config' import { useDerivedStateSimpleSwap, useSimpleSwapTrade, } from './derivedstate-simple-swap-provider' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const SimpleSwapToken1Input = () => { const { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx b/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx index 81526f4730..67c6327f1d 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx @@ -2,7 +2,6 @@ import { DialogTrigger } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components' -import { Checker } from '@sushiswap/wagmi/systems' import React, { FC, useEffect, useState } from 'react' import { ROUTE_PROCESSOR_4_ADDRESS, @@ -19,6 +18,7 @@ import { } from './derivedstate-simple-swap-provider' import { SimpleSwapTradeReviewDialog } from './simple-swap-trade-review-dialog' import { useIsSwapMaintenance } from './use-is-swap-maintenance' +import { Checker } from 'src/lib/wagmi/systems/Checker' export const SimpleSwapTradeButton: FC = () => { return ( diff --git a/apps/evm/src/ui/swap/simple/simple-swap-trade-review-dialog.tsx b/apps/evm/src/ui/swap/simple/simple-swap-trade-review-dialog.tsx index 85b7c65a77..0768422690 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-trade-review-dialog.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-trade-review-dialog.tsx @@ -19,15 +19,6 @@ import { createErrorToast, createToast, } from '@sushiswap/ui' -import { - SendTransactionReturnType, - useAccount, - useBalanceWeb3Refetch, - usePublicClient, - useWaitForTransactionReceipt, - useWriteContract, -} from '@sushiswap/wagmi' -import { useApproved } from '@sushiswap/wagmi/systems/Checker/Provider' import { log } from 'next-axiom' import React, { FC, @@ -38,12 +29,24 @@ import React, { useRef, } from 'react' import { useSimulateTrade } from 'src/lib/hooks/useSimulateTrade' +import { useBalanceWeb3Refetch } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3Refetch' +import { useApproved } from 'src/lib/wagmi/systems/Checker/Provider' import { Chain } from 'sushi/chain' import { Native } from 'sushi/currency' import { shortenAddress } from 'sushi/format' import { ZERO } from 'sushi/math' import { Bridge, LiquidityProviders } from 'sushi/router' -import { UserRejectedRequestError, stringify } from 'viem' +import { + SendTransactionReturnType, + UserRejectedRequestError, + stringify, +} from 'viem' +import { + useAccount, + usePublicClient, + useWaitForTransactionReceipt, + useWriteContract, +} from 'wagmi' import { APPROVE_TAG_SWAP } from '../../../lib/constants' import { warningSeverity, diff --git a/apps/evm/src/ui/swap/simple/simple-swap-trade-stats.tsx b/apps/evm/src/ui/swap/simple/simple-swap-trade-stats.tsx index 8ebdcf9d44..d2532a2741 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-trade-stats.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-trade-stats.tsx @@ -1,14 +1,14 @@ 'use client' import { Collapsible, Explainer, SkeletonBox, classNames } from '@sushiswap/ui' -import { useAccount } from '@sushiswap/wagmi' -import { AddressToEnsResolver } from '@sushiswap/wagmi/components/account/AddressToEnsResolver' import React, { FC } from 'react' +import { AddressToEnsResolver } from 'src/lib/wagmi/components/account/AddressToEnsResolver' import { Chain } from 'sushi/chain' import { Native } from 'sushi/currency' import { shortenAddress } from 'sushi/format' import { ZERO } from 'sushi/math' import { Address, isAddress } from 'viem' +import { useAccount } from 'wagmi' import { warningSeverity, warningSeverityClassName, diff --git a/packages/react-query/src/hooks/tokens/useToken.ts b/packages/react-query/src/hooks/tokens/useToken.ts index 203f310862..38e218b8f2 100644 --- a/packages/react-query/src/hooks/tokens/useToken.ts +++ b/packages/react-query/src/hooks/tokens/useToken.ts @@ -54,7 +54,7 @@ const hydrate = ( } /** - * @deprecated use @sushiswap/wagmi/useTokenWithCache + * @deprecated use lib/wagmi/useTokenWithCache */ export const useToken = ({ chainId, diff --git a/packages/wagmi/.eslintrc.cjs b/packages/wagmi/.eslintrc.cjs deleted file mode 100644 index 937b321159..0000000000 --- a/packages/wagmi/.eslintrc.cjs +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - extends: ['sushi/react'], -} diff --git a/packages/wagmi/README.md b/packages/wagmi/README.md deleted file mode 100644 index 9a0ae75a70..0000000000 --- a/packages/wagmi/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Wagmi - -... diff --git a/packages/wagmi/package.json b/packages/wagmi/package.json deleted file mode 100644 index 075291f1f0..0000000000 --- a/packages/wagmi/package.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "name": "@sushiswap/wagmi", - "version": "0.0.0", - "private": true, - "description": "Sushi Wagmi", - "keywords": [ - "sushi", - "wagmi" - ], - "license": "MIT", - "author": "Matthew Lilley ", - "sideEffects": true, - "type": "module", - "exports": { - ".": "./src/index.ts", - "./*": [ - "./src/*.ts", - "./src/*.tsx", - "./src/*/index.ts", - "./src/*/index.tsx" - ], - "./future/*": [ - "./src/future/*.ts", - "./src/future/*.tsx", - "./src/future/*/index.ts", - "./src/future/*/index.tsx" - ], - "./configure": [ - "./src/configure.ts" - ] - }, - "typesVersions": { - "*": { - "*": [ - "src/*", - "src/*/index", - "src/future/*", - "src/future/*/index" - ] - } - }, - "files": [ - "src" - ], - "scripts": { - "check": "tsc --pretty --noEmit", - "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist" - }, - "dependencies": { - "@headlessui/react": "1.7.7", - "@heroicons/react": "2.0.13", - "@radix-ui/react-slot": "1.0.2", - "@sushiswap/bonds-sdk": "workspace:*", - "@sushiswap/client": "workspace:*", - "@sushiswap/dexie": "workspace:*", - "@sushiswap/graph-config": "workspace:*", - "@sushiswap/hooks": "workspace:*", - "@sushiswap/react-query": "workspace:*", - "@sushiswap/steer-sdk": "workspace:*", - "@sushiswap/ui": "workspace:*", - "@sushiswap/wagmi-config": "workspace:*", - "@tanstack/react-query": "4.28.0", - "@tanstack/react-query-persist-client": "4.28.0", - "@uniswap/v2-core": "1.0.1", - "@uniswap/v3-periphery": "1.4.1", - "next-themes": "0.2.1", - "sushi": "workspace:*", - "zod": "3.21.4" - }, - "devDependencies": { - "@sentry/nextjs": "7.110.0", - "@sushiswap/jest-config": "workspace:*", - "@sushiswap/typescript-config": "workspace:*", - "@types/jest": "29.5.5", - "@types/react": "18.2.14", - "@types/react-dom": "18.2.6", - "@wagmi/core": "2.10.2", - "eslint-config-sushi": "workspace:*", - "next": "14.1.1", - "react": "18.2.0", - "react-dom": "18.2.0", - "typescript": "5.2.2", - "viem": "2.10.11", - "wagmi": "2.9.2" - }, - "peerDependencies": { - "@sentry/nextjs": "7.101.1", - "@wagmi/core": "2.10.2", - "next": "14.1.1", - "react": "18.2.0", - "react-dom": "18.2.0", - "viem": "2.10.11", - "wagmi": "2.9.2" - }, - "peerDependenciesMeta": { - "@sentry/nextjs": { - "optional": true - }, - "@wagmi/core": { - "optional": false - }, - "next": { - "optional": true - }, - "react": { - "optional": true - }, - "react-dom": { - "optional": true - }, - "viem": { - "optional": false - }, - "wagmi": { - "optional": false - } - }, - "optionalDependencies": { - "next": "14.1.1" - } -} diff --git a/packages/wagmi/src/actions/account/index.ts b/packages/wagmi/src/actions/account/index.ts deleted file mode 100644 index ed6fa36b25..0000000000 --- a/packages/wagmi/src/actions/account/index.ts +++ /dev/null @@ -1 +0,0 @@ -export { fetchBalances } from './fetchBalances' diff --git a/packages/wagmi/src/actions/index.ts b/packages/wagmi/src/actions/index.ts deleted file mode 100644 index 0565e7e561..0000000000 --- a/packages/wagmi/src/actions/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './account' - -export * from 'wagmi/actions' diff --git a/packages/wagmi/src/components/index.ts b/packages/wagmi/src/components/index.ts deleted file mode 100644 index dcf07ae0ef..0000000000 --- a/packages/wagmi/src/components/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -export * from './connect-button' -export * from './network-check' -export * from './sanctioned-address-dialog' -export * from './token-security-view' -export * from './user-profile' -export * from './wagmi-store-version-check' -export * from './wagmi-header-components' -export * from './web3-input' diff --git a/packages/wagmi/src/contracts/actions/index.ts b/packages/wagmi/src/contracts/actions/index.ts deleted file mode 100644 index 57b7854a2e..0000000000 --- a/packages/wagmi/src/contracts/actions/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './getTridentConstantPoolFactoryContract' -export * from './getTridentStablePoolFactoryContract' diff --git a/packages/wagmi/src/contracts/hooks/index.ts b/packages/wagmi/src/contracts/hooks/index.ts deleted file mode 100644 index e970cde3bd..0000000000 --- a/packages/wagmi/src/contracts/hooks/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useTridentContantPoolFactoryContract' -export * from './useTridentStablePoolFactoryContract' diff --git a/packages/wagmi/src/contracts/index.ts b/packages/wagmi/src/contracts/index.ts deleted file mode 100644 index 922c440d12..0000000000 --- a/packages/wagmi/src/contracts/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './actions' -export * from './hooks' diff --git a/packages/wagmi/src/hooks/approvals/actions/index.ts b/packages/wagmi/src/hooks/approvals/actions/index.ts deleted file mode 100644 index 9104c1cf44..0000000000 --- a/packages/wagmi/src/hooks/approvals/actions/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './getTokenAllowance' diff --git a/packages/wagmi/src/hooks/approvals/hooks/index.ts b/packages/wagmi/src/hooks/approvals/hooks/index.ts deleted file mode 100644 index 6d68b529e1..0000000000 --- a/packages/wagmi/src/hooks/approvals/hooks/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './useTokenAllowance' -export * from './useTokenApproval' -export * from './useTokenPermit' -export * from './useTokenRevokeApproval' diff --git a/packages/wagmi/src/hooks/approvals/index.ts b/packages/wagmi/src/hooks/approvals/index.ts deleted file mode 100644 index 922c440d12..0000000000 --- a/packages/wagmi/src/hooks/approvals/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './actions' -export * from './hooks' diff --git a/packages/wagmi/src/hooks/balances/index.ts b/packages/wagmi/src/hooks/balances/index.ts deleted file mode 100644 index 986d3bdf9a..0000000000 --- a/packages/wagmi/src/hooks/balances/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './useBalancesWeb3' -export * from './useBalanceWeb3' -export * from './useBalanceWeb3Refetch' diff --git a/packages/wagmi/src/hooks/bar/index.ts b/packages/wagmi/src/hooks/bar/index.ts deleted file mode 100644 index 5e413f59ff..0000000000 --- a/packages/wagmi/src/hooks/bar/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useBarDeposit' -export * from './useBarWithdaw' diff --git a/packages/wagmi/src/hooks/bentobox/actions/index.ts b/packages/wagmi/src/hooks/bentobox/actions/index.ts deleted file mode 100644 index 3129329e0d..0000000000 --- a/packages/wagmi/src/hooks/bentobox/actions/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './getBentoboxTotals' -export * from './getBentoboxTotal' diff --git a/packages/wagmi/src/hooks/bentobox/hooks/index.ts b/packages/wagmi/src/hooks/bentobox/hooks/index.ts deleted file mode 100644 index f38207b37c..0000000000 --- a/packages/wagmi/src/hooks/bentobox/hooks/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useBentoBoxTotals' -export * from './useBentoBoxApproval' diff --git a/packages/wagmi/src/hooks/bentobox/index.ts b/packages/wagmi/src/hooks/bentobox/index.ts deleted file mode 100644 index 922c440d12..0000000000 --- a/packages/wagmi/src/hooks/bentobox/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './actions' -export * from './hooks' diff --git a/packages/wagmi/src/hooks/block/index.ts b/packages/wagmi/src/hooks/block/index.ts deleted file mode 100644 index c7db4f513c..0000000000 --- a/packages/wagmi/src/hooks/block/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './useCurrentBlockTimestamp' diff --git a/packages/wagmi/src/hooks/bonds/index.ts b/packages/wagmi/src/hooks/bonds/index.ts deleted file mode 100644 index c5f0dc0e6a..0000000000 --- a/packages/wagmi/src/hooks/bonds/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './useDiscount' -export * from './useMarketPrice' -export * from './useMarketDetails' diff --git a/packages/wagmi/src/hooks/contracts/index.ts b/packages/wagmi/src/hooks/contracts/index.ts deleted file mode 100644 index cd4df828d2..0000000000 --- a/packages/wagmi/src/hooks/contracts/index.ts +++ /dev/null @@ -1,10 +0,0 @@ -export * from './useBentoBoxContract' -export * from './useMulticall3Contract' -export * from './useMulticallContract' -export * from './useSushiSwapRouter' -export * from './useSushiXSwapContract' -export * from './useSushiXSwap2Contract' -export * from './useTridentRouter' -export * from './useV3FactoryContract' -export * from './useV3NonFungiblePositionManager' -export * from './useV3TickLens' diff --git a/packages/wagmi/src/hooks/currency/index.ts b/packages/wagmi/src/hooks/currency/index.ts deleted file mode 100644 index 0ee79a8a1d..0000000000 --- a/packages/wagmi/src/hooks/currency/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useCurrencyCombinations' -export * from './useNativeCurrency' diff --git a/packages/wagmi/src/hooks/exploits/hooks/index.ts b/packages/wagmi/src/hooks/exploits/hooks/index.ts deleted file mode 100644 index 06d6daf400..0000000000 --- a/packages/wagmi/src/hooks/exploits/hooks/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './useRP2ExploitCheck' -export * from './useRP2ExploitClaim' -export * from './useRP2ExploitClaimFinder' -export * from './useRP2ExploitIsClaimed' diff --git a/packages/wagmi/src/hooks/exploits/index.ts b/packages/wagmi/src/hooks/exploits/index.ts deleted file mode 100644 index e69ea129ad..0000000000 --- a/packages/wagmi/src/hooks/exploits/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './hooks' -export * from './types' -export * from './constants' diff --git a/packages/wagmi/src/hooks/index.ts b/packages/wagmi/src/hooks/index.ts deleted file mode 100644 index d3c2d26b7d..0000000000 --- a/packages/wagmi/src/hooks/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -'use client' - -export * from './approvals' -export * from './balances' -export * from './bar' -export * from './bentobox' -export * from './bonds' -export * from './block' -export * from './contracts' -export * from './currency' -export * from './exploits' -export * from './master-chef' -export * from './pools' -export * from './positions' -export * from './rewards' -export * from './tokens' -export * from './trade' -export * from './useSteer' -export * from './utils' -export * from './wallet' -export * from './migrate' -export * from './watch' diff --git a/packages/wagmi/src/hooks/master-chef/index.ts b/packages/wagmi/src/hooks/master-chef/index.ts deleted file mode 100644 index 715c4b1f33..0000000000 --- a/packages/wagmi/src/hooks/master-chef/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from './use-farm-rewards' -export * from './use-master-chef-contract' -export * from './use-master-chef-deposit' -export * from './use-master-chef-withdraw' -export * from './use-master-chef' -export * from './use-rewarder' diff --git a/packages/wagmi/src/hooks/migrate/hooks/index.ts b/packages/wagmi/src/hooks/migrate/hooks/index.ts deleted file mode 100644 index adea265a59..0000000000 --- a/packages/wagmi/src/hooks/migrate/hooks/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './useV3Migrate' diff --git a/packages/wagmi/src/hooks/migrate/index.ts b/packages/wagmi/src/hooks/migrate/index.ts deleted file mode 100644 index 14db940aa8..0000000000 --- a/packages/wagmi/src/hooks/migrate/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './constants' -export * from './hooks' -export * from './types' diff --git a/packages/wagmi/src/hooks/pools/actions/index.ts b/packages/wagmi/src/hooks/pools/actions/index.ts deleted file mode 100644 index b1e0468e9d..0000000000 --- a/packages/wagmi/src/hooks/pools/actions/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export * from './getAllPools' -export * from './getConcentratedLiquidityPool' -export * from './getConcentratedLiquidityPoolReserves' -export * from './getSushiSwapV2Pools' -export * from './getTridentConstantPools' -export * from './getTridentStablePools' diff --git a/packages/wagmi/src/hooks/pools/hooks/index.ts b/packages/wagmi/src/hooks/pools/hooks/index.ts deleted file mode 100644 index 941552cbb7..0000000000 --- a/packages/wagmi/src/hooks/pools/hooks/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -export * from './usePools' -export * from './usePoolsCodeMap' -export * from './usePoolsAsMap' -export * from './useConcentratedLiquidityPool' -export * from './useConcentratedLiquidityPoolReserves' -export * from './useSushiSwapV2Pools' -export * from './useTridentConstantPoolFactoryContract' -export * from './useTridentConstantPools' -export * from './useTridentStablePoolFactoryContract' -export * from './useTridentStablePools' -export * from './useTridentStablePools' diff --git a/packages/wagmi/src/hooks/pools/index.ts b/packages/wagmi/src/hooks/pools/index.ts deleted file mode 100644 index a083a3004f..0000000000 --- a/packages/wagmi/src/hooks/pools/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './actions' -export * from './types' -export * from './hooks' diff --git a/packages/wagmi/src/hooks/positions/actions/index.ts b/packages/wagmi/src/hooks/positions/actions/index.ts deleted file mode 100644 index 2243bdde45..0000000000 --- a/packages/wagmi/src/hooks/positions/actions/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './getConcentratedLiquidityPositions' -export * from './getConcentratedLiquidityPositionsFromTokenIds' -export * from './getConcentratedLiquidityPositionFees' diff --git a/packages/wagmi/src/hooks/positions/hooks/index.ts b/packages/wagmi/src/hooks/positions/hooks/index.ts deleted file mode 100644 index 044f65dfae..0000000000 --- a/packages/wagmi/src/hooks/positions/hooks/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './useConcentratedLiquidityPositions' -export * from './useConcentratedPositionInfo' -export * from './useConcentratedPositionOwner' -export * from './useConcentratedPositionsFromTokenId' -export * from './useConcentratedPositionsFromTokenIds' diff --git a/packages/wagmi/src/hooks/positions/index.ts b/packages/wagmi/src/hooks/positions/index.ts deleted file mode 100644 index 39ca6e507f..0000000000 --- a/packages/wagmi/src/hooks/positions/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './actions' -export * from './hooks' -export * from './types' diff --git a/packages/wagmi/src/hooks/rewards/hooks/index.ts b/packages/wagmi/src/hooks/rewards/hooks/index.ts deleted file mode 100644 index 12fd001753..0000000000 --- a/packages/wagmi/src/hooks/rewards/hooks/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './useAcceptAngleConditions' -export * from './useHarvestAngleRewards' -export * from './useIncentivizePoolWithRewards' diff --git a/packages/wagmi/src/hooks/rewards/index.ts b/packages/wagmi/src/hooks/rewards/index.ts deleted file mode 100644 index 458dd2282b..0000000000 --- a/packages/wagmi/src/hooks/rewards/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './hooks' -export * from './abis' diff --git a/packages/wagmi/src/hooks/tokens/index.ts b/packages/wagmi/src/hooks/tokens/index.ts deleted file mode 100644 index 28071f7435..0000000000 --- a/packages/wagmi/src/hooks/tokens/index.ts +++ /dev/null @@ -1,4 +0,0 @@ -export * from './useSortedTokensByQuery' -export * from './useTotalSupply' -export * from './useTokens' -export * from './useTokenWithCache' diff --git a/packages/wagmi/src/hooks/trade/index.ts b/packages/wagmi/src/hooks/trade/index.ts deleted file mode 100644 index 3496008884..0000000000 --- a/packages/wagmi/src/hooks/trade/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './use-client-trade' diff --git a/packages/wagmi/src/hooks/useSteer/index.ts b/packages/wagmi/src/hooks/useSteer/index.ts deleted file mode 100644 index 84455e8a37..0000000000 --- a/packages/wagmi/src/hooks/useSteer/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export * from './useSteerAccountPosition' -export * from './useSteerVaultReserves' -export * from './useSteerAccountPositionsExtended' diff --git a/packages/wagmi/src/hooks/utils/hooks/index.ts b/packages/wagmi/src/hooks/utils/hooks/index.ts deleted file mode 100644 index 0895e1ceda..0000000000 --- a/packages/wagmi/src/hooks/utils/hooks/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './useTransactionDeadline' diff --git a/packages/wagmi/src/hooks/utils/index.ts b/packages/wagmi/src/hooks/utils/index.ts deleted file mode 100644 index fc78d35129..0000000000 --- a/packages/wagmi/src/hooks/utils/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './hooks' diff --git a/packages/wagmi/src/hooks/wallet/index.ts b/packages/wagmi/src/hooks/wallet/index.ts deleted file mode 100644 index bd7aeccd83..0000000000 --- a/packages/wagmi/src/hooks/wallet/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useConnect' -export * from './useWalletState' diff --git a/packages/wagmi/src/hooks/watch/index.ts b/packages/wagmi/src/hooks/watch/index.ts deleted file mode 100644 index 6d538fd684..0000000000 --- a/packages/wagmi/src/hooks/watch/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './useWatchByBlock' -export * from './useWatchByInterval' diff --git a/packages/wagmi/src/index.ts b/packages/wagmi/src/index.ts deleted file mode 100644 index 07738fa9ae..0000000000 --- a/packages/wagmi/src/index.ts +++ /dev/null @@ -1,27 +0,0 @@ -'use client' - -import { PublicWagmiConfig } from '@sushiswap/wagmi-config' - -// Export actions -export * from './actions' - -// Export hooks -export * from './hooks' - -// Export systems -export * from './systems' - -// Export components -export * from './components' - -// Re-export wagmi -export * from 'wagmi' - -// Re-export useConnect to avoid ambiguity -export { useConnect } from './hooks' - -declare module 'wagmi' { - interface Register { - config: PublicWagmiConfig - } -} diff --git a/packages/wagmi/src/systems/PoolFinder/index.ts b/packages/wagmi/src/systems/PoolFinder/index.ts deleted file mode 100644 index 4699a474c0..0000000000 --- a/packages/wagmi/src/systems/PoolFinder/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './PoolFinder' -export * from './types' diff --git a/packages/wagmi/src/systems/index.ts b/packages/wagmi/src/systems/index.ts deleted file mode 100644 index 6951d12b9a..0000000000 --- a/packages/wagmi/src/systems/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './Checker' -export * from './PoolFinder' diff --git a/packages/wagmi/tsconfig.json b/packages/wagmi/tsconfig.json deleted file mode 100644 index 80d48d0040..0000000000 --- a/packages/wagmi/tsconfig.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "extends": "@sushiswap/typescript-config/react-library.json", - "include": [ - "src" - ], - "exclude": [ - "dist", - "node_modules", - ".turbo" - ], - "compilerOptions": { - "rootDir": "./src", - "outDir": "./dist", - "declaration": false, - "declarationMap": false, - "sourceMap": false, - "lib": ["ES2022"], - "target": "ESNext" - } -} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 704fbb9d21..849258f7fb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -726,9 +726,6 @@ importers: '@sushiswap/ui': specifier: workspace:* version: link:../../packages/ui - '@sushiswap/wagmi': - specifier: workspace:* - version: link:../../packages/wagmi '@sushiswap/wagmi-config': specifier: workspace:* version: link:../../config/wagmi From f93c93dae7d79b73f5340c2ff7bf95d6ebf3e94b Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 22 May 2024 23:32:48 +0200 Subject: [PATCH 009/119] refactor: graphclient, remove trident, enable v3 and update positions --- apps/evm/src/ui/pool/PoolPageV3.tsx | 1 + apps/evm/src/ui/pool/PositionsTab.tsx | 32 ----- config/graph/src/index.ts | 24 ++-- .../queries/liquidity-positions.graphql | 2 +- .../graph-client/queries/sushiswap-v3.graphql | 40 ++++++ .../resolvers/bundles/bundlesByChainIds.ts | 2 +- .../resolvers/depreciated/crossChainToken.ts | 2 +- .../liquidityPositionsByChainIds.ts | 42 +------ .../graph-client/resolvers/pairs/pairById.ts | 118 ++++++++---------- .../resolvers/pairs/pairsByChainIds.ts | 40 +----- .../resolvers/tokens/tokensByChainIds.ts | 47 +------ .../resolvers/user/crossChainUserPositions.ts | 4 +- .../transformers/transformPair.ts | 12 +- 13 files changed, 132 insertions(+), 234 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolPageV3.tsx b/apps/evm/src/ui/pool/PoolPageV3.tsx index b085529761..bb6a5c6ea5 100644 --- a/apps/evm/src/ui/pool/PoolPageV3.tsx +++ b/apps/evm/src/ui/pool/PoolPageV3.tsx @@ -67,6 +67,7 @@ const Pool: FC<{ pool: Awaited> }> = ({ pool }) => { chainId, }) const fiatValues = useTokenAmountDollarValues({ chainId, amounts: reserves }) + console.log({reserves, fiatValues}) return ( diff --git a/apps/evm/src/ui/pool/PositionsTab.tsx b/apps/evm/src/ui/pool/PositionsTab.tsx index 4a79cf963a..1817b77662 100644 --- a/apps/evm/src/ui/pool/PositionsTab.tsx +++ b/apps/evm/src/ui/pool/PositionsTab.tsx @@ -41,26 +41,6 @@ const ITEMS: { id: string; value: string; children: React.ReactNode }[] = [ ), }, - { - id: 'trident-stable', - value: 'stable', - children: ( -
- 🍱 - Trident Stable -
- ), - }, - { - id: 'trident-classic', - value: 'classic', - children: ( -
- 🍱 - Trident Classic -
- ), - }, { id: 'sushiswap-smart', value: 'smart', @@ -115,18 +95,6 @@ export const PositionsTab = () => { rowLink={(row) => `/pool/${row.pool.id}`} /> - - `/pool/${row.pool.id}`} - /> - - - `/pool/${row.pool.id}`} - /> - diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 60ee0e32e4..3e84f9aa66 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -364,25 +364,25 @@ export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/6MMVBsG9hgS8BzLZfPnU8KJdGiEFbd3CyNXVG6gQKCdQ`, [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/DuB755c1VYFSLLhq4b783ryPcvYdsvimGuZzBpFqoapX`, [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/3k9M7aZqeJXWLUogc2FSFBgXuxej2qstKSUNBXcPCcK5`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-arbitrum-nova/gn`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-arbitrum-nova/gn`, [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/4KvWjKY89DefJ6mPMASCTUDAZ6dyHSu7osCNQqaaaY3y`, [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/9cssJAh4EyzEWqZySBFguiXyygwZZAGBE3ETsGetNUK`, [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/8obLTNcEuGMieUt6jmrDaQUhWyj2pys26ULeP3gFiGNv`, - [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-boba-bnb/gn`, + [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-boba-bnb/gn`, [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/7pXNLCc12pRM3bBPUAP9ZoEvkgUCjaBe9QC3DV9L2qzE`, [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/CiW3nquNZjKDoMfR4TbSpB4ox8Pq66FDxwSsohigSdxw`, - [ChainId.KAVA]: `${KAVA_HOST}/sushi-v2/sushiswap-kava`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/sushiswap-metis`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/sushiswap-bttc/gn`, - [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/sushiswap-filecoin`, - [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/sushiswap-zetachain/1.0.0/gn`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/sushiswap-thundercore`, - [ChainId.CORE]: `${CORE_HOST}/sushi-v2/sushiswap-core`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/sushiswap-haqq`, + [ChainId.KAVA]: `${DECENTRALIZED_NETWORK_HOST}/sushi-v2/v2-kava/gn`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v2-metis`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-bttc/gn`, + [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/v2-filecoin`, + [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/v2-zetachain/1.0.0/gn`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/v2-thundercore`, + [ChainId.CORE]: `${CORE_HOST}/sushi-v2/v2-core`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v2-haqq`, [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/G4sRz1YAcEFYFewGLQ9bt76gQuP1oyuzhVSTvs9bj7qn`, [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, - [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-blast/gn`, - [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, + [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-blast/gn`, + [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v2-skale-europa`, } as const export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { diff --git a/packages/graph-client/queries/liquidity-positions.graphql b/packages/graph-client/queries/liquidity-positions.graphql index 3e8c112fd5..76a4fdae4c 100644 --- a/packages/graph-client/queries/liquidity-positions.graphql +++ b/packages/graph-client/queries/liquidity-positions.graphql @@ -1,7 +1,7 @@ fragment LiquidityPositionFields on LiquidityPosition { id chainId - balance: liquidityTokenBalance + liquidityTokenBalance user { ...UserFields } diff --git a/packages/graph-client/queries/sushiswap-v3.graphql b/packages/graph-client/queries/sushiswap-v3.graphql index 8361aec335..37d5ec8e43 100644 --- a/packages/graph-client/queries/sushiswap-v3.graphql +++ b/packages/graph-client/queries/sushiswap-v3.graphql @@ -106,6 +106,46 @@ query SushiSwapV3Pool( createdAtTimestamp createdAtBlockNumber + } +} + +query SushiSwapV3PoolWithBuckets( + $id: ID! + $block: SUSHISWAP_V3_Block_height, + $subgraphError: _SubgraphErrorPolicy_! = deny +) { + pool: SUSHISWAP_V3_pool( + id: $id, + block: $block, + subgraphError: $subgraphError + ) { + id + token0 { + id + symbol + name + decimals + } + token1 { + id + symbol + name + decimals + } + feeTier + liquidity + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + totalValueLockedToken0 + totalValueLockedToken1 + totalValueLockedETH + totalValueLockedUSD + + createdAtTimestamp + createdAtBlockNumber poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) { id diff --git a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts index 559edc1688..4907b2b396 100644 --- a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts +++ b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts @@ -44,7 +44,7 @@ export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( SUSHISWAP_ENABLED_NETWORKS.includes(el), ) .map((chainId) => - context.SushiSwap.Query.bundles({ + context.SushiSwapV2.Query.bundles({ root, args, context: { diff --git a/packages/graph-client/resolvers/depreciated/crossChainToken.ts b/packages/graph-client/resolvers/depreciated/crossChainToken.ts index cc26399469..6928c49b82 100644 --- a/packages/graph-client/resolvers/depreciated/crossChainToken.ts +++ b/packages/graph-client/resolvers/depreciated/crossChainToken.ts @@ -22,7 +22,7 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( ) const token: Token = SUSHISWAP_ENABLED_NETWORKS.includes(args.chainId) - ? await context.SushiSwap.Query.token({ + ? await context.SushiSwapV2.Query.token({ root, args, context: { diff --git a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts index 416f273eb3..25d15e9723 100644 --- a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts +++ b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts @@ -1,9 +1,7 @@ // @ts-nocheck import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, - TRIDENT_ENABLED_NETWORKS, - TRIDENT_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { isPromiseFulfilled } from 'sushi/validate' @@ -14,8 +12,8 @@ import { QueryliquidityPositionsByChainIdsArgs, RequireFields, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' + export const _liquidityPositionsByChainIds = async ( root = {}, @@ -23,7 +21,7 @@ export const _liquidityPositionsByChainIds = async ( QueryliquidityPositionsByChainIdsArgs, 'skip' | 'first' | 'chainIds' >, - context: SushiSwapTypes.Context & TridentTypes.Context, + context: SushiSwapV2Types.Context, info: GraphQLResolveInfo, ) => { const liquidityPositions = await Promise.allSettled< @@ -34,7 +32,7 @@ export const _liquidityPositionsByChainIds = async ( SUSHISWAP_ENABLED_NETWORKS.includes(el), ) .map((chainId) => - context.SushiSwap.Query.liquidityPositions({ + context.SushiSwapV2.Query.liquidityPositions({ root, args, context: { @@ -43,7 +41,7 @@ export const _liquidityPositionsByChainIds = async ( url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, - }).then((liquidityPositions: SushiSwapTypes.LiquidityPosition[]) => { + }).then((liquidityPositions: SushiSwapV2Types.LiquidityPosition[]) => { if (!Array.isArray(liquidityPositions)) { console.error( `SushiSwap liquidityPositions query failed on ${chainId}`, @@ -57,34 +55,6 @@ export const _liquidityPositionsByChainIds = async ( })) }), ), - ...args.chainIds - .filter((el): el is (typeof TRIDENT_ENABLED_NETWORKS)[number] => - TRIDENT_ENABLED_NETWORKS.includes(el), - ) - .map((chainId) => - context.Trident.Query.liquidityPositions({ - root, - args, - context: { - ...context, - chainId, - url: TRIDENT_SUBGRAPH_URL[chainId], - }, - info, - }).then((liquidityPositions: TridentTypes.LiquidityPosition[]) => { - if (!Array.isArray(liquidityPositions)) { - console.error( - `Trident liquidityPositions query failed on ${chainId}`, - liquidityPositions, - ) - return [] - } - return liquidityPositions.map((liquidityPosition) => ({ - ...liquidityPosition, - chainId, - })) - }), - ), ]).then((promiseSettledResults) => { if (!Array.isArray(promiseSettledResults)) { console.error('crossChainLiquidityPositions query failed') diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index 8075314ca5..2c3316a0f9 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -18,6 +18,7 @@ import { import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' import { transformPair } from '../../transformers/index.js' +import { is } from 'date-fns/locale' const sdk = getBuiltGraphSDK() @@ -62,27 +63,27 @@ const transformV3PoolToPair = ( txCount: pool.txCount, apr: 0, aprUpdatedAtTimestamp: 0, + totalSupply: pool.liquidity, + reserveETH: pool.totalValueLockedETH, + reserveUSD: pool.totalValueLockedUSD, createdAtTimestamp: pool.createdAtTimestamp, createdAtBlockNumber: pool.createdAtBlockNumber, - - // TODO: fix this, they should be fetched separately to avoid getting result in each time travel query. - - // hourSnapshots: pool.poolHourData.map((hourData) => ({ - // id: hourData.id, - // date: hourData.periodStartUnix, - // volumeUSD: hourData.volumeUSD, - // liquidityNative: 0, - // liquidityUSD: hourData.tvlUSD, - // transactionCount: hourData.txCount, - // })), - // daySnapshots: pool.poolDayData.map((dayData) => ({ - // id: dayData.id, - // date: dayData.date, - // volumeUSD: dayData.volumeUSD, - // liquidityNative: 0, - // liquidityUSD: dayData.tvlUSD, - // transactionCount: dayData.txCount, - // })), + hourSnapshots: pool.poolHourData.map((hourData) => ({ + id: hourData.id, + date: hourData.periodStartUnix, + volumeUSD: hourData.volumeUSD, + liquidityNative: 0, + liquidityUSD: hourData.tvlUSD, + transactionCount: hourData.txCount, + })), + daySnapshots: pool.poolDayData.map((dayData) => ({ + id: dayData.id, + date: dayData.date, + volumeUSD: dayData.volumeUSD, + liquidityNative: 0, + liquidityUSD: dayData.tvlUSD, + transactionCount: dayData.txCount, + })), }) export const pairById: QueryResolvers['pairById'] = async ( @@ -219,32 +220,30 @@ export const pairById: QueryResolvers['pairById'] = async ( ], }) - const { pool } = await sdk.SushiSwapV3Pool({ - id: address.toLowerCase(), - block: block ? { number: Number(block.number) } : null, - }) + const { pool } = block + ? await sdk.SushiSwapV3Pool({ + id: address.toLowerCase(), + block: { number: Number(block.number) }, + }) + : await sdk.SushiSwapV3PoolWithBuckets({ + id: address.toLowerCase(), + }) return transformV3PoolToPair(pool, chainId) } - // const fetchIsV2Pool = async() => - // context.SushiSwapV2.Query.PairOnlyId({ - // root, - // args: { ...args, id: address.toLowerCase() }, - // context: { - // ...context, - // now, - // chainId, - // chainName: chainName[chainId], - // chainShortName: chainShortName[chainId], - // url: SUSHISWAP_V2_SUBGRAPH_URL[ - // chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - // ], - // }, - // info, - // }).then((pair: SushiSwapV2Types.Pair | null) => { - // return (pair?.id !== null) - // }) + const fetchIsV2Pool = async () => { + const sdk = getBuiltGraphSDK({ + url: SUSHISWAP_V2_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], + }) + + const { pair } = await sdk.PairOnlyId({ + id: address.toLowerCase(), + }) + return pair && pair.id ? true : false + } const poolFetcher = async (isV2: boolean, block?: { number: number }) => { const fetches: ReturnType[] = [] @@ -267,44 +266,37 @@ export const pairById: QueryResolvers['pairById'] = async ( } const bucketFetcher = async (isV2: boolean) => { - // const fetches: ReturnType[] = [] - if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { - // fetches.push(fetchV2DayHourBuckets()) - // fetches.push(fetchV2DayBuckets()) - const [ hourSnapshots, daySnapshots ] = await Promise.all([ + const [hourSnapshots, daySnapshots] = await Promise.all([ fetchV2DayHourBuckets(), fetchV2DayBuckets(), ]) return { hourSnapshots, daySnapshots } } - - // if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { - // fetches.push(fetchV3DayHourBuckets()) - // fetches.push(fetchV3DayBuckets()) - // } - + return { hourSnapshots: [], daySnapshots: [] } } // ping and check if the pair exists in V2, if not assume it's v3 - // const isPoolV2 = await fetchIsV2Pool() - // console.log({ isPoolV2 }) + const isPoolV2 = await fetchIsV2Pool() const [pair, pair1d, pair2d, pair1w, buckets] = await Promise.all([ - poolFetcher(true), - poolFetcher(true, oneDayBlock), - poolFetcher(true, twoDayBlock), - poolFetcher(true, oneWeekBlock), - bucketFetcher(true), + poolFetcher(isPoolV2), + poolFetcher(isPoolV2, oneDayBlock), + poolFetcher(isPoolV2, twoDayBlock), + poolFetcher(isPoolV2, oneWeekBlock), + bucketFetcher(isPoolV2), ]) if (!pair) return null - return transformPair({ - pair, + pair: isPoolV2 + ? { + ...pair, + daySnapshots: buckets.daySnapshots, + hourSnapshots: buckets.hourSnapshots, + } + : pair, pair1d, pair2d, pair1w, - daySnapshots: buckets.daySnapshots, - hourSnapshots: buckets.hourSnapshots, }) } diff --git a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts index f07f012eb5..dc9aaf65a0 100644 --- a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts +++ b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts @@ -2,8 +2,6 @@ import { SUSHISWAP_ENABLED_NETWORKS, SUSHISWAP_V2_SUBGRAPH_URL, - TRIDENT_ENABLED_NETWORKS, - TRIDENT_SUBGRAPH_URL, } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { ChainId } from 'sushi/chain' @@ -13,8 +11,7 @@ import { QueryResolvers, QuerypairsByChainIdsArgs, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' const BLACKLIST = { [ChainId.ARBITRUM]: [ @@ -35,7 +32,7 @@ const getBlacklist = (chainId: ChainId, id_not_in?: string[]) => export const _pairsByChainIds = async ( root = {}, args: QuerypairsByChainIdsArgs, - context: SushiSwapTypes.Context & TridentTypes.Context, + context: SushiSwapV2Types.Context, info: GraphQLResolveInfo, ): Promise => { return Promise.all([ @@ -45,7 +42,7 @@ export const _pairsByChainIds = async ( SUSHISWAP_ENABLED_NETWORKS.includes(chainId), ) .map((chainId) => - context.SushiSwap.Query.pairs({ + context.SushiSwapV2.Query.pairs({ root, args: { ...args, @@ -68,7 +65,7 @@ export const _pairsByChainIds = async ( url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], }, info, - }).then((pairs: SushiSwapTypes.Pair[]) => { + }).then((pairs: SushiSwapV2Types.Pair[]) => { if (!Array.isArray(pairs)) { console.error(`SushiSwap pairs query failed on ${chainId}`, pairs) return [] @@ -77,35 +74,6 @@ export const _pairsByChainIds = async ( return pairs.map((pair) => ({ ...pair, chainId, address: pair.id })) }), ), - ...args.chainIds - .filter((chainId): chainId is (typeof TRIDENT_ENABLED_NETWORKS)[number] => - TRIDENT_ENABLED_NETWORKS.includes(chainId), - ) - .map((chainId) => - context.Trident.Query.pairs({ - root, - args: { - ...args, - where: { - ...args.where, - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - }, - }, - context: { - ...context, - chainId, - url: TRIDENT_SUBGRAPH_URL[chainId], - }, - info, - }).then((pairs: TridentTypes.Pair[]) => { - if (!Array.isArray(pairs)) { - console.error(`Trident pairs query failed on ${chainId}`, pairs) - return [] - } - // console.debug(`Trident pairs ${chainId}`, pairs) - return pairs.map((pair) => ({ ...pair, chainId, address: pair.id })) - }), - ), ]).then((promise) => promise.flatMap((pairs) => pairs)) } diff --git a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts index 2a56f69051..a1d3899c1d 100644 --- a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts +++ b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts @@ -14,8 +14,7 @@ import { QuerytokensByChainIdsArgs, Token, } from '../../.graphclient/index.js' -import { SushiSwapTypes } from '../../.graphclient/sources/SushiSwap/types.js' -import { TridentTypes } from '../../.graphclient/sources/Trident/types.js' +import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' import { page } from '../../lib/page.js' const BLACKLIST = { @@ -29,55 +28,15 @@ const getBlacklist = (chainId: ChainId, id_not_in?: string[]) => export const _tokensByChainIds = async ( root = {}, args: QuerytokensByChainIdsArgs, - context: SushiSwapTypes.Context & TridentTypes.Context, + context: SushiSwapV2Types.Context, info: GraphQLResolveInfo, ): Promise => { // @ts-ignore return Promise.all([ - ...args.chainIds - .filter((el) => TRIDENT_ENABLED_NETWORKS.includes(el)) - .map((chainId: (typeof TRIDENT_ENABLED_NETWORKS)[number]) => - context.Trident.Query.tokens({ - root, - // @ts-ignore - args: { - ...args, - where: { - ...args.where, - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - }, - }, - context: { - ...context, - // @ts-ignore - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: TRIDENT_SUBGRAPH_URL[chainId], - }, - info, - // @ts-ignore - }).then((tokens: Token[]) => { - if (!Array.isArray(tokens)) { - console.error(`Trident tokens query failed on ${chainId}`, tokens) - return [] - } - return tokens.length > 0 - ? tokens.map((token) => ({ - ...token, - id: `${chainShortName[chainId]}:${token.id}`, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - source: 'TRIDENT', - })) - : [] - }), - ), ...args.chainIds .filter((el) => SUSHISWAP_ENABLED_NETWORKS.includes(el)) .map((chainId: (typeof SUSHISWAP_ENABLED_NETWORKS)[number]) => - context.SushiSwap.Query.tokens({ + context.SushiSwapV2.Query.tokens({ root, // @ts-ignore args: { diff --git a/packages/graph-client/resolvers/user/crossChainUserPositions.ts b/packages/graph-client/resolvers/user/crossChainUserPositions.ts index 554006dab4..4071ca2d02 100644 --- a/packages/graph-client/resolvers/user/crossChainUserPositions.ts +++ b/packages/graph-client/resolvers/user/crossChainUserPositions.ts @@ -21,7 +21,7 @@ export const crossChainUserPositions: QueryResolvers['crossChainUserPositions'] chainIds: args.chainIds, where: { user: args.id.toLowerCase(), - liquidityTokenBalance_gt: 0, + // liquidityTokenBalance_gt: 0, }, }), sdk.CrossChainChefUser({ @@ -43,7 +43,7 @@ export const crossChainUserPositions: QueryResolvers['crossChainUserPositions'] // Subgraph is unreliable currently, have to fetch from the chain directly const unstakedBalances = await fetchBalances( liquidityPositions.map((lp) => ({ - token: lp.id.split('-')[0], + token: lp.id.slice(0, 42), chainId: lp.chainId, user: args.id, })), diff --git a/packages/graph-client/transformers/transformPair.ts b/packages/graph-client/transformers/transformPair.ts index d2221028fd..9471fd2349 100644 --- a/packages/graph-client/transformers/transformPair.ts +++ b/packages/graph-client/transformers/transformPair.ts @@ -7,15 +7,15 @@ export function transformPair({ pair1d, pair2d, pair1w, - hourSnapshots, - daySnapshots, + // hourSnapshots, + // daySnapshots, }: { pair: Pair pair1d?: Pair pair2d?: Pair pair1w?: Pair - hourSnapshots: BucketData[] - daySnapshots: BucketData[] + // hourSnapshots: BucketData[] + // daySnapshots: BucketData[] }) { const liquidity1dChange = pair1d ? pair.liquidityUSD / pair1d.liquidityUSD - 1 @@ -89,7 +89,7 @@ export function transformPair({ utilisation2d, utilisation1dChange, feeApr, - hourSnapshots, - daySnapshots, + // hourSnapshots, + // daySnapshots, } } From d112e5994338d0b690eebe9dc3f9c6257b08e171 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 22 May 2024 23:43:22 +0200 Subject: [PATCH 010/119] perf(packages/graph-client): run version checker query with first batch --- config/graph/src/index.ts | 64 +++++++++---------- .../graph-client/resolvers/pairs/pairById.ts | 34 +++++----- 2 files changed, 49 insertions(+), 49 deletions(-) diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 3e84f9aa66..1c1bb1dbbf 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -319,38 +319,38 @@ export const SECONDS_BETWEEN_BLOCKS: Record = { [ChainId.SCROLL]: 3, } as const -export const SUSHISWAP_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-ethereum`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/sushiswap-avalanche`, - [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-arbitrum`, - [ChainId.BSC]: `${GRAPH_HOST}/sushi-v2/sushiswap-bsc`, - [ChainId.CELO]: `${GRAPH_HOST}/sushi-v2/sushiswap-celo`, - [ChainId.FANTOM]: `${GRAPH_HOST}/sushi-v2/sushiswap-fantom`, - [ChainId.FUSE]: `${GRAPH_HOST}/sushi-v2/sushiswap-fuse`, - [ChainId.GNOSIS]: `${GRAPH_HOST}/sushi-v2/sushiswap-gnosis`, - [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushi-v2/sushiswap-moonbeam`, - [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushi-v2/sushiswap-moonriver`, - [ChainId.HARMONY]: `${GRAPH_HOST}/olastenberg/sushiswap-harmony-fix`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-arbitrum-nova/gn`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-subgraphs/sushiswap-optimism`, - [ChainId.BOBA]: `${GRAPH_HOST}/sushi-v2/sushiswap-boba`, - [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-v2/sushiswap-polygon`, - [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-boba-bnb/gn`, - [ChainId.BASE]: `${STUDIO_HOST}/sushiswap-base/v0.0.1`, - [ChainId.SCROLL]: `${STUDIO_HOST}/sushiswap-scroll/v0.0.1`, - [ChainId.KAVA]: `${KAVA_HOST}/sushi-v2/sushiswap-kava`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/sushiswap-metis`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/sushiswap-bttc/gn`, - [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/sushiswap-filecoin`, - [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/sushiswap-zetachain/1.0.0/gn`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/sushiswap-thundercore`, - [ChainId.CORE]: `${CORE_HOST}/sushi-v2/sushiswap-core`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/sushiswap-haqq`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/9ZQV5c7AG2bxp4TqBav73WADLVhixQahCQk5n4uoCgxm`, - [ChainId.POLYGON_ZKEVM]: `${STUDIO_HOST}/v2-polygon-zkevm/v0.0.1`, - [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-blast/gn`, - [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, -} as const +// export const SUSHISWAP_SUBGRAPH_URL: Record = { +// [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-ethereum`, +// [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/sushiswap-avalanche`, +// [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-arbitrum`, +// [ChainId.BSC]: `${GRAPH_HOST}/sushi-v2/sushiswap-bsc`, +// [ChainId.CELO]: `${GRAPH_HOST}/sushi-v2/sushiswap-celo`, +// [ChainId.FANTOM]: `${GRAPH_HOST}/sushi-v2/sushiswap-fantom`, +// [ChainId.FUSE]: `${GRAPH_HOST}/sushi-v2/sushiswap-fuse`, +// [ChainId.GNOSIS]: `${GRAPH_HOST}/sushi-v2/sushiswap-gnosis`, +// [ChainId.MOONBEAM]: `${GRAPH_HOST}/sushi-v2/sushiswap-moonbeam`, +// [ChainId.MOONRIVER]: `${GRAPH_HOST}/sushi-v2/sushiswap-moonriver`, +// [ChainId.HARMONY]: `${GRAPH_HOST}/olastenberg/sushiswap-harmony-fix`, +// [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-arbitrum-nova/gn`, +// [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-subgraphs/sushiswap-optimism`, +// [ChainId.BOBA]: `${GRAPH_HOST}/sushi-v2/sushiswap-boba`, +// [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-v2/sushiswap-polygon`, +// [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/sushiswap-boba-bnb/gn`, +// [ChainId.BASE]: `${STUDIO_HOST}/sushiswap-base/v0.0.1`, +// [ChainId.SCROLL]: `${STUDIO_HOST}/sushiswap-scroll/v0.0.1`, +// [ChainId.KAVA]: `${KAVA_HOST}/sushi-v2/sushiswap-kava`, +// [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/sushiswap-metis`, +// [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/sushiswap-bttc/gn`, +// [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/sushiswap-filecoin`, +// [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/sushiswap-zetachain/1.0.0/gn`, +// [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/sushiswap-thundercore`, +// [ChainId.CORE]: `${CORE_HOST}/sushi-v2/sushiswap-core`, +// [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/sushiswap-haqq`, +// [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/9ZQV5c7AG2bxp4TqBav73WADLVhixQahCQk5n4uoCgxm`, +// [ChainId.POLYGON_ZKEVM]: `${STUDIO_HOST}/v2-polygon-zkevm/v0.0.1`, +// [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-blast/gn`, +// [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, +// } as const export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index 2c3316a0f9..6126106e6a 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -10,7 +10,6 @@ import { chainName, chainShortNameToChainId } from 'sushi/chain' import { withoutScientificNotation } from 'sushi/format' import { isPromiseFulfilled } from 'sushi/validate' import { - BucketData, Pair, QueryResolvers, getBuiltGraphSDK, @@ -18,7 +17,6 @@ import { import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' import { transformPair } from '../../transformers/index.js' -import { is } from 'date-fns/locale' const sdk = getBuiltGraphSDK() @@ -92,6 +90,21 @@ export const pairById: QueryResolvers['pairById'] = async ( context, info, ): Promise => { + + + const fetchIsV2Pool = async () => { + const sdk = getBuiltGraphSDK({ + url: SUSHISWAP_V2_SUBGRAPH_URL[ + chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], + }) + + const { pair } = await sdk.PairOnlyId({ + id: address.toLowerCase(), + }) + return pair && pair.id ? true : false + } + const now = Date.now() const [chainShortName, address] = args.id.split(':') as [string, string] @@ -108,10 +121,12 @@ export const pairById: QueryResolvers['pairById'] = async ( { oneWeekBlocks: [oneWeekBlock], }, + isPoolV2 ] = await Promise.all([ sdk.OneDayBlocks({ chainIds: [chainId] }), sdk.TwoDayBlocks({ chainIds: [chainId] }), sdk.OneWeekBlocks({ chainIds: [chainId] }), + fetchIsV2Pool() ]) const fetchSushiSwapPair = async (block?: { number: number }) => @@ -232,18 +247,6 @@ export const pairById: QueryResolvers['pairById'] = async ( return transformV3PoolToPair(pool, chainId) } - const fetchIsV2Pool = async () => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - ], - }) - - const { pair } = await sdk.PairOnlyId({ - id: address.toLowerCase(), - }) - return pair && pair.id ? true : false - } const poolFetcher = async (isV2: boolean, block?: { number: number }) => { const fetches: ReturnType[] = [] @@ -276,9 +279,6 @@ export const pairById: QueryResolvers['pairById'] = async ( return { hourSnapshots: [], daySnapshots: [] } } - // ping and check if the pair exists in V2, if not assume it's v3 - - const isPoolV2 = await fetchIsV2Pool() const [pair, pair1d, pair2d, pair1w, buckets] = await Promise.all([ poolFetcher(isPoolV2), poolFetcher(isPoolV2, oneDayBlock), From 3e4cc360b4ecbd75d5e5fb73068bcb1f20b32de2 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Thu, 23 May 2024 13:01:56 +0200 Subject: [PATCH 011/119] fix(graph/client): update analytics queries --- apps/evm/src/lib/graph.ts | 80 ++++--- packages/graph-client/.graphclientrc.yml | 19 +- .../graph-client/queries/factories.graphql | 65 +++--- .../resolvers/depreciated/crossChainToken.ts | 54 ++--- .../factories/factoriesByChainIds.ts | 3 +- .../factoryDaySnapshotsByChainIds.ts | 211 ++++++++---------- .../graph-client/resolvers/factories/index.ts | 4 +- 7 files changed, 197 insertions(+), 239 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 8b93b0014d..46a35bd044 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -80,12 +80,13 @@ export const getBundles = async () => { chainIds: SUPPORTED_CHAIN_IDS, }) - return bundles.reduce< - Record> - >((acc, cur) => { - acc[cur.chainId] = cur - return acc - }, {}) + return bundles.reduce>>( + (acc, cur) => { + acc[cur.chainId] = cur + return acc + }, + {}, + ) } export type GetTokensQuery = Omit< @@ -111,7 +112,7 @@ export const getTokens = async (query?: GetTokensQuery) => { : 20 const skip = 0 const where = { ...(query?.where && { ...JSON.parse(query.where) }) } - const orderBy = query?.orderBy || 'liquidityUSD' + const orderBy = query?.orderBy || 'tradeVolumeUSD' const orderDirection = query?.orderDirection || 'desc' const chainIds = query?.networks ? JSON.parse(query.networks) @@ -137,13 +138,15 @@ export const getBentoBoxTokens = async ( ) => { try { const { rebases } = await sdk.RebasesByChainIds({ - where: { - token_: { - or: query.tokenSymbols?.map((symbol) => ({ - symbol_contains_nocase: symbol, - })), + ...(query.tokenSymbols && query.tokenSymbols?.length > 0 && { + where: { + token_: { + or: query.tokenSymbols.map((symbol) => ({ + symbol_contains_nocase: symbol, + })), + }, }, - }, + }), chainIds: query.chainIds, }) @@ -158,11 +161,15 @@ export const getFuroTokens = async ( ) => { try { const { tokens } = await sdk.furoTokensByChainIds({ - where: { - or: query.tokenSymbols?.map((symbol) => ({ - symbol_contains_nocase: symbol, - })), - }, + ...(query.tokenSymbols && query.tokenSymbols?.length > 0 && { + where: { + token_: { + or: query.tokenSymbols.map((symbol) => ({ + symbol_contains_nocase: symbol, + })), + }, + }, + }), // orderBy, // orderDirection, chainIds: query.chainIds, @@ -175,6 +182,7 @@ export const getFuroTokens = async ( } export const getToken = async (id: string) => { + // TODO: fix const { crossChainToken: token } = await sdk.CrossChainToken({ id: id.includes(':') ? id.split(':')[1] : id, chainId: id.split(':')[0], @@ -188,29 +196,29 @@ export type GetTokenCountQuery = Partial<{ networks: string }> -export const getTokenCount = async (query?: GetTokenCountQuery) => { - const { factories } = await sdk.Factories({ - chainIds: SUPPORTED_CHAIN_IDS, - }) +// export const getTokenCount = async (query?: GetTokenCountQuery) => { +// const { factories } = await sdk.Factories({ +// chainIds: SUPPORTED_CHAIN_IDS, +// }) - const chainIds = query?.networks - ? JSON.parse(query.networks) - : SUPPORTED_CHAIN_IDS +// const chainIds = query?.networks +// ? JSON.parse(query.networks) +// : SUPPORTED_CHAIN_IDS - return factories.reduce((sum, cur) => { - if (chainIds.includes(cur.chainId)) { - sum = sum + Number(cur.tokenCount) - } +// return factories.reduce((sum, cur) => { +// if (chainIds.includes(cur.chainId)) { +// sum = sum + Number(cur.tokenCount) +// } - return sum - }, 0) -} +// return sum +// }, 0) +// } export const getCharts = async (query?: { networks: string }) => { const chainIds = query?.networks ? JSON.parse(query.networks) : SUPPORTED_CHAIN_IDS - const { factoryDaySnapshots } = await sdk.FactoryDaySnapshots({ + const { factoryDaySnapshots } = await sdk.UniswapDayDatas({ chainIds: chainIds, first: 1000, }) @@ -223,10 +231,10 @@ export const getCharts = async (query?: { networks: string }) => { snapshot.date, value ? [ - value[0] + Number(snapshot.liquidityUSD), - value[1] + Number(snapshot.volumeUSD), + value[0] + Number(snapshot.totalLiquidityUSD), + value[1] + Number(snapshot.dailyVolumeUSD), ] - : [Number(snapshot.liquidityUSD), Number(snapshot.volumeUSD)], + : [Number(snapshot.totalLiquidityUSD), Number(snapshot.dailyVolumeUSD)], ) } diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml index e4daa0c500..d2e0978365 100644 --- a/packages/graph-client/.graphclientrc.yml +++ b/packages/graph-client/.graphclientrc.yml @@ -333,6 +333,9 @@ additionalTypeDefs: | extend type UniswapFactory { chainId: BigInt! } + extend type UniswapDayData { + chainId: BigInt! + } extend type Pair { chainId: BigInt! swapFee: BigInt! @@ -499,18 +502,6 @@ additionalTypeDefs: | ids: [ID!]! block: Block_height ): [Pair!]! - # pairWithIncentives( - # id: ID! - # ): PairWithIncentives! - # pairsWithIncentives( - # ids: [ID!] - # skip: Int = 0 - # first: Int = 100 - # where: Pair_filter - # orderBy: Pair_orderBy - # orderDirection: OrderDirection - # chainIds: [BigInt!]! - # ): [PairWithIncentives!]! rebasesByChainIds( skip: Int = 0 first: Int = 100 @@ -554,8 +545,6 @@ additionalTypeDefs: | tokenId0: String! tokenId1: String! ): [CONCENTRATED_Pool!]! - - # TODO: REFACTOR BELOW crossChainChefUser( skip: Int = 0 first: Int = 100 @@ -569,7 +558,7 @@ additionalTypeDefs: | id: ID! chainIds: [BigInt!]! ): [UserPosition!]! - uniswapDayDatasByChainIds( + factoryDaySnapshotsByChainIds( first: Int skip: Int where: UniswapDayData_filter diff --git a/packages/graph-client/queries/factories.graphql b/packages/graph-client/queries/factories.graphql index e3bf365b23..639dee912b 100644 --- a/packages/graph-client/queries/factories.graphql +++ b/packages/graph-client/queries/factories.graphql @@ -2,36 +2,43 @@ query Factories($chainIds: [BigInt!]!) { factories: factoriesByChainIds(chainIds: $chainIds) { id chainId - liquidityUSD: totalLiquidityUSD - volumeUSD: totalVolumeUSD + totalLiquidityUSD + totalVolumeUSD pairCount - # tokenCount } } -# query UniswapDayDatas( -# $first: Int = 365 -# $skip: Int = 0 -# $where: UniswapDayData_filter -# $orderBy: UniswapDayData_orderBy = date -# $orderDirection: OrderDirection = desc -# $block: Block_height -# $chainIds: [BigInt!]! -# ) { -# factoryDaySnapshots: factoryDaySnapshotsByChainIds( -# first: $first -# skip: $skip -# where: $where -# orderBy: $orderBy -# orderDirection: $orderDirection -# block: $block -# chainIds: $chainIds -# ) { -# chainId -# id -# date -# volumeUSD -# liquidityUSD -# feesUSD -# } -# } +query UniswapDayDatas( + $first: Int = 365 + $skip: Int = 0 + $where: UniswapDayData_filter + $orderBy: UniswapDayData_orderBy = date + $orderDirection: OrderDirection = desc + $block: Block_height + $chainIds: [BigInt!]! +) { + factoryDaySnapshots: factoryDaySnapshotsByChainIds( + first: $first + skip: $skip + where: $where + orderBy: $orderBy + orderDirection: $orderDirection + block: $block + chainIds: $chainIds + ) { + chainId + id + date + + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + + txCount + } +} diff --git a/packages/graph-client/resolvers/depreciated/crossChainToken.ts b/packages/graph-client/resolvers/depreciated/crossChainToken.ts index 6928c49b82..b79bc9a8ea 100644 --- a/packages/graph-client/resolvers/depreciated/crossChainToken.ts +++ b/packages/graph-client/resolvers/depreciated/crossChainToken.ts @@ -2,9 +2,7 @@ import { SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, - TRIDENT_ENABLED_NETWORKS, - TRIDENT_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' import { chainName, chainShortName } from 'sushi/chain' @@ -21,37 +19,21 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( res.json(), ) - const token: Token = SUSHISWAP_ENABLED_NETWORKS.includes(args.chainId) - ? await context.SushiSwapV2.Query.token({ - root, - args, - context: { - ...context, - now: args.now, - chainId: args.chainId, - chainName: chainName[args.chainId], - chainShortName: chainShortName[args.chainId], - url: SUSHISWAP_V2_SUBGRAPH_URL[ - args.chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - ], - }, - info, - }) - : await context.Trident.Query.token({ - root, - args, - context: { - ...context, - now: args.now, - chainId: args.chainId, - chainName: chainName[args.chainId], - chainShortName: chainShortName[args.chainId], - url: TRIDENT_SUBGRAPH_URL[ - args.chainId as (typeof TRIDENT_ENABLED_NETWORKS)[number] - ], - }, - info, - }) + const token: Token = context.SushiSwapV2.Query.token({ + root, + args, + context: { + ...context, + now: args.now, + chainId: args.chainId, + chainName: chainName[args.chainId], + chainShortName: chainShortName[args.chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[ + args.chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + ], + }, + info, + }) return { ...token, @@ -59,9 +41,7 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( chainId: args.chainId, chainName: chainName[args.chainId], chainShortName: chainShortName[args.chainId], - source: SUSHISWAP_ENABLED_NETWORKS.includes(args.chainId) - ? 'LEGACY' - : 'TRIDENT', + source: 'SUSHISWAP_V2', // @ts-ignore pairs: token.pairs ? token.pairs.map(({ pair }) => { diff --git a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts index a6ffa683d9..298ca45c4b 100644 --- a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts @@ -7,7 +7,6 @@ import { import { isPromiseFulfilled } from 'sushi/validate' import { - UniswapFactory, Query, QueryResolvers, Resolvers, @@ -21,7 +20,7 @@ export const factoriesByChainIds: QueryResolvers['factoriesByChainIds'] = SUSHISWAP_ENABLED_NETWORKS.includes(el), ) .map((chainId) => - context.SushiSwap.Query.factories({ + context.SushiSwapV2.Query.uniswapFactories({ root, args, context: { diff --git a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts index f312d6a804..7779876fea 100644 --- a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts @@ -1,132 +1,107 @@ -// import { -// SUSHISWAP_V2_SUBGRAPH_URL, -// SUSHISWAP_V3_SUBGRAPH_URL, -// SushiSwapV3ChainId, -// TRIDENT_SUBGRAPH_URL, -// isSushiSwapChain, -// isSushiSwapV3Chain, -// isTridentChain, -// } from '@sushiswap/graph-config' -// import { ChainId, chainName, chainShortName } from 'sushi/chain' +import { + SUSHISWAP_V2_SUBGRAPH_URL, + SUSHISWAP_V3_SUBGRAPH_URL, + SushiSwapV3ChainId, + isSushiSwapChain, + isSushiSwapV3Chain +} from '@sushiswap/graph-config' +import { ChainId, chainName, chainShortName } from 'sushi/chain' -// import { -// FactoryDaySnapshot, -// Query, -// QueryResolvers, -// SushiSwapV3DayDatasQuery, -// getBuiltGraphSDK, -// } from '../../.graphclient/index.js' -// import { isPromiseFulfilled } from 'sushi/validate' +import { isPromiseFulfilled } from 'sushi/validate' +import { + Query, + QueryResolvers, + SushiSwapV3DayDatasQuery, + UniswapDayData, + getBuiltGraphSDK, +} from '../../.graphclient/index.js' -// const transformV3DayToSnapshot = ( -// days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], -// chainId: number, -// ): Query['factoryDaySnapshotsByChainIds'] => -// days.map((day) => ({ -// chainId: chainId, -// id: day.id, -// date: day.date, -// volumeNative: day.volumeETH, -// volumeUSD: day.volumeUSD, -// untrackedVolumeUSD: day.volumeUSDUntracked, -// liquidityNative: 0, -// liquidityUSD: day.tvlUSD, -// feesNative: 0, -// feesUSD: day.feesUSD, -// transactionCount: day.txCount, -// factory: null, -// })) +const transformV3DayToSnapshot = ( + days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], + chainId: number, +): Query['factoryDaySnapshotsByChainIds'] => + days.map((day) => ({ + chainId: chainId, + id: day.id, + date: day.date, -// export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsByChainIds'] = -// async ( -// root, -// args, -// context, -// info, -// ): Promise => { -// // const fetchTridentSnapshots = async (chainId: number) => { -// // const snapshots: FactoryDaySnapshot[] = -// // await context.Trident.Query.factoryDaySnapshots({ -// // root, -// // args, -// // context: { -// // ...context, -// // chainId, -// // chainName: chainName[chainId], -// // chainShortName: chainShortName[chainId], -// // url: TRIDENT_SUBGRAPH_URL[chainId], -// // }, -// // info, -// // }) + dailyVolumeUSD: day.volumeUSD, + dailyVolumeUntracked: day.volumeUSDUntracked, + dailyVolumeETH: day.volumeETH, -// // return ( -// // snapshots?.map((snapshot) => ({ -// // ...snapshot, -// // chainId, -// // chainName: chainName[chainId], -// // chainShortName: chainShortName[chainId], -// // })) || [] -// // ) -// // } + totalLiquidityUSD: day.tvlUSD, + totalVolumeUSD: 0, + totalVolumeETH: 0, + totalLiquidityETH: 0, + txCount: day.txCount, + })) -// const fetchSushiSwapV2Snapshots = async (chainId: number) => { -// const snapshots: FactoryDaySnapshot[] = -// await context.SushiSwap.Query.factoryDaySnapshots({ -// root, -// args, -// context: { -// ...context, -// chainId, -// chainName: chainName[chainId], -// chainShortName: chainShortName[chainId], -// url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], -// }, -// info, -// }) +export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsByChainIds'] = + async ( + root, + args, + context, + info, + ): Promise => { -// return ( -// snapshots?.map((snapshot) => ({ -// ...snapshot, -// chainId, -// chainName: chainName[chainId], -// chainShortName: chainShortName[chainId], -// })) || [] -// ) -// } -// const fetchSushiSwapV3Snapshots = async (chainId: SushiSwapV3ChainId) => { -// const sdk = getBuiltGraphSDK({ -// url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], -// }) + const fetchSushiSwapV2Snapshots = async (chainId: number) => { + const snapshots: UniswapDayData[] = + await context.SushiSwapV2.Query.uniswapDayDatas({ + root, + args, + context: { + ...context, + chainId, + chainName: chainName[chainId], + chainShortName: chainShortName[chainId], + url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], + }, + info, + }) -// const { uniswapDayDatas } = await sdk.SushiSwapV3DayDatas({ -// first: args.first, -// skip: args.skip, -// orderBy: args.orderBy === 'liquidityUSD' ? 'tvlUSD' : 'date', -// orderDirection: args.orderDirection, -// }) + return ( + snapshots?.map((snapshot) => ({ + ...snapshot, + chainId, + chainName: chainName[chainId], + chainShortName: chainShortName[chainId], + })) || [] + ) + } -// return transformV3DayToSnapshot(uniswapDayDatas, chainId) -// } + const fetchSushiSwapV3Snapshots = async (chainId: SushiSwapV3ChainId) => { + const sdk = getBuiltGraphSDK({ + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], + }) -// const queries = args.chainIds.flatMap((chainId: ChainId) => { -// const queries: Promise[] = [] + const { uniswapDayDatas } = await sdk.SushiSwapV3DayDatas({ + first: args.first, + skip: args.skip, + orderBy: args.orderBy === 'totalLiquidityUSD' ? 'tvlUSD' : 'date', + orderDirection: args.orderDirection, + }) + return transformV3DayToSnapshot(uniswapDayDatas, chainId) + } -// if (isSushiSwapChain(chainId)) { -// queries.push(fetchSushiSwapV2Snapshots(chainId)) -// } + const queries = args.chainIds.flatMap((chainId: ChainId) => { + const queries: Promise[] = [] -// if (isSushiSwapV3Chain(chainId)) { -// queries.push(fetchSushiSwapV3Snapshots(chainId)) -// } + if (isSushiSwapChain(chainId)) { + queries.push(fetchSushiSwapV2Snapshots(chainId)) + } -// return queries -// }) + if (isSushiSwapV3Chain(chainId)) { + queries.push(fetchSushiSwapV3Snapshots(chainId)) + } -// return Promise.allSettled(queries).then((snapshots) => -// snapshots -// .filter(isPromiseFulfilled) -// .map((snapshot) => snapshot.value) -// .flat(), -// ) -// } + return queries + }) + + return Promise.allSettled(queries).then((snapshots) => + snapshots + .filter(isPromiseFulfilled) + .map((snapshot) => snapshot.value) + .flat(), + ) + } diff --git a/packages/graph-client/resolvers/factories/index.ts b/packages/graph-client/resolvers/factories/index.ts index d948eb190a..a885ff86c7 100644 --- a/packages/graph-client/resolvers/factories/index.ts +++ b/packages/graph-client/resolvers/factories/index.ts @@ -1,6 +1,6 @@ import { Resolvers } from '../../.graphclient/index.js' import { factoriesByChainIds } from './factoriesByChainIds.js' -// import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' +import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' export const resolvers: Resolvers = { UniswapFactory: { chainId: (root, args, context, info) => @@ -8,6 +8,6 @@ export const resolvers: Resolvers = { }, Query: { factoriesByChainIds, - // factoryDaySnapshotsByChainIds, + factoryDaySnapshotsByChainIds, }, } From 9a6a94d3010d131e2166dd3e197012194f4cf3ef Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Thu, 23 May 2024 11:21:59 +0000 Subject: [PATCH 012/119] chore(optimization): remove most functions using getContract --- apps/evm/src/app/pool/add/page.tsx | 5 +- apps/evm/src/lib/pool/v3/use-ticks.ts | 45 +- .../getTridentConstantPoolFactoryContract.ts | 12 - .../getTridentStablePoolFactoryContract.ts | 12 - .../useTridentContantPoolFactoryContract.ts | 21 - .../useTridentStablePoolFactoryContract.ts | 21 - .../bentobox/hooks/useBentoBoxApproval.ts | 11 +- .../hooks/block/useCurrentBlockTimestamp.ts | 9 +- .../lib/wagmi/hooks/contracts/multicall3.ts | 15 + .../hooks/contracts/useBentoBoxContract.ts | 27 - .../hooks/contracts/useMulticall3Contract.ts | 31 - .../hooks/contracts/useMulticallContract.ts | 56 -- .../hooks/contracts/useSushiXSwap2Contract.ts | 35 - .../hooks/contracts/useSushiXSwapContract.ts | 31 - .../wagmi/hooks/contracts/useTridentRouter.ts | 25 - .../hooks/contracts/useV3FactoryContract.ts | 158 ----- .../useV3NonFungiblePositionManager.ts | 657 ------------------ .../wagmi/hooks/contracts/useV3TickLens.ts | 48 -- .../master-chef/use-master-chef-contract.ts | 13 +- .../actions/getConcentratedLiquidityPool.ts | 9 +- .../getConcentratedLiquidityPoolReserves.ts | 6 +- .../actions/getConcentratedPositionOwner.ts | 6 +- .../pools/actions/getTridentStablePools.ts | 21 +- .../useTridentConstantPoolFactoryContract.ts | 30 - .../useTridentStablePoolFactoryContract.ts | 22 - .../pools/hooks/useTridentStablePools.ts | 23 +- .../getConcentratedLiquidityPositionFees.ts | 6 +- .../getConcentratedLiquidityPositions.ts | 16 +- ...centratedLiquidityPositionsFromTokenIds.ts | 13 +- .../hooks/useConcentratedPositionOwner.ts | 6 +- .../AddSectionReviewModalConcentrated.tsx | 9 +- .../ui/pool/AddSectionReviewModalTrident.tsx | 18 +- .../ConcentratedLiquidityCollectButton.tsx | 8 +- .../ConcentratedLiquidityRemoveWidget.tsx | 9 +- .../ui/pool/ConcentratedLiquidityWidget.tsx | 11 +- .../pool/CreateSectionReviewModalTrident.tsx | 23 +- apps/evm/src/ui/pool/RemoveSectionTrident.tsx | 33 +- .../cross-chain-swap-trade-review-dialog.tsx | 11 +- pnpm-lock.yaml | 104 --- 39 files changed, 188 insertions(+), 1428 deletions(-) delete mode 100644 apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts delete mode 100644 apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts delete mode 100644 apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts delete mode 100644 apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts create mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/multicall3.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts delete mode 100644 apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts diff --git a/apps/evm/src/app/pool/add/page.tsx b/apps/evm/src/app/pool/add/page.tsx index 5aa67fa84e..8c75f7e07a 100644 --- a/apps/evm/src/app/pool/add/page.tsx +++ b/apps/evm/src/app/pool/add/page.tsx @@ -1,10 +1,9 @@ 'use client' import React, { FC, useMemo, useState } from 'react' -import { getV3FactoryContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3FactoryContract' import { useConcentratedPositionInfo } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo' import { computeSushiSwapV3PoolAddress } from 'sushi' -import { isWNativeSupported } from 'sushi/config' +import { SUSHISWAP_V3_FACTORY_ADDRESS, isWNativeSupported } from 'sushi/config' import { tryParseAmount } from 'sushi/currency' import { SWRConfig } from 'swr' import { useAccount } from 'wagmi' @@ -61,7 +60,7 @@ const _Add: FC = () => { () => token0 && token1 && feeAmount && chainId ? computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[chainId], tokenA: token0.wrapped, tokenB: token1.wrapped, fee: feeAmount, diff --git a/apps/evm/src/lib/pool/v3/use-ticks.ts b/apps/evm/src/lib/pool/v3/use-ticks.ts index 22ecaf5f61..04cfbf73e9 100644 --- a/apps/evm/src/lib/pool/v3/use-ticks.ts +++ b/apps/evm/src/lib/pool/v3/use-ticks.ts @@ -1,10 +1,10 @@ 'use client' import { useMemo } from 'react' -import { getV3FactoryContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3FactoryContract' -import { getV3TickLensContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3TickLens' import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import { + SUSHISWAP_V3_FACTORY_ADDRESS, + SUSHISWAP_V3_TICK_LENS, SushiSwapV3ChainId, SushiSwapV3FeeAmount, TICK_SPACINGS, @@ -28,6 +28,42 @@ const bitmapIndex = (tick: number, tickSpacing: number) => { return Math.floor(tick / tickSpacing / 256) } +const getPopulatedTicksInWordAbiShard = [ + { + inputs: [ + { internalType: 'address', name: 'pool', type: 'address' }, + { + internalType: 'int16', + name: 'tickBitmapIndex', + type: 'int16', + }, + ], + name: 'getPopulatedTicksInWord', + outputs: [ + { + components: [ + { internalType: 'int24', name: 'tick', type: 'int24' }, + { + internalType: 'int128', + name: 'liquidityNet', + type: 'int128', + }, + { + internalType: 'uint128', + name: 'liquidityGross', + type: 'uint128', + }, + ], + internalType: 'struct ITickLens.PopulatedTick[]', + name: 'populatedTicks', + type: 'tuple[]', + }, + ], + stateMutability: 'view', + type: 'function', + }, +] as const + export function useTicks({ token0, token1, @@ -55,7 +91,7 @@ export function useTicks({ () => token0 && token1 && feeAmount && chainId ? computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[chainId], tokenA: token0.wrapped, tokenB: token1.wrapped, fee: feeAmount, @@ -94,7 +130,8 @@ export function useTicks({ ) { for (let i = minIndex; i <= maxIndex; i++) { reads.push({ - ...getV3TickLensContractConfig(chainId), + address: SUSHISWAP_V3_TICK_LENS[chainId], + abi: getPopulatedTicksInWordAbiShard, chainId, functionName: 'getPopulatedTicksInWord', args: [poolAddress as Address, i], diff --git a/apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts deleted file mode 100644 index cc0888371d..0000000000 --- a/apps/evm/src/lib/wagmi/contracts/actions/getTridentConstantPoolFactoryContract.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { tridentConstantPoolFactoryAbi } from 'sushi/abi' -import { - TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, - TridentChainId, -} from 'sushi/config' - -export const getTridentConstantPoolFactoryContract = ( - chainId: TridentChainId, -) => ({ - address: TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId], - abi: tridentConstantPoolFactoryAbi, -}) diff --git a/apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts deleted file mode 100644 index d3fe01ccaa..0000000000 --- a/apps/evm/src/lib/wagmi/contracts/actions/getTridentStablePoolFactoryContract.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { tridentStablePoolFactoryAbi } from 'sushi/abi' -import { - TRIDENT_STABLE_POOL_FACTORY_ADDRESS, - TridentChainId, -} from 'sushi/config' - -export const getTridentStablePoolFactoryContract = ( - chainId: TridentChainId, -) => ({ - address: TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId], - abi: tridentStablePoolFactoryAbi, -}) diff --git a/apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts deleted file mode 100644 index c19df0d83c..0000000000 --- a/apps/evm/src/lib/wagmi/contracts/hooks/useTridentContantPoolFactoryContract.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { useMemo } from 'react' -import { TridentChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' -import { getTridentConstantPoolFactoryContract } from '../actions/getTridentConstantPoolFactoryContract' - -export function useTridentConstantPoolFactoryContract( - chainId: TridentChainId | null, -) { - // For performance - const client = usePublicClient() as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentConstantPoolFactoryContract(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts deleted file mode 100644 index 8d30740e47..0000000000 --- a/apps/evm/src/lib/wagmi/contracts/hooks/useTridentStablePoolFactoryContract.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { useMemo } from 'react' -import { TridentChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' -import { getTridentStablePoolFactoryContract } from '../actions/getTridentStablePoolFactoryContract' - -export function useStablePoolFactoryContract( - chainId: TridentChainId | undefined, -) { - // For perf - const client = usePublicClient() as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentStablePoolFactoryContract(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts index ed0a8ac6f6..3eaf651948 100644 --- a/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts +++ b/apps/evm/src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxApproval.ts @@ -18,12 +18,12 @@ import { } from 'wagmi' import { SendTransactionReturnType } from 'wagmi/actions' +import { bentoBoxV1Abi } from 'sushi/abi' import { useApprovedActions, useSignature, } from '../../../systems/Checker/Provider' import { ApprovalState } from '../../approvals/hooks/useTokenApproval' -import { getBentoBoxContractConfig } from '../../contracts/useBentoBoxContract' interface UseBentoboxApprovalParams { enabled?: boolean @@ -68,14 +68,16 @@ export const useBentoBoxApproval = ({ queryFn: async () => { if (masterContract && address) { const isApproved = await client.readContract({ - ...getBentoBoxContractConfig(chainId), + abi: bentoBoxV1Abi, + address: BENTOBOX_ADDRESS[chainId], functionName: 'masterContractApproved', args: [masterContract, address], }) if (!isApproved) { const nonces = await client.readContract({ - ...getBentoBoxContractConfig(chainId), + abi: bentoBoxV1Abi, + address: BENTOBOX_ADDRESS[chainId], functionName: 'nonces', args: [address], }) @@ -93,7 +95,8 @@ export const useBentoBoxApproval = ({ }) const { data: simulation } = useSimulateContract({ - ...getBentoBoxContractConfig(chainId), + abi: bentoBoxV1Abi, + address: BENTOBOX_ADDRESS[chainId], chainId, functionName: 'setMasterContractApproval', args: diff --git a/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts b/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts index 1d6ddd4c03..7e8327bb9b 100644 --- a/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts +++ b/apps/evm/src/lib/wagmi/hooks/block/useCurrentBlockTimestamp.ts @@ -2,11 +2,9 @@ import { useQueryClient } from '@tanstack/react-query' import { useEffect } from 'react' +import { multicall3Abi } from 'sushi/abi' import { useBlockNumber, useReadContract } from 'wagmi' -import { - Multicall3ChainId, - getMulticall3ContractConfig, -} from '../contracts/useMulticall3Contract' +import { MULTICALL_3_ADDRESS, Multicall3ChainId } from '../contracts/multicall3' // TODO: Readd direct export, not sure why it's not working export const useCurrentBlockTimestamp = ( @@ -15,7 +13,8 @@ export const useCurrentBlockTimestamp = ( ) => { const queryClient = useQueryClient() const query = useReadContract({ - ...getMulticall3ContractConfig(chainId), + address: MULTICALL_3_ADDRESS[chainId], + abi: multicall3Abi, functionName: 'getCurrentBlockTimestamp', query: { enabled, diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/multicall3.ts b/apps/evm/src/lib/wagmi/hooks/contracts/multicall3.ts new file mode 100644 index 0000000000..a02c6c375e --- /dev/null +++ b/apps/evm/src/lib/wagmi/hooks/contracts/multicall3.ts @@ -0,0 +1,15 @@ +'use client' + +import { publicWagmiConfig } from '@sushiswap/wagmi-config' +import { Address } from 'viem' + +export type Multicall3ChainId = + (typeof publicWagmiConfig)['chains'][number]['id'] + +export const MULTICALL_3_ADDRESS = publicWagmiConfig.chains.reduce( + (acc, chain) => { + acc[chain.id] = chain.contracts.multicall3.address + return acc + }, + {} as Record, +) diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts deleted file mode 100644 index 2d895b0aa8..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useBentoBoxContract.ts +++ /dev/null @@ -1,27 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { bentoBoxV1Abi } from 'sushi/abi' -import { BENTOBOX_ADDRESS, BentoBoxChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -export const getBentoBoxContractConfig = (chainId: BentoBoxChainId) => ({ - address: BENTOBOX_ADDRESS[chainId], - abi: bentoBoxV1Abi, -}) - -export function useBentoBoxContract(chainId: BentoBoxChainId | undefined) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - client, - ...getBentoBoxContractConfig(chainId), - }) - }, [client, chainId]) -} - -export type BentoBox = NonNullable> diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts deleted file mode 100644 index 87f605ce0a..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useMulticall3Contract.ts +++ /dev/null @@ -1,31 +0,0 @@ -'use client' - -import { publicWagmiConfig } from '@sushiswap/wagmi-config' -import { useMemo } from 'react' -import { multicall3Abi } from 'sushi/abi' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -export type Multicall3ChainId = - (typeof publicWagmiConfig)['chains'][number]['id'] - -export const getMulticall3ContractConfig = ( - chainId: Multicall3ChainId | undefined, -) => ({ - address: publicWagmiConfig.chains.find((chain) => chain?.id === chainId)! - .contracts.multicall3.address, - abi: multicall3Abi, -}) - -export function useMulticall3Contract(chainId: Multicall3ChainId | undefined) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - getContract({ - ...getMulticall3ContractConfig(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts deleted file mode 100644 index e7d4bc091a..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useMulticallContract.ts +++ /dev/null @@ -1,56 +0,0 @@ -'use client' - -import { ChainId } from 'sushi/chain' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -import { useMemo } from 'react' -import { multicallAbi } from 'sushi/abi' - -export const MULTICALL_ADDRESS = { - [ChainId.ETHEREUM]: '0x1F98415757620B543A52E61c46B32eB19261F984', - // [ChainId.ROPSTEN]: '0x1F98415757620B543A52E61c46B32eB19261F984', - // [ChainId.RINKEBY]: '0x1F98415757620B543A52E61c46B32eB19261F984', - // [ChainId.GÖRLI]: '0x1F98415757620B543A52E61c46B32eB19261F984', - // [ChainId.KOVAN]: '0x1F98415757620B543A52E61c46B32eB19261F984', - [ChainId.POLYGON]: '0x1F98415757620B543A52E61c46B32eB19261F984', - [ChainId.ARBITRUM]: '0xadF885960B47eA2CD9B55E6DAc6B42b7Cb2806dB', - [ChainId.MOONBEAM]: '0x34c471ddceb20018bbb73f6d13709936fc870acc', - [ChainId.AVALANCHE]: '0x8C0F842791F03C095b6c633759224FcC9ACe68ea', - [ChainId.BSC]: '0x47A307e3167820daf22a377D777371753758f59c', - [ChainId.FANTOM]: '0xB1395e098c0a847CC719Bcf1Fc8114421a9F8232', - [ChainId.CELO]: '0x3d0B3b816DC1e0825808F27510eF7Aa5E3136D75', - [ChainId.HARMONY]: '0xaAB49386BFcB605F853763Ea382B91C9c83b9Ac5', - [ChainId.MOONRIVER]: '0x8C8BF5Dea280A1eC68219D66E8A21E60585830F5', - [ChainId.GNOSIS]: '0x2B75358D07417D4e895c952Ca84A44E63AEBE3Dd', - [ChainId.TELOS]: '0x64e1E895866B3126f8f2E2912B475FDB35b2F315', - [ChainId.FUSE]: '0x393B6DC9B00E18314888678721eC0e923FC5f49D', - [ChainId.OKEX]: '0x8C8BF5Dea280A1eC68219D66E8A21E60585830F5', - [ChainId.HECO]: '0x64e1E895866B3126f8f2E2912B475FDB35b2F315', - [ChainId.PALM]: '0x4d4A0D45a98AE8EC25b359D93A088A87BC9eF70b', - [ChainId.OPTIMISM]: '0x1F98415757620B543A52E61c46B32eB19261F984', - [ChainId.ARBITRUM_NOVA]: '0x0769fd68dFb93167989C6f7254cd0D766Fb2841F', - [ChainId.BOBA]: '0x4864984234195A1a97fBA52038e3ad61A1dd16E4', - [ChainId.KAVA]: '0x25836011Bbc0d5B6db96b20361A474CbC5245b45', - [ChainId.METIS]: '0x25F80Cd6a1822046126Ad2AbCeCe969D0EeD4529', -} as const satisfies Record - -type MulticallChainId = keyof typeof MULTICALL_ADDRESS - -export const getMulticallContractConfig = (chainId: MulticallChainId) => ({ - address: MULTICALL_ADDRESS[chainId], - abi: multicallAbi, -}) - -export function useMulticallContract(chainId: MulticallChainId | undefined) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getMulticallContractConfig(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts deleted file mode 100644 index 362979091c..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwap2Contract.ts +++ /dev/null @@ -1,35 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { sushiXSwap2Abi } from 'sushi/abi' -import { SUSHIXSWAP_2_ADDRESS, SushiXSwap2ChainId } from 'sushi/config' -import { getContract } from 'viem' -import { usePublicClient, useWalletClient } from 'wagmi' - -export const getSushiXSwap2ContractConfig = (chainId: SushiXSwap2ChainId) => ({ - chainId, - address: SUSHIXSWAP_2_ADDRESS[chainId], - abi: sushiXSwap2Abi, -}) - -export function useSushiXSwap2Contract( - chainId: SushiXSwap2ChainId | undefined, -) { - const publicClient = usePublicClient({ - chainId, - }) as any - const { data: walletClient } = useWalletClient({ chainId }) as any - - return useMemo(() => { - if (!chainId || (!publicClient && !walletClient)) return null - - return getContract({ - ...getSushiXSwap2ContractConfig(chainId), - client: walletClient || publicClient!, - }) - }, [chainId, publicClient, walletClient]) -} - -export type SushiXSwapV2 = NonNullable< - ReturnType -> diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts deleted file mode 100644 index 1bba8eb43d..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useSushiXSwapContract.ts +++ /dev/null @@ -1,31 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { sushiXSwapAbi } from 'sushi/abi' -import { SUSHIXSWAP_ADDRESS, SushiXSwapChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient, useWalletClient } from 'wagmi' - -export const getSushiXSwapContractConfig = (chainId: SushiXSwapChainId) => ({ - chainId, - address: SUSHIXSWAP_ADDRESS[chainId], - abi: sushiXSwapAbi, -}) - -export function useSushiXSwapContract(chainId: SushiXSwapChainId | undefined) { - const publicClient = usePublicClient({ - chainId, - }) as PublicClient - const { data: walletClient } = useWalletClient({ chainId }) - - return useMemo(() => { - if (!chainId || (!publicClient && !walletClient)) return null - - return getContract({ - ...getSushiXSwapContractConfig(chainId), - client: walletClient || publicClient!, - }) - }, [chainId, publicClient, walletClient]) -} - -export type SushiXSwap = NonNullable> diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts deleted file mode 100644 index 2fb8979b85..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useTridentRouter.ts +++ /dev/null @@ -1,25 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { tridentRouterAbi } from 'sushi/abi' -import { TRIDENT_ROUTER_ADDRESS, TridentChainId } from 'sushi/config' -import { getContract } from 'viem' -import { useWalletClient } from 'wagmi' - -export const getTridentRouterContractConfig = (chainId: TridentChainId) => ({ - address: TRIDENT_ROUTER_ADDRESS[chainId], - abi: tridentRouterAbi, -}) - -export function useTridentRouterContract(chainId: TridentChainId | undefined) { - const { data: walletClient } = useWalletClient() - - return useMemo(() => { - if (!chainId || !walletClient) return null - - return getContract({ - ...getTridentRouterContractConfig(chainId), - client: walletClient, - }) - }, [walletClient, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts deleted file mode 100644 index 5f10a79f2c..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useV3FactoryContract.ts +++ /dev/null @@ -1,158 +0,0 @@ -import { useMemo } from 'react' -import { SUSHISWAP_V3_FACTORY_ADDRESS, SushiSwapV3ChainId } from 'sushi/config' -import { Address, PublicClient, getContract } from 'viem' -import { usePublicClient, useWalletClient } from 'wagmi' - -export const getV3FactoryContractConfig = (chainId: SushiSwapV3ChainId) => ({ - address: SUSHISWAP_V3_FACTORY_ADDRESS[chainId] as Address, - abi: [ - { inputs: [], stateMutability: 'nonpayable', type: 'constructor' }, - { - anonymous: false, - inputs: [ - { indexed: true, internalType: 'uint24', name: 'fee', type: 'uint24' }, - { - indexed: true, - internalType: 'int24', - name: 'tickSpacing', - type: 'int24', - }, - ], - name: 'FeeAmountEnabled', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'oldOwner', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'newOwner', - type: 'address', - }, - ], - name: 'OwnerChanged', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'token0', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'token1', - type: 'address', - }, - { indexed: true, internalType: 'uint24', name: 'fee', type: 'uint24' }, - { - indexed: false, - internalType: 'int24', - name: 'tickSpacing', - type: 'int24', - }, - { - indexed: false, - internalType: 'address', - name: 'pool', - type: 'address', - }, - ], - name: 'PoolCreated', - type: 'event', - }, - { - inputs: [ - { internalType: 'address', name: 'tokenA', type: 'address' }, - { internalType: 'address', name: 'tokenB', type: 'address' }, - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - ], - name: 'createPool', - outputs: [{ internalType: 'address', name: 'pool', type: 'address' }], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - { internalType: 'int24', name: 'tickSpacing', type: 'int24' }, - ], - name: 'enableFeeAmount', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [{ internalType: 'uint24', name: '', type: 'uint24' }], - name: 'feeAmountTickSpacing', - outputs: [{ internalType: 'int24', name: '', type: 'int24' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: '', type: 'address' }, - { internalType: 'address', name: '', type: 'address' }, - { internalType: 'uint24', name: '', type: 'uint24' }, - ], - name: 'getPool', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'owner', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'parameters', - outputs: [ - { internalType: 'address', name: 'factory', type: 'address' }, - { internalType: 'address', name: 'token0', type: 'address' }, - { internalType: 'address', name: 'token1', type: 'address' }, - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - { internalType: 'int24', name: 'tickSpacing', type: 'int24' }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [{ internalType: 'address', name: '_owner', type: 'address' }], - name: 'setOwner', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - ] as const, -}) - -export function useV3FactoryContract(chainId: SushiSwapV3ChainId | undefined) { - const publicClient = usePublicClient({ - chainId, - }) as PublicClient - const { data: walletClient } = useWalletClient({ chainId }) - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getV3FactoryContractConfig(chainId), - client: walletClient || publicClient!, - }) - }, [chainId, publicClient, walletClient]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts deleted file mode 100644 index b297fc338b..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager.ts +++ /dev/null @@ -1,657 +0,0 @@ -import { useMemo } from 'react' -import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId } from 'sushi/config' -import { Address, PublicClient, getContract } from 'viem' -import { usePublicClient, useWalletClient } from 'wagmi' - -export const getV3NonFungiblePositionManagerContractConfig = ( - chainId: SushiSwapV3ChainId, -) => ({ - address: SUSHISWAP_V3_POSTIION_MANAGER[chainId] as Address, - abi: [ - { - inputs: [ - { internalType: 'address', name: '_factory', type: 'address' }, - { internalType: 'address', name: '_WETH9', type: 'address' }, - { internalType: 'address', name: '_tokenDescriptor_', type: 'address' }, - ], - stateMutability: 'nonpayable', - type: 'constructor', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'approved', - type: 'address', - }, - { - indexed: true, - internalType: 'uint256', - name: 'tokenId', - type: 'uint256', - }, - ], - name: 'Approval', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'owner', - type: 'address', - }, - { - indexed: true, - internalType: 'address', - name: 'operator', - type: 'address', - }, - { - indexed: false, - internalType: 'bool', - name: 'approved', - type: 'bool', - }, - ], - name: 'ApprovalForAll', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'tokenId', - type: 'uint256', - }, - { - indexed: false, - internalType: 'address', - name: 'recipient', - type: 'address', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount0', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount1', - type: 'uint256', - }, - ], - name: 'Collect', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'tokenId', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint128', - name: 'liquidity', - type: 'uint128', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount0', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount1', - type: 'uint256', - }, - ], - name: 'DecreaseLiquidity', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'uint256', - name: 'tokenId', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint128', - name: 'liquidity', - type: 'uint128', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount0', - type: 'uint256', - }, - { - indexed: false, - internalType: 'uint256', - name: 'amount1', - type: 'uint256', - }, - ], - name: 'IncreaseLiquidity', - type: 'event', - }, - { - anonymous: false, - inputs: [ - { - indexed: true, - internalType: 'address', - name: 'from', - type: 'address', - }, - { indexed: true, internalType: 'address', name: 'to', type: 'address' }, - { - indexed: true, - internalType: 'uint256', - name: 'tokenId', - type: 'uint256', - }, - ], - name: 'Transfer', - type: 'event', - }, - { - inputs: [], - name: 'DOMAIN_SEPARATOR', - outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'PERMIT_TYPEHASH', - outputs: [{ internalType: 'bytes32', name: '', type: 'bytes32' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'WETH9', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'to', type: 'address' }, - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - ], - name: 'approve', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [{ internalType: 'address', name: 'owner', type: 'address' }], - name: 'balanceOf', - outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'baseURI', - outputs: [{ internalType: 'string', name: '', type: 'string' }], - stateMutability: 'pure', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }], - name: 'burn', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - components: [ - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { internalType: 'address', name: 'recipient', type: 'address' }, - { internalType: 'uint128', name: 'amount0Max', type: 'uint128' }, - { internalType: 'uint128', name: 'amount1Max', type: 'uint128' }, - ], - internalType: 'struct INonfungiblePositionManager.CollectParams', - name: 'params', - type: 'tuple', - }, - ], - name: 'collect', - outputs: [ - { internalType: 'uint256', name: 'amount0', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1', type: 'uint256' }, - ], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token0', type: 'address' }, - { internalType: 'address', name: 'token1', type: 'address' }, - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - { internalType: 'uint160', name: 'sqrtPriceX96', type: 'uint160' }, - ], - name: 'createAndInitializePoolIfNecessary', - outputs: [{ internalType: 'address', name: 'pool', type: 'address' }], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { - components: [ - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { internalType: 'uint128', name: 'liquidity', type: 'uint128' }, - { internalType: 'uint256', name: 'amount0Min', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1Min', type: 'uint256' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - ], - internalType: - 'struct INonfungiblePositionManager.DecreaseLiquidityParams', - name: 'params', - type: 'tuple', - }, - ], - name: 'decreaseLiquidity', - outputs: [ - { internalType: 'uint256', name: 'amount0', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1', type: 'uint256' }, - ], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'factory', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }], - name: 'getApproved', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - components: [ - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { - internalType: 'uint256', - name: 'amount0Desired', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'amount1Desired', - type: 'uint256', - }, - { internalType: 'uint256', name: 'amount0Min', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1Min', type: 'uint256' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - ], - internalType: - 'struct INonfungiblePositionManager.IncreaseLiquidityParams', - name: 'params', - type: 'tuple', - }, - ], - name: 'increaseLiquidity', - outputs: [ - { internalType: 'uint128', name: 'liquidity', type: 'uint128' }, - { internalType: 'uint256', name: 'amount0', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1', type: 'uint256' }, - ], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'owner', type: 'address' }, - { internalType: 'address', name: 'operator', type: 'address' }, - ], - name: 'isApprovedForAll', - outputs: [{ internalType: 'bool', name: '', type: 'bool' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { - components: [ - { internalType: 'address', name: 'token0', type: 'address' }, - { internalType: 'address', name: 'token1', type: 'address' }, - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - { internalType: 'int24', name: 'tickLower', type: 'int24' }, - { internalType: 'int24', name: 'tickUpper', type: 'int24' }, - { - internalType: 'uint256', - name: 'amount0Desired', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'amount1Desired', - type: 'uint256', - }, - { internalType: 'uint256', name: 'amount0Min', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1Min', type: 'uint256' }, - { internalType: 'address', name: 'recipient', type: 'address' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - ], - internalType: 'struct INonfungiblePositionManager.MintParams', - name: 'params', - type: 'tuple', - }, - ], - name: 'mint', - outputs: [ - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { internalType: 'uint128', name: 'liquidity', type: 'uint128' }, - { internalType: 'uint256', name: 'amount0', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1', type: 'uint256' }, - ], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [{ internalType: 'bytes[]', name: 'data', type: 'bytes[]' }], - name: 'multicall', - outputs: [{ internalType: 'bytes[]', name: 'results', type: 'bytes[]' }], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'name', - outputs: [{ internalType: 'string', name: '', type: 'string' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }], - name: 'ownerOf', - outputs: [{ internalType: 'address', name: '', type: 'address' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'spender', type: 'address' }, - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - { internalType: 'uint8', name: 'v', type: 'uint8' }, - { internalType: 'bytes32', name: 'r', type: 'bytes32' }, - { internalType: 'bytes32', name: 's', type: 'bytes32' }, - ], - name: 'permit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }], - name: 'positions', - outputs: [ - { internalType: 'uint96', name: 'nonce', type: 'uint96' }, - { internalType: 'address', name: 'operator', type: 'address' }, - { internalType: 'address', name: 'token0', type: 'address' }, - { internalType: 'address', name: 'token1', type: 'address' }, - { internalType: 'uint24', name: 'fee', type: 'uint24' }, - { internalType: 'int24', name: 'tickLower', type: 'int24' }, - { internalType: 'int24', name: 'tickUpper', type: 'int24' }, - { internalType: 'uint128', name: 'liquidity', type: 'uint128' }, - { - internalType: 'uint256', - name: 'feeGrowthInside0LastX128', - type: 'uint256', - }, - { - internalType: 'uint256', - name: 'feeGrowthInside1LastX128', - type: 'uint256', - }, - { internalType: 'uint128', name: 'tokensOwed0', type: 'uint128' }, - { internalType: 'uint128', name: 'tokensOwed1', type: 'uint128' }, - ], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'refundETH', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'from', type: 'address' }, - { internalType: 'address', name: 'to', type: 'address' }, - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - ], - name: 'safeTransferFrom', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'from', type: 'address' }, - { internalType: 'address', name: 'to', type: 'address' }, - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - { internalType: 'bytes', name: '_data', type: 'bytes' }, - ], - name: 'safeTransferFrom', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token', type: 'address' }, - { internalType: 'uint256', name: 'value', type: 'uint256' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - { internalType: 'uint8', name: 'v', type: 'uint8' }, - { internalType: 'bytes32', name: 'r', type: 'bytes32' }, - { internalType: 'bytes32', name: 's', type: 'bytes32' }, - ], - name: 'selfPermit', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token', type: 'address' }, - { internalType: 'uint256', name: 'nonce', type: 'uint256' }, - { internalType: 'uint256', name: 'expiry', type: 'uint256' }, - { internalType: 'uint8', name: 'v', type: 'uint8' }, - { internalType: 'bytes32', name: 'r', type: 'bytes32' }, - { internalType: 'bytes32', name: 's', type: 'bytes32' }, - ], - name: 'selfPermitAllowed', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token', type: 'address' }, - { internalType: 'uint256', name: 'nonce', type: 'uint256' }, - { internalType: 'uint256', name: 'expiry', type: 'uint256' }, - { internalType: 'uint8', name: 'v', type: 'uint8' }, - { internalType: 'bytes32', name: 'r', type: 'bytes32' }, - { internalType: 'bytes32', name: 's', type: 'bytes32' }, - ], - name: 'selfPermitAllowedIfNecessary', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token', type: 'address' }, - { internalType: 'uint256', name: 'value', type: 'uint256' }, - { internalType: 'uint256', name: 'deadline', type: 'uint256' }, - { internalType: 'uint8', name: 'v', type: 'uint8' }, - { internalType: 'bytes32', name: 'r', type: 'bytes32' }, - { internalType: 'bytes32', name: 's', type: 'bytes32' }, - ], - name: 'selfPermitIfNecessary', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'operator', type: 'address' }, - { internalType: 'bool', name: 'approved', type: 'bool' }, - ], - name: 'setApprovalForAll', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [{ internalType: 'bytes4', name: 'interfaceId', type: 'bytes4' }], - name: 'supportsInterface', - outputs: [{ internalType: 'bool', name: '', type: 'bool' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'token', type: 'address' }, - { internalType: 'uint256', name: 'amountMinimum', type: 'uint256' }, - { internalType: 'address', name: 'recipient', type: 'address' }, - ], - name: 'sweepToken', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { - inputs: [], - name: 'symbol', - outputs: [{ internalType: 'string', name: '', type: 'string' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'index', type: 'uint256' }], - name: 'tokenByIndex', - outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'owner', type: 'address' }, - { internalType: 'uint256', name: 'index', type: 'uint256' }, - ], - name: 'tokenOfOwnerByIndex', - outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [{ internalType: 'uint256', name: 'tokenId', type: 'uint256' }], - name: 'tokenURI', - outputs: [{ internalType: 'string', name: '', type: 'string' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [], - name: 'totalSupply', - outputs: [{ internalType: 'uint256', name: '', type: 'uint256' }], - stateMutability: 'view', - type: 'function', - }, - { - inputs: [ - { internalType: 'address', name: 'from', type: 'address' }, - { internalType: 'address', name: 'to', type: 'address' }, - { internalType: 'uint256', name: 'tokenId', type: 'uint256' }, - ], - name: 'transferFrom', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { internalType: 'uint256', name: 'amount0Owed', type: 'uint256' }, - { internalType: 'uint256', name: 'amount1Owed', type: 'uint256' }, - { internalType: 'bytes', name: 'data', type: 'bytes' }, - ], - name: 'uniswapV3MintCallback', - outputs: [], - stateMutability: 'nonpayable', - type: 'function', - }, - { - inputs: [ - { internalType: 'uint256', name: 'amountMinimum', type: 'uint256' }, - { internalType: 'address', name: 'recipient', type: 'address' }, - ], - name: 'unwrapWETH9', - outputs: [], - stateMutability: 'payable', - type: 'function', - }, - { stateMutability: 'payable', type: 'receive' }, - ] as const, -}) - -export function useV3NonFungiblePositionManager( - chainId: SushiSwapV3ChainId | undefined, -) { - const publicClient = usePublicClient({ - chainId, - }) as PublicClient - const { data: walletClient } = useWalletClient({ chainId }) - - return useMemo(() => { - if (!chainId || (!publicClient && !walletClient)) return null - - return getContract({ - ...getV3NonFungiblePositionManagerContractConfig(chainId), - client: walletClient || publicClient!, - }) - }, [chainId, publicClient, walletClient]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts b/apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts deleted file mode 100644 index 307d22bb32..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/contracts/useV3TickLens.ts +++ /dev/null @@ -1,48 +0,0 @@ -import { useMemo } from 'react' -import { SUSHISWAP_V3_TICK_LENS, SushiSwapV3ChainId } from 'sushi/config' -import { Address, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -export const getV3TickLensContractConfig = (chainId: SushiSwapV3ChainId) => ({ - address: SUSHISWAP_V3_TICK_LENS[chainId] as Address, - abi: [ - { - inputs: [ - { internalType: 'address', name: 'pool', type: 'address' }, - { internalType: 'int16', name: 'tickBitmapIndex', type: 'int16' }, - ], - name: 'getPopulatedTicksInWord', - outputs: [ - { - components: [ - { internalType: 'int24', name: 'tick', type: 'int24' }, - { internalType: 'int128', name: 'liquidityNet', type: 'int128' }, - { - internalType: 'uint128', - name: 'liquidityGross', - type: 'uint128', - }, - ], - internalType: 'struct ITickLens.PopulatedTick[]', - name: 'populatedTicks', - type: 'tuple[]', - }, - ], - stateMutability: 'view', - type: 'function', - }, - ] as const, -}) - -export function useTickLensContract(chainId: SushiSwapV3ChainId | undefined) { - const client = usePublicClient({ chainId }) as any - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getV3TickLensContractConfig(chainId), - client, - }) - }, [chainId, client]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts index df971400a9..9dae02bc49 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts @@ -4,8 +4,7 @@ import { ChefType } from '@sushiswap/client' import { useMemo } from 'react' import { masterChefV1Abi, masterChefV2Abi, miniChefAbi } from 'sushi/abi' import { ChainId } from 'sushi/chain' -import { Address, getContract } from 'viem' -import { usePublicClient } from 'wagmi' +import { Address } from 'viem' // TODO move to package export const MASTERCHEF_ADDRESS = { @@ -90,15 +89,9 @@ export function useMasterChefContract( chainId: ChainId, chef: Omit, ) { - const client = usePublicClient({ chainId }) as any - return useMemo(() => { if (!chainId) return null - // @ts-ignore - return getContract({ - ...getMasterChefContractConfig(chainId, chef), - client, - }) - }, [chainId, client, chef]) + return getMasterChefContractConfig(chainId, chef) + }, [chainId, chef]) } diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts index 720a466370..c49f9848f5 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts @@ -1,11 +1,14 @@ -import { SushiSwapV3ChainId, SushiSwapV3FeeAmount } from 'sushi/config' +import { + SUSHISWAP_V3_FACTORY_ADDRESS, + SushiSwapV3ChainId, + SushiSwapV3FeeAmount, +} from 'sushi/config' import { Token, Type } from 'sushi/currency' import { SushiSwapV3Pool, computeSushiSwapV3PoolAddress } from 'sushi/pool' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' import { Address } from 'viem' -import { getV3FactoryContractConfig } from '../../contracts/useV3FactoryContract' export const getConcentratedLiquidityPools = async ({ chainId, @@ -42,7 +45,7 @@ export const getConcentratedLiquidityPools = async ({ (value) => value && computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[chainId], tokenA: value[0], tokenB: value[1], fee: value[2], diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts index e2b3aff828..ae0574571e 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts @@ -1,11 +1,9 @@ -import { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_FACTORY_ADDRESS, SushiSwapV3ChainId } from 'sushi/config' import { Amount } from 'sushi/currency' import { SushiSwapV3Pool, computeSushiSwapV3PoolAddress } from 'sushi/pool' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { getBalance } from '@wagmi/core' -import { getV3FactoryContractConfig } from '../../contracts/useV3FactoryContract' - export const getConcentratedLiquidityPoolReserves = async ({ pool, chainId, @@ -16,7 +14,7 @@ export const getConcentratedLiquidityPoolReserves = async ({ config: PublicWagmiConfig }) => { const address = computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[chainId], tokenA: pool.token0, tokenB: pool.token1, fee: pool.fee, diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts index da949b50c3..7809639b21 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedPositionOwner.ts @@ -1,8 +1,7 @@ -import { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId } from 'sushi/config' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from 'wagmi/actions' -import { getV3NonFungiblePositionManagerContractConfig } from '../../contracts/useV3NonFungiblePositionManager' export const getConcentratedPositionOwners = async ({ tokenIds, @@ -16,8 +15,7 @@ export const getConcentratedPositionOwners = async ({ ({ tokenId, chainId }) => ({ chainId, - address: - getV3NonFungiblePositionManagerContractConfig(chainId).address, + address: SUSHISWAP_V3_POSTIION_MANAGER[chainId], abi: [ { inputs: [ diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts index 1383e4b344..47577be7c8 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getTridentStablePools.ts @@ -1,12 +1,14 @@ import { TridentStablePool } from 'sushi' import { tridentStablePoolAbi, tridentStablePoolFactoryAbi } from 'sushi/abi' -import { TridentChainId } from 'sushi/config' +import { + TRIDENT_STABLE_POOL_FACTORY_ADDRESS, + TridentChainId, +} from 'sushi/config' import { Amount, Currency, Token } from 'sushi/currency' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { Address, getContract } from 'viem' -import { getPublicClient, readContracts } from 'wagmi/actions' -import { getTridentStablePoolFactoryContract } from '../../../contracts/actions/getTridentStablePoolFactoryContract' +import { Address } from 'viem' +import { readContracts } from 'wagmi/actions' import { pairsUnique } from './utils' export enum TridentStablePoolState { @@ -28,12 +30,7 @@ export const getTridentStablePools = async ( totals: Map, config: PublicWagmiConfig, ) => { - const client = getPublicClient(config, { chainId }) - - const contract = getContract({ - ...getTridentStablePoolFactoryContract(chainId), - client, - }) + const contract = TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId] const _pairsUnique = pairsUnique(currencies) const _pairsUniqueAddr = _pairsUnique.map( @@ -45,7 +42,7 @@ export const getTridentStablePools = async ( (el) => ({ chainId, - address: contract?.address, + address: contract, abi: tridentStablePoolFactoryAbi, functionName: 'poolsCount', args: el, @@ -80,7 +77,7 @@ export const getTridentStablePools = async ( (args) => ({ chainId, - address: contract?.address, + address: contract, abi: tridentStablePoolFactoryAbi, functionName: 'getPools', args, diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts deleted file mode 100644 index 7a6d28b0c1..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { useMemo } from 'react' -import { tridentConstantPoolFactoryAbi } from 'sushi/abi' -import { - TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, - TridentChainId, -} from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -export const getTridentConstantPoolFactoryContract = ( - chainId: TridentChainId, -) => ({ - address: TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId], - abi: tridentConstantPoolFactoryAbi, -}) - -export function useTridentConstantPoolFactoryContract( - chainId: TridentChainId | undefined, -) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentConstantPoolFactoryContract(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts deleted file mode 100644 index 7f491afa34..0000000000 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts +++ /dev/null @@ -1,22 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { TridentChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' -import { getTridentStablePoolFactoryContract } from '../../../contracts/actions/getTridentStablePoolFactoryContract' - -export function useTridentStablePoolFactoryContract( - chainId: TridentChainId | undefined, -) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentStablePoolFactoryContract(chainId), - client, - }) - }, [chainId, client]) -} diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts index 29e0a946c9..30c0f5b172 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useTridentStablePools.ts @@ -2,7 +2,11 @@ import { useEffect, useMemo } from 'react' import { tridentStablePoolAbi, tridentStablePoolFactoryAbi } from 'sushi/abi' -import { TridentChainId, isTridentChainId } from 'sushi/config' +import { + TRIDENT_STABLE_POOL_FACTORY_ADDRESS, + TridentChainId, + isTridentChainId, +} from 'sushi/config' import { BentoBoxChainId } from 'sushi/config' import { Amount, Currency, Token, Type } from 'sushi/currency' import { Fee } from 'sushi/dex' @@ -17,7 +21,6 @@ import { useQueryClient } from '@tanstack/react-query' import { Address } from 'viem' import { useBentoBoxTotals } from '../../bentobox/hooks/useBentoBoxTotals' import { TridentStablePoolState } from '../actions/getTridentStablePools' -import { useTridentStablePoolFactoryContract } from './useTridentStablePoolFactoryContract' interface Rebase { base: bigint @@ -50,7 +53,7 @@ export function useGetTridentStablePools( isError: boolean data: [TridentStablePoolState, TridentStablePool | null][] } { - const contract = useTridentStablePoolFactoryContract(chainId) + const contract = chainId ? TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId] : null const pairsUnique = useMemo(() => { const pairsMap = new Map() currencies.map(([c1, c2]) => { @@ -94,7 +97,7 @@ export function useGetTridentStablePools( } = useReadContracts({ contracts: pairsUniqueAddr.map((el) => ({ chainId, - address: contract?.address as Address, + address: contract as Address, abi: tridentStablePoolFactoryAbi, functionName: 'poolsCount' as const, args: el as [Address, Address], @@ -137,12 +140,12 @@ export function useGetTridentStablePools( if (!callStatePoolsCountProcessed) return [] return callStatePoolsCountProcessed.map((args) => ({ chainId, - address: contract?.address as Address, + address: contract as Address, abi: tridentStablePoolFactoryAbi, functionName: 'getPools' as const, args, })) - }, [callStatePoolsCountProcessed, chainId, contract?.address]), + }, [callStatePoolsCountProcessed, chainId, contract]), query: { enabled: Boolean( callStatePoolsCountProcessed && @@ -294,7 +297,7 @@ export function useTridentStablePools( chainId: TridentChainId, pools: PoolInput[], ): [TridentStablePoolState, TridentStablePool | null][] { - const stablePoolFactory = useTridentStablePoolFactoryContract(chainId) + const stablePoolFactory = TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId] const input = useMemo( () => @@ -309,7 +312,7 @@ export function useTridentStablePools( twap !== undefined && currencyA.chainId === currencyB.chainId && !currencyA.wrapped.equals(currencyB.wrapped) && - stablePoolFactory?.address && + stablePoolFactory && total0 && total1, ) @@ -325,7 +328,7 @@ export function useTridentStablePools( total1, ], ), - [stablePoolFactory?.address, pools], + [stablePoolFactory, pools], ) const poolsAddresses = useMemo( @@ -334,7 +337,7 @@ export function useTridentStablePools( ? input.reduce((acc, [tokenA, tokenB, fee]) => { acc.push( computeTridentStablePoolAddress({ - factoryAddress: stablePoolFactory.address, + factoryAddress: stablePoolFactory, tokenA, tokenB, fee, diff --git a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts index e3ee0c6fd5..6e2c21520b 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionFees.ts @@ -1,7 +1,6 @@ import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { simulateContract } from '@wagmi/core/actions' -import { SushiSwapV3ChainId } from 'sushi/config' -import { getV3NonFungiblePositionManagerContractConfig } from '../../contracts/useV3NonFungiblePositionManager' +import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId } from 'sushi/config' import { getConcentratedPositionOwners } from '../../pools/actions/getConcentratedPositionOwner' const MAX_UINT128 = 2n ** 128n - 1n @@ -73,8 +72,7 @@ export const getConcentratedLiquidityPositionFees = async ({ result = await simulateContract(config, { chainId: el.chainId, abi: abiShard, - address: getV3NonFungiblePositionManagerContractConfig(el.chainId) - .address, + address: SUSHISWAP_V3_POSTIION_MANAGER[el.chainId], functionName: 'collect', args: [ { diff --git a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts index dc335c7f48..72a67f6254 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts @@ -1,12 +1,15 @@ import { ChainId } from 'sushi/chain' -import { SUSHISWAP_V3_INIT_CODE_HASH, SushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_FACTORY_ADDRESS, + SUSHISWAP_V3_INIT_CODE_HASH, + SUSHISWAP_V3_POSTIION_MANAGER, + SushiSwapV3ChainId, +} from 'sushi/config' import { computeSushiSwapV3PoolAddress } from 'sushi/pool' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' import { erc20Abi } from 'viem' -import { getV3FactoryContractConfig } from '../../contracts/useV3FactoryContract' -import { getV3NonFungiblePositionManagerContractConfig } from '../../contracts/useV3NonFungiblePositionManager' import { ConcentratedLiquidityPosition } from '../types' import { getConcentratedLiquidityPositionFees } from './getConcentratedLiquidityPositionFees' import { getConcentratedLiquidityPositionsFromTokenIds } from './getConcentratedLiquidityPositionsFromTokenIds' @@ -53,7 +56,7 @@ export const getConcentratedLiquidityPositions = async ({ contracts: chainIds.map( (el) => ({ - address: getV3NonFungiblePositionManagerContractConfig(el).address, + address: SUSHISWAP_V3_POSTIION_MANAGER[el], abi: erc20Abi, chainId: el, functionName: 'balanceOf' as const, @@ -85,8 +88,7 @@ export const getConcentratedLiquidityPositions = async ({ ([_chainId, account, index]) => ({ chainId: _chainId, - address: - getV3NonFungiblePositionManagerContractConfig(_chainId).address, + address: SUSHISWAP_V3_POSTIION_MANAGER[_chainId], abi: abiShard, functionName: 'tokenOfOwnerByIndex' as const, args: [account, BigInt(index)], @@ -114,7 +116,7 @@ export const getConcentratedLiquidityPositions = async ({ return positions.filter(Boolean).map((el, i) => ({ ...el, address: computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(el.chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[el.chainId], tokenA: el.token0, tokenB: el.token1, fee: el.fee, diff --git a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts index 4d67dca324..4068f75ba9 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts @@ -1,10 +1,12 @@ -import { SushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_FACTORY_ADDRESS, + SUSHISWAP_V3_POSTIION_MANAGER, + SushiSwapV3ChainId, +} from 'sushi/config' import { computeSushiSwapV3PoolAddress } from 'sushi/pool' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' -import { getV3FactoryContractConfig } from '../../contracts/useV3FactoryContract' -import { getV3NonFungiblePositionManagerContractConfig } from '../../contracts/useV3NonFungiblePositionManager' import { ConcentratedLiquidityPosition } from '../types' import { getConcentratedLiquidityPositionFees } from './getConcentratedLiquidityPositionFees' @@ -94,8 +96,7 @@ export const getConcentratedLiquidityPositionsFromTokenIds = async ({ }): Promise => { const results = await readContracts(config, { contracts: tokenIds.map((el) => ({ - address: getV3NonFungiblePositionManagerContractConfig(el.chainId) - .address, + address: SUSHISWAP_V3_POSTIION_MANAGER[el.chainId], abi: abiShard, chainId: el.chainId, functionName: 'positions', @@ -128,7 +129,7 @@ export const getConcentratedLiquidityPositionsFromTokenIds = async ({ return { id: tokenId.toString(), address: computeSushiSwapV3PoolAddress({ - factoryAddress: getV3FactoryContractConfig(chainId).address, + factoryAddress: SUSHISWAP_V3_FACTORY_ADDRESS[chainId], tokenA: token0, tokenB: token1, fee: fee, diff --git a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts index 1931f67131..78a9f9cb74 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner.ts @@ -1,8 +1,6 @@ -import { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId } from 'sushi/config' import { useReadContract } from 'wagmi' -import { getV3NonFungiblePositionManagerContractConfig } from '../../contracts/useV3NonFungiblePositionManager' - export const useConcentratedPositionOwner = ({ chainId, tokenId, @@ -12,7 +10,7 @@ export const useConcentratedPositionOwner = ({ }) => { const query = useReadContract({ chainId, - address: getV3NonFungiblePositionManagerContractConfig(chainId).address, + address: SUSHISWAP_V3_POSTIION_MANAGER[chainId], abi: [ { inputs: [ diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx index 7b1a93c2ef..7c1afdcaf4 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx @@ -22,13 +22,16 @@ import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Bound } from 'src/lib/constants' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' -import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' import { getDefaultTTL, useTransactionDeadline, } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' import { Chain, ChainId } from 'sushi/chain' -import { SushiSwapV3FeeAmount, isSushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_POSTIION_MANAGER, + SushiSwapV3FeeAmount, + isSushiSwapV3ChainId, +} from 'sushi/config' import { Amount, Type, tryParseAmount } from 'sushi/currency' import { NonfungiblePositionManager, Position } from 'sushi/pool' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' @@ -201,7 +204,7 @@ export const AddSectionReviewModalConcentrated: FC< }) return { - to: getV3NonFungiblePositionManagerContractConfig(chainId).address, + to: SUSHISWAP_V3_POSTIION_MANAGER[chainId], account: address, chainId, data: calldata as Hex, diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx index a1b95ee142..c5ba341e8f 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx @@ -25,7 +25,11 @@ import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' import { TridentConstantPool, TridentStablePool } from 'sushi' import { slippageAmount } from 'sushi/calculate' import { ChainId } from 'sushi/chain' -import { BentoBoxChainId, TridentChainId } from 'sushi/config' +import { + BentoBoxChainId, + TRIDENT_ROUTER_ADDRESS, + TridentChainId, +} from 'sushi/config' import { Amount, Token, Type } from 'sushi/currency' import { Percent, ZERO } from 'sushi/math' import { @@ -40,7 +44,6 @@ import { import { SlippageToleranceStorageKey } from '@sushiswap/hooks' import { useBentoBoxTotals } from 'src/lib/wagmi/hooks/bentobox/hooks/useBentoBoxTotals' -import { useTridentRouterContract } from 'src/lib/wagmi/hooks/contracts/useTridentRouter' import { TridentConstantPoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentConstantPools' import { TridentStablePoolState } from 'src/lib/wagmi/hooks/pools/actions/getTridentStablePools' import { useTotalSupply } from 'src/lib/wagmi/hooks/tokens/useTotalSupply' @@ -49,6 +52,7 @@ import { useApprovedActions, useSignature, } from 'src/lib/wagmi/systems/Checker/Provider' +import { tridentRouterAbi } from 'sushi/abi' import { UseCallParameters, useAccount, @@ -109,7 +113,7 @@ export const AddSectionReviewModalTrident: FC< const totalSupply = useTotalSupply(liquidityToken) const tokens = useMemo(() => [token0, token1], [token0, token1]) const { data: rebases } = useBentoBoxTotals({ chainId, currencies: tokens }) - const contract = useTridentRouterContract(chainId) + const contractAddress = TRIDENT_ROUTER_ADDRESS[chainId] const [slippageTolerance] = useSlippageTolerance( SlippageToleranceStorageKey.AddLiquidity, ) @@ -231,7 +235,7 @@ export const AddSectionReviewModalTrident: FC< !token0 || !token1 || !chainId || - !contract || + !contractAddress || !input0 || !input1 || !address || @@ -277,7 +281,7 @@ export const AddSectionReviewModalTrident: FC< if (liquidityInput.length === 0) return return { - to: contract.address, + to: contractAddress, account: address, chainId, data: batchAction({ @@ -286,7 +290,7 @@ export const AddSectionReviewModalTrident: FC< signature: signature, }), encodeFunctionData({ - ...contract, + abi: tridentRouterAbi, functionName: 'addLiquidity', args: [ liquidityInput, @@ -308,7 +312,7 @@ export const AddSectionReviewModalTrident: FC< token0, token1, chainId, - contract, + contractAddress, input0, input1, address, diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx index 69accb6741..9a8467b718 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx @@ -2,10 +2,12 @@ import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' import { FC, ReactElement, useCallback, useMemo } from 'react' -import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' import { ConcentratedLiquidityPosition } from 'src/lib/wagmi/hooks/positions/types' import { ChainId } from 'sushi/chain' -import { isSushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_POSTIION_MANAGER, + isSushiSwapV3ChainId, +} from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' import { NonfungiblePositionManager, Position } from 'sushi/pool' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' @@ -73,7 +75,7 @@ export const ConcentratedLiquidityCollectButton: FC< }) return { - to: getV3NonFungiblePositionManagerContractConfig(chainId).address, + to: SUSHISWAP_V3_POSTIION_MANAGER[chainId], chainId, data: calldata as Hex, value: BigInt(value), diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx index 92bfdb7ab0..aef664f627 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx @@ -34,7 +34,6 @@ import { Button } from '@sushiswap/ui/components/button' import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' import React, { FC, useCallback, useMemo, useState } from 'react' import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' -import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' import { ConcentratedLiquidityPosition } from 'src/lib/wagmi/hooks/positions/types' import { getDefaultTTL, @@ -42,7 +41,11 @@ import { } from 'src/lib/wagmi/hooks/utils/hooks/useTransactionDeadline' import { Checker } from 'src/lib/wagmi/systems/Checker' import { Chain } from 'sushi/chain' -import { SushiSwapV3ChainId, isSushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_POSTIION_MANAGER, + SushiSwapV3ChainId, + isSushiSwapV3ChainId, +} from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' import { Percent, ZERO } from 'sushi/math' import { NonfungiblePositionManager, Position } from 'sushi/pool' @@ -205,7 +208,7 @@ export const ConcentratedLiquidityRemoveWidget: FC< }) return { - to: getV3NonFungiblePositionManagerContractConfig(chainId).address, + to: SUSHISWAP_V3_POSTIION_MANAGER[chainId], data: calldata as Hex, value: BigInt(_value), } diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx index 482a905669..41413b361a 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx @@ -7,6 +7,7 @@ import { Button } from '@sushiswap/ui/components/button' import { FC, Fragment, useCallback, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { + SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId, SushiSwapV3FeeAmount, isWNativeSupported, @@ -15,7 +16,6 @@ import { Type } from 'sushi/currency' import { Position } from 'sushi/pool' import { Web3Input } from 'src/lib/wagmi/components/web3-input' -import { getV3NonFungiblePositionManagerContractConfig } from 'src/lib/wagmi/hooks/contracts/useV3NonFungiblePositionManager' import { useConcentratedPositionOwner } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner' import { Checker } from 'src/lib/wagmi/systems/Checker' import { Bound, Field } from '../../lib/constants' @@ -261,19 +261,14 @@ export const ConcentratedLiquidityWidget: FC = ({ fullWidth id="approve-erc20-0" amount={parsedAmounts[Field.CURRENCY_A]} - contract={ - getV3NonFungiblePositionManagerContractConfig(chainId).address - } + contract={SUSHISWAP_V3_POSTIION_MANAGER[chainId]} enabled={!depositADisabled} > = const { approved } = useApproved(APPROVE_TAG_REMOVE_TRIDENT) const { signature } = useSignature(APPROVE_TAG_REMOVE_TRIDENT) const { setSignature } = useApprovedActions(APPROVE_TAG_REMOVE_TRIDENT) - const contract = useTridentRouterContract(_pool.chainId as TridentChainId) + const contractAddress = + TRIDENT_ROUTER_ADDRESS[_pool.chainId as TridentChainId] const [slippageTolerance] = useSlippageTolerance( SlippageToleranceStorageKey.RemoveLiquidity, ) @@ -210,7 +211,7 @@ export const RemoveSectionTrident: FC = !token0 || !token1 || !_pool.chainId || - !contract || + !contractAddress || !minAmount0 || !minAmount1 || !address || @@ -252,7 +253,7 @@ export const RemoveSectionTrident: FC = burnLiquidityAction({ address: pool.liquidityToken.address, amount: slpAmountToRemove.quotient, - recipient: indexOfWETH >= 0 ? contract.address : address, + recipient: indexOfWETH >= 0 ? contractAddress : address, liquidityOutput, receiveToWallet: true, }), @@ -273,7 +274,7 @@ export const RemoveSectionTrident: FC = return { account: address, - to: contract.address, + to: contractAddress, chainId: _pool.chainId as ChainId, data: batchAction({ actions, @@ -288,7 +289,7 @@ export const RemoveSectionTrident: FC = token0, token1, _pool.chainId, - contract, + contractAddress, minAmount0, minAmount1, address, @@ -368,11 +369,7 @@ export const RemoveSectionTrident: FC = fullWidth chainId={chainId} id="remove-liquidity-trident-approve-bentobox" - masterContract={ - getTridentRouterContractConfig( - _pool.chainId as TridentChainId, - ).address - } + masterContract={contractAddress} > = fullWidth id="approve-remove-liquidity-slp" amount={slpAmountToRemove} - contract={ - getTridentRouterContractConfig( - _pool.chainId as TridentChainId, - ).address - } + contract={contractAddress} > - - ) -} +// return ( +//
+//
+//
+//
+// +//
+// +// {_token.name} +// +// {_token.symbol} +//
+// +// {price.includes('NaN') ? '$0.00' : price} +// +//
+// +//
+// ) +// } diff --git a/apps/evm/src/ui/analytics/token-page-information.tsx b/apps/evm/src/ui/analytics/token-page-information.tsx index f048bcb777..a80d652d70 100644 --- a/apps/evm/src/ui/analytics/token-page-information.tsx +++ b/apps/evm/src/ui/analytics/token-page-information.tsx @@ -1,89 +1,89 @@ -'use client' +// 'use client' -import { ExternalLinkIcon } from '@heroicons/react-v1/solid' -import { Token as GraphToken } from '@sushiswap/graph-client' -import { ClipboardController, LinkExternal } from '@sushiswap/ui' -import { Currency } from '@sushiswap/ui/components/currency' -import { - Table, - TableBody, - TableCell, - TableHead, - TableHeader, - TableRow, -} from '@sushiswap/ui/components/table' -import { FC } from 'react' -import { Chain } from 'sushi/chain' -import { shortenAddress } from 'sushi/format' +// import { ExternalLinkIcon } from '@heroicons/react-v1/solid' +// import { Token as GraphToken } from '@sushiswap/graph-client' +// import { ClipboardController, LinkExternal } from '@sushiswap/ui' +// import { Currency } from '@sushiswap/ui/components/currency' +// import { +// Table, +// TableBody, +// TableCell, +// TableHead, +// TableHeader, +// TableRow, +// } from '@sushiswap/ui/components/table' +// import { FC } from 'react' +// import { Chain } from 'sushi/chain' +// import { shortenAddress } from 'sushi/format' -import { useTokenFromToken } from '../../lib/hooks/useTokenFromToken' +// import { useTokenFromToken } from '../../lib/hooks/useTokenFromToken' -interface TokenInformation { - token: GraphToken -} +// interface TokenInformation { +// token: GraphToken +// } -export const TokenInformation: FC = ({ token }) => { - const _token = useTokenFromToken(token) - const chain = Chain.from(_token.chainId) as Chain +// export const TokenInformation: FC = ({ token }) => { +// const _token = useTokenFromToken(token) +// const chain = Chain.from(_token.chainId) as Chain - return ( -
-

Token Information

- - - -
Symbol
-
- -
Name
-
- -
Address
-
- -
Action
-
-
- - - -

- {_token.symbol} -

-
- -
- -

- {_token.name} -

-
-
- - - {({ setCopied }) => ( - setCopied(_token.wrapped.address)} - onKeyDown={() => setCopied(_token.wrapped.address)} - className="text-sm font-medium" - > - {shortenAddress(_token.wrapped.address)} - - )} - - - - -

View

- -
-
-
-
-
-
- ) -} +// return ( +//
+//

Token Information

+// +// +// +//
Symbol
+//
+// +//
Name
+//
+// +//
Address
+//
+// +//
Action
+//
+//
+// +// +// +//

+// {_token.symbol} +//

+//
+// +//
+// +//

+// {_token.name} +//

+//
+//
+// +// +// {({ setCopied }) => ( +// setCopied(_token.wrapped.address)} +// onKeyDown={() => setCopied(_token.wrapped.address)} +// className="text-sm font-medium" +// > +// {shortenAddress(_token.wrapped.address)} +// +// )} +// +// +// +// +//

View

+// +//
+//
+//
+//
+//
+//
+// ) +// } diff --git a/apps/evm/src/ui/analytics/token-page-pairs.tsx b/apps/evm/src/ui/analytics/token-page-pairs.tsx index cead27c647..b3c2772af2 100644 --- a/apps/evm/src/ui/analytics/token-page-pairs.tsx +++ b/apps/evm/src/ui/analytics/token-page-pairs.tsx @@ -1,140 +1,140 @@ -'use client' +// 'use client' -import { usePools } from '@sushiswap/client/hooks' -import { Token as GraphToken } from '@sushiswap/graph-client' -import { LinkExternal, LinkInternal } from '@sushiswap/ui' -import { Currency } from '@sushiswap/ui/components/currency' -import { - Table, - TableBody, - TableCell, - TableHead, - TableHeader, - TableRow, -} from '@sushiswap/ui/components/table' -import React, { FC } from 'react' -import chains from 'sushi/chain' -import { Native, Token } from 'sushi/currency' -import { formatPercent, formatUSD } from 'sushi/format' -import { useSWRConfig } from 'swr' +// import { usePools } from '@sushiswap/client/hooks' +// import { Token as GraphToken } from '@sushiswap/graph-client' +// import { LinkExternal, LinkInternal } from '@sushiswap/ui' +// import { Currency } from '@sushiswap/ui/components/currency' +// import { +// Table, +// TableBody, +// TableCell, +// TableHead, +// TableHeader, +// TableRow, +// } from '@sushiswap/ui/components/table' +// import React, { FC } from 'react' +// import chains from 'sushi/chain' +// import { Native, Token } from 'sushi/currency' +// import { formatPercent, formatUSD } from 'sushi/format' +// import { useSWRConfig } from 'swr' -interface TokenPairs { - token: GraphToken -} +// interface TokenPairs { +// token: GraphToken +// } -export const TokenPairs: FC = ({ token }) => { - const { data: pools } = usePools({ - args: { ids: token.pairs.map(({ pair }) => pair.id) }, - swrConfig: useSWRConfig(), - }) +// export const TokenPairs: FC = ({ token }) => { +// const { data: pools } = usePools({ +// args: { ids: [...token.pairBase.map(({ pair }) => pair.id), ...token.pairQuote.map(({ pair }) => pair.id)] }, +// swrConfig: useSWRConfig(), +// }) - return ( -
-

Trending Pairs

- - - -
Name
-
- -
TVL
-
- -
Volume (7d)
-
- -
APY
-
-
- - {pools && - token.pairs.map(({ pair }, i) => { - const _pool = pools.find((pool) => pool.id === pair.id) +// return ( +//
+//

Trending Pairs

+//
+// +// +//
Name
+//
+// +//
TVL
+//
+// +//
Volume (7d)
+//
+// +//
APY
+//
+//
+// +// {pools && +// token.pairs.map(({ pair }, i) => { +// const _pool = pools.find((pool) => pool.id === pair.id) - const [token0, token1] = [ - pair.token0.id === Native.onChain(token.chainId).wrapped.address - ? Native.onChain(token.chainId) - : new Token({ - address: pair.token0.id, - chainId: pair.chainId, - decimals: Number(pair.token0.decimals), - symbol: pair.token0.symbol, - }), - pair.token1.id === Native.onChain(token.chainId).wrapped.address - ? Native.onChain(token.chainId) - : new Token({ - address: pair.token1.id, - chainId: pair.chainId, - decimals: Number(pair.token1.decimals), - symbol: pair.token1.symbol, - }), - ] +// const [token0, token1] = [ +// pair.token0.id === Native.onChain(token.chainId).wrapped.address +// ? Native.onChain(token.chainId) +// : new Token({ +// address: pair.token0.id, +// chainId: pair.chainId, +// decimals: Number(pair.token0.decimals), +// symbol: pair.token0.symbol, +// }), +// pair.token1.id === Native.onChain(token.chainId).wrapped.address +// ? Native.onChain(token.chainId) +// : new Token({ +// address: pair.token1.id, +// chainId: pair.chainId, +// decimals: Number(pair.token1.decimals), +// symbol: pair.token1.symbol, +// }), +// ] - const liquidityUSD = formatUSD(pair.liquidityUSD) - const volume1w = formatUSD(pair.volume1w) +// const liquidityUSD = formatUSD(pair.liquidityUSD) +// const volume1w = formatUSD(pair.volume1w) - return ( - - - -
- - - - - -

- {token0.symbol}{' '} - /{' '} - {token1.symbol} -

-
-
-
-
- - -

- {liquidityUSD.includes('NaN') ? '$0.00' : liquidityUSD} -

-
-
- - -

- {volume1w.includes('NaN') ? '$0.00' : volume1w} -

-
-
- - -

- {formatPercent(pair.feeApr)}{' '} - {/*{pool && pool.incentives.length > 0 && pool.incentiveApr > 0 && (*/} - {/* */} - {/*)}*/} -

-
-
-
- ) - })} -
-
-
- ) -} +// return ( +// +// +// +//
+// +// +// +// +// +//

+// {token0.symbol}{' '} +// /{' '} +// {token1.symbol} +//

+//
+//
+//
+//
+// +// +//

+// {liquidityUSD.includes('NaN') ? '$0.00' : liquidityUSD} +//

+//
+//
+// +// +//

+// {volume1w.includes('NaN') ? '$0.00' : volume1w} +//

+//
+//
+// +// +//

+// {formatPercent(pair.feeApr)}{' '} +// {/*{pool && pool.incentives.length > 0 && pool.incentiveApr > 0 && (*/} +// {/* */} +// {/*)}*/} +//

+//
+//
+//
+// ) +// })} +// +// +// +// ) +// } diff --git a/apps/evm/src/ui/analytics/token-page-stats.tsx b/apps/evm/src/ui/analytics/token-page-stats.tsx index bffbd20fe1..38228a739a 100644 --- a/apps/evm/src/ui/analytics/token-page-stats.tsx +++ b/apps/evm/src/ui/analytics/token-page-stats.tsx @@ -1,42 +1,42 @@ -import { Token as GraphToken } from '@sushiswap/graph-client' -import { FC } from 'react' -import { formatUSD } from 'sushi/format' +// import { Token as GraphToken } from '@sushiswap/graph-client' +// import { FC } from 'react' +// import { formatUSD } from 'sushi/format' -interface TokenStatsProps { - token: GraphToken -} +// interface TokenStatsProps { +// token: GraphToken +// } -export const TokenStats: FC = ({ token }) => { - const tvl = formatUSD(token.liquidityUSD) - const volume = formatUSD(token.volumeUSD) - const fees = formatUSD(token.feesUSD) +// export const TokenStats: FC = ({ token }) => { +// const tvl = formatUSD(token.liquidityUSD) +// const volume = formatUSD(token.volumeUSD) +// const fees = formatUSD(token.feesUSD) - return ( -
-
-

Liquidity

-

- {tvl.includes('NaN') ? '$0.00' : tvl} -

-
-
-

Volume

-

- {volume.includes('NaN') ? '$0.00' : volume} -

-
-
-

Fees

-

- {fees.includes('NaN') ? '$0.00' : fees} -

-
-
-

Market Cap

-

- {fees.includes('NaN') ? '$0.00' : fees} -

-
-
- ) -} +// return ( +//
+//
+//

Liquidity

+//

+// {tvl.includes('NaN') ? '$0.00' : tvl} +//

+//
+//
+//

Volume

+//

+// {volume.includes('NaN') ? '$0.00' : volume} +//

+//
+//
+//

Fees

+//

+// {fees.includes('NaN') ? '$0.00' : fees} +//

+//
+//
+//

Market Cap

+//

+// {fees.includes('NaN') ? '$0.00' : fees} +//

+//
+//
+// ) +// } diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx deleted file mode 100644 index 6d7178c3f3..0000000000 --- a/apps/evm/src/ui/pool/AddSectionReviewModalTrident.tsx +++ /dev/null @@ -1,401 +0,0 @@ -import { - DialogConfirm, - DialogContent, - DialogDescription, - DialogFooter, - DialogHeader, - DialogProvider, - DialogReview, - DialogTitle, - DialogTrigger, -} from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Dots } from '@sushiswap/ui/components/dots' -import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - TridentConstantPoolState, - TridentStablePoolState, - UseCallParameters, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTotalSupply, - useTridentRouterContract, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { - useApproved, - useApprovedActions, - useSignature, -} from '@sushiswap/wagmi/systems/Checker/Provider' -import { FC, ReactNode, useCallback, useMemo } from 'react' - -import { - LiquidityInput, - approveMasterContractAction, - batchAction, -} from 'src/lib/pool/trident' - -import { APPROVE_TAG_ADD_TRIDENT } from 'src/lib/constants' -import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' -import { TridentConstantPool, TridentStablePool } from 'sushi' -import { slippageAmount } from 'sushi/calculate' -import { ChainId } from 'sushi/chain' -import { BentoBoxChainId, TridentChainId } from 'sushi/config' -import { Amount, Token, Type } from 'sushi/currency' -import { Percent, ZERO } from 'sushi/math' -import { - Address, - SendTransactionReturnType, - UserRejectedRequestError, - encodeAbiParameters, - encodeFunctionData, - parseAbiParameters, - zeroAddress, -} from 'viem' - -import { SlippageToleranceStorageKey } from '@sushiswap/hooks' -import { AddSectionReviewModal } from './AddSectionReviewModal' - -interface AddSectionReviewModalTridentProps { - poolAddress: string - poolState: TridentConstantPoolState | TridentStablePoolState | undefined - pool: TridentConstantPool | TridentStablePool | null | undefined - chainId: TridentChainId - token0: Type | undefined - token1: Type | undefined - input0: Amount | undefined - input1: Amount | undefined - children: ReactNode - onSuccess: () => void -} - -const ZERO_PERCENT = new Percent('0') - -export const AddSectionReviewModalTrident: FC< - AddSectionReviewModalTridentProps -> = ({ - poolAddress, - poolState, - pool, - chainId, - token0, - token1, - input0, - input1, - children, - onSuccess: _onSuccess, -}) => { - const { address, chain } = useAccount() - const { signature } = useSignature(APPROVE_TAG_ADD_TRIDENT) - const { setSignature } = useApprovedActions(APPROVE_TAG_ADD_TRIDENT) - const { approved } = useApproved(APPROVE_TAG_ADD_TRIDENT) - const client = usePublicClient() - - const liquidityToken = useMemo(() => { - return new Token({ - address: poolAddress.includes(':') - ? poolAddress.split(':')[1] - : poolAddress, - name: 'SLP Token', - decimals: 18, - symbol: 'SLP', - chainId, - }) - }, [chainId, poolAddress]) - - const totalSupply = useTotalSupply(liquidityToken) - const tokens = useMemo(() => [token0, token1], [token0, token1]) - const { data: rebases } = useBentoBoxTotals({ chainId, currencies: tokens }) - const contract = useTridentRouterContract(chainId) - const [slippageTolerance] = useSlippageTolerance( - SlippageToleranceStorageKey.AddLiquidity, - ) - const [minAmount0, minAmount1] = useMemo(() => { - return [ - input0 - ? poolState === TridentConstantPoolState.NOT_EXISTS || - poolState === TridentStablePoolState.NOT_EXISTS - ? input0 - : Amount.fromRawAmount( - input0.currency, - slippageAmount(input0, slippageTolerance)[0], - ) - : undefined, - input1 - ? poolState === TridentConstantPoolState.NOT_EXISTS || - poolState === TridentStablePoolState.NOT_EXISTS - ? input1 - : Amount.fromRawAmount( - input1.currency, - slippageAmount(input1, slippageTolerance)[0], - ) - : undefined, - ] - }, [poolState, input0, input1, slippageTolerance]) - - const noLiquidity = useMemo(() => { - return ( - poolState === TridentConstantPoolState.NOT_EXISTS || - poolState === TridentStablePoolState.NOT_EXISTS || - Boolean(totalSupply && totalSupply.quotient === ZERO) || - Boolean( - pool && - pool.reserve0.quotient === ZERO && - pool.reserve1.quotient === ZERO, - ) - ) - }, [pool, poolState, totalSupply]) - - const liquidityMinted = useMemo(() => { - if ( - pool && - totalSupply && - token0 && - token1 && - input0 && - input1 && - rebases?.[token0.wrapped.address] && - rebases?.[token1.wrapped.address] - ) { - const amountA = input0.wrapped.toShare(rebases?.[token0.wrapped.address]) - const amountB = input1.wrapped.toShare(rebases?.[token1.wrapped.address]) - - // Both can't be zero - if (amountA.equalTo(ZERO) && amountB.equalTo(ZERO)) return undefined - - try { - const slp = pool.getLiquidityMinted(totalSupply, amountA, amountB) - const minSLP = slippageAmount( - slp, - noLiquidity ? ZERO_PERCENT : slippageTolerance, - )[0] - return Amount.fromRawAmount(slp.currency, minSLP.toString()) - } catch (error) { - console.error(error) - } - } - - return undefined - }, [ - noLiquidity, - input0, - input1, - pool, - rebases, - slippageTolerance, - token0, - token1, - totalSupply, - ]) - - const onSuccess = useCallback( - (hash: SendTransactionReturnType) => { - setSignature(undefined) - _onSuccess() - - if (!chain?.id || !token0 || !token1) return - - const ts = new Date().getTime() - createToast({ - account: address, - type: 'mint', - chainId: chain.id, - txHash: hash, - promise: client.waitForTransactionReceipt({ hash }), - summary: { - pending: `Adding liquidity to the ${token0.symbol}/${token1.symbol} pair`, - completed: `Successfully added liquidity to the ${token0.symbol}/${token1.symbol} pair`, - failed: 'Something went wrong when adding liquidity', - }, - timestamp: ts, - groupTimestamp: ts, - }) - }, - [client, address, chain, token0, token1, setSignature, _onSuccess], - ) - - const onError = useCallback((e: Error) => { - if (e instanceof UserRejectedRequestError) { - createErrorToast(e?.message, true) - } - }, []) - - const prepare = useMemo(() => { - try { - if ( - !chain?.id || - !pool || - !token0 || - !token1 || - !chainId || - !contract || - !input0 || - !input1 || - !address || - !minAmount0 || - !minAmount1 || - !liquidityMinted - ) - return - - let value = 0n - const liquidityInput: LiquidityInput[] = [] - const encoded = encodeAbiParameters(parseAbiParameters('address'), [ - address, - ]) - - if (input0) { - if (input0.currency.isNative) { - value = BigInt(input0.quotient.toString()) - } - - liquidityInput.push({ - token: input0.currency.isNative - ? zeroAddress - : (input0.currency.wrapped.address as Address), - native: true, - amount: BigInt(input0.quotient.toString()), - }) - } - - if (input1) { - if (input1.currency.isNative) { - value = BigInt(input1.quotient.toString()) - } - - liquidityInput.push({ - token: input1.currency.isNative - ? zeroAddress - : (input1.currency.wrapped.address as Address), - native: true, - amount: BigInt(input1.quotient.toString()), - }) - } - - if (liquidityInput.length === 0) return - return { - to: contract.address, - account: address, - chainId, - data: batchAction({ - actions: [ - approveMasterContractAction({ - signature: signature, - }), - encodeFunctionData({ - ...contract, - functionName: 'addLiquidity', - args: [ - liquidityInput, - pool.liquidityToken.address as Address, - BigInt(liquidityMinted.quotient.toString()), - encoded, - ], - }), - ], - }), - value, - } satisfies UseCallParameters - } catch (_e: unknown) { - // - } - }, [ - chain?.id, - pool, - token0, - token1, - chainId, - contract, - input0, - input1, - address, - minAmount0, - minAmount1, - liquidityMinted, - signature, - ]) - - const { isError: isSimulationError } = useCall({ - ...prepare, - query: { - enabled: Boolean( - approved && - minAmount0?.greaterThan(ZERO) && - minAmount1?.greaterThan(ZERO), - ), - }, - }) - - const { - sendTransactionAsync, - isLoading: isWritePending, - data: hash, - } = useSendTransaction({ - mutation: { - onSuccess, - onError, - }, - }) - - const send = useMemo(() => { - if (!prepare || isSimulationError) return undefined - - return async (confirm: () => void) => { - try { - await sendTransactionAsync(prepare) - - confirm() - } catch {} - } - }, [isSimulationError, prepare, sendTransactionAsync]) - - const { status } = useWaitForTransactionReceipt({ chainId, hash }) - - return ( - - - {({ confirm }) => ( - <> - {children} - - - Add liquidity - - Please review your entered details. - - - - - - - - - )} - - - - ) -} diff --git a/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx b/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx deleted file mode 100644 index 8f815caa06..0000000000 --- a/apps/evm/src/ui/pool/CreateSectionReviewModalTrident.tsx +++ /dev/null @@ -1,403 +0,0 @@ -import { - Button, - DialogConfirm, - DialogContent, - DialogDescription, - DialogFooter, - DialogHeader, - DialogProvider, - DialogReview, - DialogTitle, - DialogTrigger, - Dots, -} from '@sushiswap/ui' -import { createErrorToast, createToast } from '@sushiswap/ui/components/toast' -import { - PoolFinderType, - UseCallParameters, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTridentConstantPoolFactoryContract, - useTridentRouterContract, - useTridentStablePoolFactoryContract, - useWaitForTransactionReceipt, -} from '@sushiswap/wagmi' -import { - useApproved, - useApprovedActions, - useSignature, -} from '@sushiswap/wagmi/systems/Checker/Provider' -import { FC, ReactNode, useCallback, useMemo } from 'react' - -import { - LiquidityInput, - approveMasterContractAction, - batchAction, - deployNewPoolAction, -} from 'src/lib/pool/trident' - -import { APPROVE_TAG_CREATE_TRIDENT } from 'src/lib/constants' -import { - TridentConstantPool, - TridentStablePool, - computeTridentConstantPoolAddress, - computeTridentStablePoolAddress, -} from 'sushi' -import { ChainId } from 'sushi/chain' -import { BentoBoxChainId, TridentChainId } from 'sushi/config' -import { Amount, Type } from 'sushi/currency' -import { Fee } from 'sushi/dex' -import { - Address, - SendTransactionReturnType, - UserRejectedRequestError, - encodeAbiParameters, - encodeFunctionData, - parseAbiParameters, - zeroAddress, -} from 'viem' - -import { AddSectionReviewModal } from './AddSectionReviewModal' - -interface CreateSectionReviewModalTridentProps { - chainId: TridentChainId - token0: Type | undefined - token1: Type | undefined - input0: Amount | undefined - input1: Amount | undefined - fee: Fee - poolType: PoolFinderType - children: ReactNode -} - -export const CreateSectionReviewModalTrident: FC< - CreateSectionReviewModalTridentProps -> = ({ token0, token1, input0, input1, fee, poolType, chainId, children }) => { - const client = usePublicClient() - const { address, chain } = useAccount() - const { signature } = useSignature(APPROVE_TAG_CREATE_TRIDENT) - const { setSignature } = useApprovedActions(APPROVE_TAG_CREATE_TRIDENT) - const { approved } = useApproved(APPROVE_TAG_CREATE_TRIDENT) - const contract = useTridentRouterContract(chainId) - const constantProductPoolFactory = - useTridentConstantPoolFactoryContract(chainId) - const stablePoolFactory = useTridentStablePoolFactoryContract(chainId) - - const { data: totals } = useBentoBoxTotals({ - chainId, - currencies: useMemo(() => [token0, token1], [token0, token1]), - }) - - const pool = useMemo(() => { - if (!token0 || !token1 || !fee) return - if (poolType === PoolFinderType.Classic) { - return new TridentConstantPool( - Amount.fromRawAmount(token0.wrapped, 0), - Amount.fromRawAmount(token1.wrapped, 0), - fee, - false, - ) - } else if ( - poolType === PoolFinderType.Stable && - totals && - token0.wrapped.address in totals && - token1.wrapped.address in totals - ) { - return new TridentStablePool( - Amount.fromRawAmount(token0.wrapped, 0), - Amount.fromRawAmount(token1.wrapped, 0), - fee, - totals[token0.wrapped.address], - totals[token1.wrapped.address], - ) - } - }, [fee, token0, token1, poolType, totals]) - - const totalSupply = useMemo( - () => (pool ? Amount.fromRawAmount(pool?.liquidityToken, 0) : undefined), - [pool], - ) - - const factory = useMemo(() => { - switch (poolType) { - case PoolFinderType.Classic: - return constantProductPoolFactory - case PoolFinderType.Stable: - return stablePoolFactory - } - }, [constantProductPoolFactory, poolType, stablePoolFactory]) - - const poolAddress = useMemo(() => { - // !poolType === 0, don't guared against it - if (!factory || !token0 || !token1 || !fee) return - switch (poolType) { - case PoolFinderType.Classic: - return computeTridentConstantPoolAddress({ - factoryAddress: factory.address, - tokenA: token0.wrapped, - tokenB: token1.wrapped, - fee: fee, - twap: false, - }) as Address - case PoolFinderType.Stable: - return computeTridentStablePoolAddress({ - factoryAddress: factory.address, - tokenA: token0.wrapped, - tokenB: token1.wrapped, - fee: fee, - }) as Address - } - }, [factory, fee, token0, token1, poolType]) - - const isValid = useMemo(() => { - return Boolean( - chain?.id && - factory && - token0 && - token1 && - poolAddress && - input0 && - input1 && - totalSupply && - pool && - contract && - totals?.[token0.wrapped.address] && - totals?.[token1.wrapped.address], - ) - }, [ - chain?.id, - contract, - factory, - input0, - input1, - pool, - poolAddress, - token0, - token1, - totalSupply, - totals, - ]) - - const onSuccess = useCallback( - (hash: SendTransactionReturnType) => { - setSignature(undefined) - - if (!chain?.id || !token0 || !token1) return - - const ts = new Date().getTime() - createToast({ - account: address, - type: 'mint', - chainId: chain.id, - txHash: hash, - promise: client.waitForTransactionReceipt({ hash }), - summary: { - pending: `Adding liquidity to the ${token0.symbol}/${token1.symbol} pair`, - completed: `Successfully added liquidity to the ${token0.symbol}/${token1.symbol} pair`, - failed: 'Something went wrong when adding liquidity', - }, - timestamp: ts, - groupTimestamp: ts, - }) - }, - [client, chain, token0, token1, address, setSignature], - ) - - const onError = useCallback((e: Error) => { - if (e instanceof UserRejectedRequestError) { - createErrorToast(e?.message, true) - } - }, []) - - const prepare = useMemo(() => { - try { - if ( - !chain?.id || - !factory || - !token0 || - !token1 || - !poolAddress || - !input0 || - !input1 || - !totalSupply || - !pool || - !contract || - !totals?.[token0.wrapped.address] || - !totals?.[token1.wrapped.address] || - !address - ) { - return undefined - } - - let value - const liquidityInput: LiquidityInput[] = [] - const encoded = encodeAbiParameters(parseAbiParameters('address'), [ - address, - ]) - - if (input0) { - if (input0.currency.isNative) { - value = input0.quotient - } - - liquidityInput.push({ - token: input0.currency.isNative - ? zeroAddress - : (input0.currency.wrapped.address as Address), - native: true, - amount: BigInt(input0.quotient.toString()), - }) - } - - if (input1) { - if (input1.currency.isNative) { - value = input1.quotient - } - - liquidityInput.push({ - token: input1.currency.isNative - ? zeroAddress - : (input1.currency.wrapped.address as Address), - native: true, - amount: BigInt(input1.quotient.toString()), - }) - } - - return { - account: address, - to: contract.address, - value: value ?? 0n, - data: batchAction({ - actions: [ - approveMasterContractAction({ - signature: signature, - }), - deployNewPoolAction({ - assets: [input0.currency, input1.currency], - factory: factory.address, - feeTier: fee, - twap: false, - }), - encodeFunctionData({ - ...contract, - functionName: 'addLiquidity', - args: [ - liquidityInput, - poolAddress, - BigInt( - pool - .getLiquidityMinted( - totalSupply, - input0.wrapped.toShare(totals?.[token0.wrapped.address]), - input1.wrapped.toShare(totals?.[token1.wrapped.address]), - ) - .quotient.toString(), - ), - encoded, - ], - }), - ], - }), - } satisfies UseCallParameters - } catch (e: unknown) { - console.error(e) - } - }, [ - address, - chain?.id, - contract, - factory, - fee, - input0, - input1, - pool, - poolAddress, - signature, - token0, - token1, - totalSupply, - totals, - ]) - - const { isError: isSimulationError } = useCall({ - ...prepare, - query: { - enabled: Boolean(approved && totals), - }, - }) - - const { - sendTransactionAsync, - isLoading: isWritePending, - data: hash, - } = useSendTransaction({ - mutation: { - onSuccess, - onError, - }, - }) - - const send = useMemo(() => { - if (!prepare || isSimulationError) return - - return async (confirm: () => void) => { - try { - await sendTransactionAsync(prepare) - - confirm() - } catch {} - } - }, [isSimulationError, prepare, sendTransactionAsync]) - - const { status } = useWaitForTransactionReceipt({ chainId, hash }) - - return ( - - - {({ confirm }) => ( - <> - {children} - - - Create pool - - Please review your entered details. - - - - - - - - - )} - - - - ) -} diff --git a/apps/evm/src/ui/pool/ManageTridentLiquidityCard.tsx b/apps/evm/src/ui/pool/ManageTridentLiquidityCard.tsx deleted file mode 100644 index 3a8b47ea1c..0000000000 --- a/apps/evm/src/ui/pool/ManageTridentLiquidityCard.tsx +++ /dev/null @@ -1,150 +0,0 @@ -'use client' - -import { Pool } from '@sushiswap/client' -import { - Card, - CardContent, - CardDescription, - CardHeader, - CardTitle, - Message, - Separator, - Tabs, - TabsContent, - TabsList, - TabsTrigger, -} from '@sushiswap/ui' -import Link from 'next/link' -import { FC } from 'react' - -import { AddSectionStake } from './AddSectionStake' -import { PoolPositionProvider } from './PoolPositionProvider' -import { PoolPositionRewardsProvider } from './PoolPositionRewardsProvider' -import { PoolPositionStakedProvider } from './PoolPositionStakedProvider' -import { RemoveSectionTrident } from './RemoveSectionTrident' -import { RemoveSectionUnstake } from './RemoveSectionUnstake' - -interface ManageTridentLiquidityCard { - pool: Pool - tab?: 'stake' | 'unstake' | 'add' | 'remove' -} - -export const ManageTridentLiquidityCard: FC = ({ - pool, - tab = 'remove', -}) => { - const isFarm = pool.wasIncentivized || pool.isIncentivized - - return ( - - - Manage - Manage your position - - {}} - className="w-full" - defaultValue={tab} - > - - - - - Remove - - - {isFarm ? ( - - - Stake - - - ) : ( - - Stake - - )} - {isFarm ? ( - - - Unstake - - - ) : ( - - Unstake - - )} - - -
- -
- - - - - - - - - - - {isFarm ? ( - - ) : ( - - No farms available for this pool - - )} - - - - - {isFarm ? ( - - ) : ( - - No farms available for this pool - - )} - - - - - -
-
- ) -} diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index 129ec0fa68..ba1fde18a5 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -14,7 +14,7 @@ import { EChartsOption } from 'echarts-for-react/lib/types' import { FC, useCallback, useMemo } from 'react' import { usePoolGraphData } from 'src/lib/hooks' import { ChainId } from 'sushi/chain' -import { formatPercent, formatUSD } from 'sushi/format' +import { formatUSD } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' import resolveConfig from 'tailwindcss/resolveConfig' @@ -52,14 +52,14 @@ export const PoolChartGraph: FC = ({ const currentDate = Math.round(Date.now()) const [x, y] = data.reduce<[number[], number[]]>( (acc, cur) => { - if (cur.date * 1000 >= currentDate - chartPeriods[period]) { - acc[0].push(cur.date) + if (cur?.date * 1000 >= currentDate - chartPeriods[period]) { + acc[0].push(cur?.date) if (chart === PoolChartType.Fees) { - acc[1].push(Number(cur.volumeUSD * Number(swapFee))) + acc[1].push(Number(cur?.volumeUSD * Number(swapFee))) } else if (chart === PoolChartType.Volume) { - acc[1].push(Number(cur.volumeUSD)) + acc[1].push(Number(cur?.volumeUSD)) } else if (chart === PoolChartType.TVL) { - acc[1].push(Number(cur.liquidityUSD)) + acc[1].push(Number(cur?.liquidityUSD)) } } return acc @@ -83,11 +83,7 @@ export const PoolChartGraph: FC = ({ const nameNodes = document.getElementsByClassName('hoveredItemName') if (valueNodes[0]) { - if (chart === PoolChartType.APR) { - valueNodes[0].innerHTML = formatPercent(value) - } else { - valueNodes[0].innerHTML = formatUSD(value) - } + valueNodes[0].innerHTML = formatUSD(value) } if (valueNodes[1]) { @@ -128,11 +124,9 @@ export const PoolChartGraph: FC = ({ const date = new Date(Number(params[0].name * 1000)) return `
- ${ - chart === PoolChartType.APR - ? formatPercent(params[0].value) - : formatUSD(params[0].value) - } + ${formatUSD( + params[0].value, + )} ${ date instanceof Date && !Number.isNaN(date?.getTime()) ? format( @@ -185,10 +179,7 @@ export const PoolChartGraph: FC = ({ series: [ { name: 'Volume', - type: - chart === PoolChartType.TVL || chart === PoolChartType.APR - ? 'line' - : 'bar', + type: chart === PoolChartType.TVL ? 'line' : 'bar', smooth: true, xAxisIndex: 0, yAxisIndex: 0, @@ -216,9 +207,7 @@ export const PoolChartGraph: FC = ({ - {chart === PoolChartType.APR - ? formatPercent(yData[yData.length - 1]) - : formatUSD(yData[yData.length - 1])} + {formatUSD(yData[yData.length - 1])} {' '} {chart === PoolChartType.Volume && ( diff --git a/apps/evm/src/ui/pool/PoolChartV2.tsx b/apps/evm/src/ui/pool/PoolChartV2.tsx index 780a985b31..7b5d4ab0b6 100644 --- a/apps/evm/src/ui/pool/PoolChartV2.tsx +++ b/apps/evm/src/ui/pool/PoolChartV2.tsx @@ -11,8 +11,7 @@ import { PoolChartType, PoolChartTypes } from './PoolChartTypes' const charts = [ PoolChartType.Volume, PoolChartType.TVL, - PoolChartType.Fees, - PoolChartType.APR, + PoolChartType.Fees ] as const const periods = [ PoolChartPeriod.Day, diff --git a/apps/evm/src/ui/pool/PoolPageV2.tsx b/apps/evm/src/ui/pool/PoolPageV2.tsx index b8815cba2c..de6f7c6003 100644 --- a/apps/evm/src/ui/pool/PoolPageV2.tsx +++ b/apps/evm/src/ui/pool/PoolPageV2.tsx @@ -3,9 +3,8 @@ import { ManageV2LiquidityCard } from 'src/ui/pool/ManageV2LiquidityCard' import { PoolTransactionsV2 } from 'src/ui/pool/PoolTransactionsV2' import { ChainId } from 'sushi/chain' -import { Protocol, getPool } from '@sushiswap/client' +import { getPool } from '@sushiswap/client' import { FC } from 'react' -import { ManageTridentLiquidityCard } from './ManageTridentLiquidityCard' import { PoolChartV2 } from './PoolChartV2' import { PoolComposition } from './PoolComposition' import { PoolMyRewards } from './PoolMyRewards' @@ -29,11 +28,7 @@ export const PoolPageV2: FC = ({ pool, tab }) => {
- {pool.protocol === Protocol.SUSHISWAP_V2 ? ( - - ) : ( - - )} +
diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 54e70baaab..944e0b4a04 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -213,8 +213,8 @@ function useTransactionsV2( ...swap, sender: String(swap.sender), to: String(swap.to), - amountIn: Number(swap.amountIn), - amountOut: Number(swap.amountOut), + amountIn: Number(swap.amount0In !== '0'? swap.amount0In : swap.amount1In), + amountOut: Number(swap.amount0Out !== '0'? swap.amount0Out : swap.amount1Out), type: TransactionType.Swap as const, })) diff --git a/apps/evm/src/ui/pool/RemoveSectionTrident.tsx b/apps/evm/src/ui/pool/RemoveSectionTrident.tsx deleted file mode 100644 index ad2e0cc2e5..0000000000 --- a/apps/evm/src/ui/pool/RemoveSectionTrident.tsx +++ /dev/null @@ -1,411 +0,0 @@ -'use client' - -import { Pool, Protocol } from '@sushiswap/client' -import { SlippageToleranceStorageKey, useIsMounted } from '@sushiswap/hooks' -import { Button } from '@sushiswap/ui/components/button' -import { Dots } from '@sushiswap/ui/components/dots' -import { createToast } from '@sushiswap/ui/components/toast' -import { - TridentConstantPoolState, - TridentStablePoolState, - UseCallParameters, - getTridentRouterContractConfig, - useAccount, - useBentoBoxTotals, - useCall, - usePublicClient, - useSendTransaction, - useTotalSupply, - useTridentConstantPool, - useTridentRouterContract, - useTridentStablePool, -} from '@sushiswap/wagmi' -import { Checker } from '@sushiswap/wagmi/systems' -import { - useApproved, - useApprovedActions, - useSignature, - withCheckerRoot, -} from '@sushiswap/wagmi/systems/Checker/Provider' -import { FC, useCallback, useMemo, useState } from 'react' -import { APPROVE_TAG_REMOVE_TRIDENT } from 'src/lib/constants' -import { - useTokensFromPool, - useUnderlyingTokenBalanceFromPool, -} from 'src/lib/hooks' -import { useSlippageTolerance } from 'src/lib/hooks/useSlippageTolerance' -import { - LiquidityOutput, - approveMasterContractAction, - batchAction, - burnLiquidityAction, - sweepAction, - unwrapWETHAction, -} from 'src/lib/pool/trident/actions' -import { slippageAmount } from 'sushi/calculate' -import { ChainId } from 'sushi/chain' -import { BentoBoxChainId, TridentChainId } from 'sushi/config' -import { Amount, Native } from 'sushi/currency' -import { Percent } from 'sushi/math' - -import { SendTransactionReturnType } from 'viem' -import { usePoolPosition } from './PoolPositionProvider' -import { RemoveSectionWidget } from './RemoveSectionWidget' - -interface RemoveSectionTridentProps { - pool: Pool -} - -export const RemoveSectionTrident: FC = - withCheckerRoot(({ pool: _pool }) => { - const chainId = _pool.chainId as BentoBoxChainId - const client = usePublicClient() - const { address, chain } = useAccount() - const { token0, token1, liquidityToken } = useTokensFromPool(_pool) - const isMounted = useIsMounted() - const { approved } = useApproved(APPROVE_TAG_REMOVE_TRIDENT) - const { signature } = useSignature(APPROVE_TAG_REMOVE_TRIDENT) - const { setSignature } = useApprovedActions(APPROVE_TAG_REMOVE_TRIDENT) - const contract = useTridentRouterContract(_pool.chainId as TridentChainId) - const [slippageTolerance] = useSlippageTolerance( - SlippageToleranceStorageKey.RemoveLiquidity, - ) - - const [percentage, setPercentage] = useState('0') - const percentToRemove = useMemo( - () => new Percent(percentage, 100), - [percentage], - ) - const tokens = useMemo(() => [token0, token1], [token0, token1]) - const { data: rebases } = useBentoBoxTotals({ - chainId: _pool.chainId as BentoBoxChainId, - currencies: tokens, - }) - const { balance } = usePoolPosition() - - const slpAmountToRemove = useMemo(() => { - return balance?.multiply(percentToRemove) - }, [balance, percentToRemove]) - - // TODO: Standardize fee format - const [tridentConstantPoolState, tridentConstantPool] = - useTridentConstantPool( - _pool.chainId as TridentChainId, - token0, - token1, - _pool.swapFee * 10000, - _pool.twapEnabled, - ) - - const [tridentStablePoolState, tridentStablePool] = useTridentStablePool( - _pool.chainId as TridentChainId, - token0, - token1, - _pool.swapFee * 10000, - _pool.twapEnabled, - ) - - const [poolState, pool] = useMemo(() => { - if (_pool.protocol === Protocol.BENTOBOX_STABLE) - return [tridentStablePoolState, tridentStablePool] - if (_pool.protocol === Protocol.BENTOBOX_CLASSIC) - return [tridentConstantPoolState, tridentConstantPool] - - return [undefined, undefined] - }, [ - _pool.protocol, - tridentConstantPool, - tridentConstantPoolState, - tridentStablePool, - tridentStablePoolState, - ]) - - const totalSupply = useTotalSupply(liquidityToken) - - const underlying = useUnderlyingTokenBalanceFromPool({ - reserve0: pool?.reserve0, - reserve1: pool?.reserve1, - totalSupply, - balance: balance, - }) - - const [underlying0, underlying1] = underlying - - const currencyAToRemove = useMemo( - () => - token0 - ? percentToRemove?.greaterThan('0') && underlying0 - ? Amount.fromRawAmount( - token0, - percentToRemove.multiply(underlying0.quotient).quotient || '0', - ) - : Amount.fromRawAmount(token0, '0') - : undefined, - [token0, percentToRemove, underlying0], - ) - - const currencyBToRemove = useMemo( - () => - token1 - ? percentToRemove?.greaterThan('0') && underlying1 - ? Amount.fromRawAmount( - token1, - percentToRemove.multiply(underlying1.quotient).quotient || '0', - ) - : Amount.fromRawAmount(token1, '0') - : undefined, - [token1, percentToRemove, underlying1], - ) - - const [minAmount0, minAmount1] = useMemo(() => { - return [ - currencyAToRemove - ? Amount.fromRawAmount( - currencyAToRemove.currency, - slippageAmount(currencyAToRemove, slippageTolerance)[0], - ) - : undefined, - currencyBToRemove - ? Amount.fromRawAmount( - currencyBToRemove.currency, - slippageAmount(currencyBToRemove, slippageTolerance)[0], - ) - : undefined, - ] - }, [slippageTolerance, currencyAToRemove, currencyBToRemove]) - - const onSuccess = useCallback( - (hash: SendTransactionReturnType) => { - setPercentage('0') - setSignature(undefined) - - if (!chain?.id) return - - const ts = new Date().getTime() - void createToast({ - account: address, - type: 'burn', - chainId: chain.id, - txHash: hash, - promise: client.waitForTransactionReceipt({ hash }), - summary: { - pending: `Removing liquidity from the ${token0.symbol}/${token1.symbol} pair`, - completed: `Successfully removed liquidity from the ${token0.symbol}/${token1.symbol} pair`, - failed: 'Something went wrong when removing liquidity', - }, - timestamp: ts, - groupTimestamp: ts, - }) - }, - [client, address, chain, token0.symbol, token1.symbol, setSignature], - ) - - const prepare = useMemo(() => { - try { - if ( - !chain?.id || - !pool || - !token0 || - !token1 || - !_pool.chainId || - !contract || - !minAmount0 || - !minAmount1 || - !address || - !minAmount0 || - !minAmount1 || - !rebases?.[token0.wrapped.address] || - !rebases?.[token1.wrapped.address] || - !slpAmountToRemove - ) - return undefined - - const liquidityOutput: LiquidityOutput[] = [ - { - token: minAmount0.wrapped.currency.address, - amount: minAmount0.toShare(rebases?.[token0.wrapped.address]) - .quotient, - }, - { - token: minAmount1.wrapped.currency.address, - amount: minAmount1.toShare(rebases?.[token1.wrapped.address]) - .quotient, - }, - ] - - let indexOfWETH = -1 - indexOfWETH = - minAmount0.wrapped.currency.address === - Native.onChain(_pool.chainId).wrapped.address - ? 0 - : indexOfWETH - indexOfWETH = - minAmount1.wrapped.currency.address === - Native.onChain(_pool.chainId).wrapped.address - ? 1 - : indexOfWETH - - const actions = [ - approveMasterContractAction({ signature }), - burnLiquidityAction({ - address: pool.liquidityToken.address, - amount: slpAmountToRemove.quotient, - recipient: indexOfWETH >= 0 ? contract.address : address, - liquidityOutput, - receiveToWallet: true, - }), - ] - - if (indexOfWETH >= 0) { - actions.push( - unwrapWETHAction({ - recipient: address, - }), - sweepAction({ - token: liquidityOutput[indexOfWETH === 0 ? 1 : 0].token, - recipient: address, - fromBento: false, - }), - ) - } - - return { - account: address, - to: contract.address, - chainId: _pool.chainId as ChainId, - data: batchAction({ - actions, - }), - } satisfies UseCallParameters - } catch (_e: unknown) { - return undefined - } - }, [ - chain?.id, - pool, - token0, - token1, - _pool.chainId, - contract, - minAmount0, - minAmount1, - address, - rebases, - slpAmountToRemove, - signature, - ]) - - const { isError: isSimulationError } = useCall({ - ...prepare, - query: { - enabled: Boolean(approved && Number(percentage) > 0), - }, - }) - - const { sendTransactionAsync, isLoading: isWritePending } = - useSendTransaction({ - mutation: { - onSuccess, - }, - }) - - const send = useMemo(() => { - if (!prepare || isSimulationError) return undefined - - return async () => { - try { - await sendTransactionAsync(prepare) - } catch {} - } - }, [sendTransactionAsync, isSimulationError, prepare]) - - return ( -
- 0} - chainId={_pool.chainId as ChainId} - percentage={percentage} - token0={token0} - token1={token1} - token0Minimum={minAmount0} - token1Minimum={minAmount1} - setPercentage={setPercentage} - > - - - - - - - - - - - - - - - - -
- ) - }) diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml index 400fcd38a7..3626ca426e 100644 --- a/packages/graph-client/.graphclientrc.yml +++ b/packages/graph-client/.graphclientrc.yml @@ -479,6 +479,11 @@ additionalTypeDefs: | ids: [ID!]! block: Block_height ): [Token!]! + + poolsByTokenPair( + tokenId0: String! + tokenId1: String! + ): [SUSHISWAP_V3_Pool!]! crossChainChefUser( skip: Int = 0 first: Int = 100 diff --git a/packages/graph-client/queries/sushiswap-v3.graphql b/packages/graph-client/queries/sushiswap-v3.graphql index 37d5ec8e43..74c9bd51e9 100644 --- a/packages/graph-client/queries/sushiswap-v3.graphql +++ b/packages/graph-client/queries/sushiswap-v3.graphql @@ -178,4 +178,163 @@ query SushiSwapV3DayDatas($first: Int = 1000, $skip: Int, $orderBy: SUSHISWAP_V3 txCount tvlUSD } +} + + +query V3PoolsByTokenPair($tokenId0: String!, $tokenId1: String!) { + pools: poolsByTokenPair(tokenId0: $tokenId0, tokenId1: $tokenId1) { + id + feeTier + liquidity + sqrtPrice + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + token0Price + token1Price + tick + observationIndex + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + totalValueLockedToken0 + totalValueLockedToken1 + totalValueLockedETH + totalValueLockedUSD + totalValueLockedUSDUntracked + liquidityProviderCount + } +} + +query V3Factories($chainIds: [BigInt!]!) { + factories: v3factoriesByChainIds(chainIds: $chainIds) { + id + chainId + totalValueLockedUSD + totalVolumeUSD + poolCount + } +} + + +query V3Transactions($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Transaction_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Transaction_filter) { + transactions: SUSHISWAP_V3_transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + timestamp + blockNumber + mints { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + burns { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + swaps { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + } + collects { + id + owner + amount0 + amount1 + amountUSD + logIndex + } + } +} + +query V3Burns($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Burn_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Burn_filter) { + burns: SUSHISWAP_V3_burns(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Mints($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Mint_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Mint_filter) { + mints: SUSHISWAP_V3_mints(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Swaps($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Swap_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Swap_filter) { + swaps: SUSHISWAP_V3_swaps(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } +} + +query V3Collects($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Collect_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Collect_filter) { + collects: SUSHISWAP_V3_collects(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { + id + owner + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } } \ No newline at end of file diff --git a/packages/graph-client/queries/tokens.graphql b/packages/graph-client/queries/tokens.graphql index bbf0432282..81c695c490 100644 --- a/packages/graph-client/queries/tokens.graphql +++ b/packages/graph-client/queries/tokens.graphql @@ -2,14 +2,10 @@ fragment TokenFields on Token { id chainId name - # liquidityUSD + totalLiquidity symbol decimals volumeUSD: tradeVolumeUSD - # feesUSD - # price { - # derivedNative - # } } query TokensByChainIds( diff --git a/packages/graph-client/resolvers/v3/index.ts b/packages/graph-client/resolvers/v3/index.ts new file mode 100644 index 0000000000..5f2f093ed2 --- /dev/null +++ b/packages/graph-client/resolvers/v3/index.ts @@ -0,0 +1,11 @@ +import { Resolvers } from '../../.graphclient/index.js' + +import { poolsByTokenPair } from './poolsByTokenPair.js' +import { v3factoriesByChainIds } from './v3factoriesByChainIds.js' + +export const resolvers: Resolvers = { + Query: { + v3factoriesByChainIds: v3factoriesByChainIds, + poolsByTokenPair: poolsByTokenPair, + }, +} diff --git a/packages/graph-client/resolvers/v3/poolsByTokenPair.ts b/packages/graph-client/resolvers/v3/poolsByTokenPair.ts new file mode 100644 index 0000000000..b147a21313 --- /dev/null +++ b/packages/graph-client/resolvers/v3/poolsByTokenPair.ts @@ -0,0 +1,54 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL + } from '@sushiswap/graph-config' + + import { Query, QueryResolvers } from '../../.graphclient/index.js' + + const MAX_FIRST = 1000 + + export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( + root, + args, + context, + info, + ): Promise => { + const [chainId, tokenAddress0] = args.tokenId0.split(':') + const [, tokenAddress1] = args.tokenId1.split(':') + + // Sorted on the factory contract + const tokenAddresses = [tokenAddress0, tokenAddress1].sort() + + const fetch = (lastId: string) => + context.SushiSwapV3.Query.SUSHISWAP_V3_pools({ + root, + args: { + first: MAX_FIRST, + where: { + id_gt: lastId, + token0: tokenAddresses[0], + token1: tokenAddresses[1], + }, + orderBy: 'id', + orderDirection: 'asc', + }, + context: { + ...context, + chainId: Number(chainId), + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] + }, + info, + }) + + const data = [] + let lastId = '' + for (;;) { + const newData = await fetch(lastId) + data.push(...newData) + + if (newData.length < MAX_FIRST) break + + lastId = newData[newData.length - 1].id + } + + return data + } \ No newline at end of file diff --git a/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts b/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts new file mode 100644 index 0000000000..2cbdfa485f --- /dev/null +++ b/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts @@ -0,0 +1,55 @@ +import { + SUSHISWAP_V3_ENABLED_NETWORKS, + SUSHISWAP_V3_SUBGRAPH_URL, + SushiSwapV3ChainId + } from '@sushiswap/graph-config' + + import { isPromiseFulfilled } from 'sushi/validate' + import { + Query, + QueryResolvers, + SUSHISWAP_V3_Factory, + } from '../../.graphclient/index.js' + + export const v3factoriesByChainIds: QueryResolvers['v3factoriesByChainIds'] = + async ( + root, + args, + context, + info, + ): Promise => { + return Promise.allSettled( + args.chainIds + .filter((chainId): chainId is SushiSwapV3ChainId => + SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId), + ) + .map((chainId) => { + return context.SushiSwapV3.Query.SUSHISWAP_V3_factories({ + root, + args, + context: { + ...context, + chainId, + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] + }, + info, + }).then((factories: SUSHISWAP_V3_Factory[]) => { + return factories?.length > 0 + ? factories.map((factory) => ({ + ...factory, + chainId, + })) + : [] + }) + }), + ).then((promiseSettledResults) => { + if (!Array.isArray(promiseSettledResults)) { + console.error('v3 factories query failed...', promiseSettledResults) + return [] + } + return promiseSettledResults + .flat() + .filter(isPromiseFulfilled) + .flatMap((promiseFulfilled) => promiseFulfilled.value) + }) + } \ No newline at end of file diff --git a/packages/wagmi/src/hooks/pools/actions/getAllPools.ts b/packages/wagmi/src/hooks/pools/actions/getAllPools.ts index 9b0cfe0599..e2415e1b3b 100644 --- a/packages/wagmi/src/hooks/pools/actions/getAllPools.ts +++ b/packages/wagmi/src/hooks/pools/actions/getAllPools.ts @@ -1,39 +1,18 @@ -import { - isBentoBoxChainId, - isSushiSwapV2ChainId, - isSushiSwapV3ChainId, - isTridentChainId, -} from 'sushi/config' +import { isSushiSwapV2ChainId, isSushiSwapV3ChainId } from 'sushi/config' import { Type } from 'sushi/currency' import { TradeType } from 'sushi/dex' -import { - SushiSwapV2Pool, - TridentConstantPool, - TridentStablePool, -} from 'sushi/pool' +import { SushiSwapV2Pool } from 'sushi/pool' import { getCurrencyCombinations } from 'sushi/router' -import { BridgeBento, UniV3Pool } from 'sushi/tines' -import { getBentoboxTotalsMap } from '../../bentobox' +import { UniV3Pool } from 'sushi/tines' import { UsePoolsParams, UsePoolsReturn } from '../types' -import { BridgeBentoState, getBridgeBentoPools } from './getBridgeBentoPools' import { PairState, getSushiSwapV2Pools } from './getSushiSwapV2Pools' -import { - TridentConstantPoolState, - getTridentConstantPools, -} from './getTridentConstantPools' -import { - TridentStablePoolState, - getTridentStablePools, -} from './getTridentStablePools' import { V3PoolState, getV3Pools } from './getV3Pools' -import { pairsUnique, tokensUnique } from './utils' const queryFn = async ({ chainId, currencyA, currencyB, tradeType = TradeType.EXACT_INPUT, - withBentoPools = false, withCombinations = true, config, }: UsePoolsParams) => { @@ -58,42 +37,19 @@ const queryFn = async ({ // v3CurrencyCombinations = getV3CurrencyCombinations(chainId, currencyIn, currencyOut) // } - const _tokensUnique = tokensUnique(pairsUnique(currencyCombinations)) - const totalsMap = isBentoBoxChainId(chainId) - ? await getBentoboxTotalsMap(chainId, _tokensUnique, config) - : null - - const [pairs, constantProductPools, stablePools, bridgeBentoPools, v3Pools] = - await Promise.all([ - isSushiSwapV2ChainId(chainId) - ? getSushiSwapV2Pools(chainId, currencyCombinations, config) - : Promise.resolve([]), - isTridentChainId(chainId) && isBentoBoxChainId(chainId) - ? getTridentConstantPools(chainId, currencyCombinations, config) - : Promise.resolve([]), - isTridentChainId(chainId) && isBentoBoxChainId(chainId) && totalsMap - ? getTridentStablePools( - chainId, - currencyCombinations, - totalsMap, - config, - ) - : Promise.resolve([]), - isBentoBoxChainId(chainId) && withBentoPools && totalsMap - ? getBridgeBentoPools(chainId, _tokensUnique, totalsMap, config) - : Promise.resolve([]), - isSushiSwapV3ChainId(chainId) - ? getV3Pools(chainId, currencyCombinations, config) - : Promise.resolve([]), - ]) + const [pairs, v3Pools] = await Promise.all([ + isSushiSwapV2ChainId(chainId) + ? getSushiSwapV2Pools(chainId, currencyCombinations, config) + : Promise.resolve([]), + isSushiSwapV3ChainId(chainId) + ? getV3Pools(chainId, currencyCombinations, config) + : Promise.resolve([]), + ]) // const filteredCurrencyCombinations = currencyCombinations.filter(([a, b]) => a === currencyA || b === currencyA || a === currencyB || b === currencyB) // const v3Pools = await getV3Pools(chainId, v3CurrencyCombinations) return { pairs, - constantProductPools, - stablePools, - bridgeBentoPools, v3Pools, } } @@ -104,9 +60,6 @@ export const getAllPools = async ( if (!variables.currencyA || !variables.currencyB) { return { sushiSwapV2Pools: [], - tridentConstantPools: [], - tridentStablePools: [], - bridgeBentoPools: [], sushiSwapV3Pools: [], } } @@ -119,33 +72,6 @@ export const getAllPools = async ( ) .map(([, pair]) => pair as SushiSwapV2Pool), ), - tridentConstantPools: Object.values( - data.constantProductPools - .filter( - ( - result, - ): result is [TridentConstantPoolState.EXISTS, TridentConstantPool] => - Boolean(result[0] === TridentConstantPoolState.EXISTS && result[1]), - ) - .map(([, pair]) => pair as TridentConstantPool), - ), - tridentStablePools: Object.values( - data.stablePools - .filter( - ( - result, - ): result is [TridentStablePoolState.EXISTS, TridentStablePool] => - Boolean(result[0] === TridentStablePoolState.EXISTS && result[1]), - ) - .map(([, pair]) => pair as TridentStablePool), - ), - bridgeBentoPools: Object.values( - data.bridgeBentoPools - .filter((result): result is [BridgeBentoState.EXISTS, BridgeBento] => - Boolean(result[0] === BridgeBentoState.EXISTS && result[1]), - ) - .map(([, pair]) => pair as BridgeBento), - ), sushiSwapV3Pools: Object.values( data.v3Pools .filter((result): result is [V3PoolState.EXISTS, UniV3Pool] => diff --git a/packages/wagmi/src/hooks/pools/actions/getBridgeBentoPools.ts b/packages/wagmi/src/hooks/pools/actions/getBridgeBentoPools.ts deleted file mode 100644 index 7c671e54ae..0000000000 --- a/packages/wagmi/src/hooks/pools/actions/getBridgeBentoPools.ts +++ /dev/null @@ -1,57 +0,0 @@ -import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { Rebase } from 'sushi' -import { balanceOfAbi } from 'sushi/abi' -import { BENTOBOX_ADDRESS, BentoBoxChainId } from 'sushi/config' -import { Token } from 'sushi/currency' -import { convertTokenToBento } from 'sushi/tines' -import { BridgeBento, RToken } from 'sushi/tines' -import { readContracts } from 'wagmi/actions' - -export enum BridgeBentoState { - LOADING = 'Loading', - NOT_EXISTS = 'Not exists', - EXISTS = 'Exists', - INVALID = 'Invalid', -} - -export const getBridgeBentoPools = async ( - chainId: BentoBoxChainId, - currencies: Token[], - totals: Map, - config: PublicWagmiConfig, -) => { - const balances = await readContracts(config, { - contracts: currencies.map( - (currency) => - ({ - address: currency.wrapped.address, - chainId, - abi: balanceOfAbi, - functionName: 'balanceOf', - args: [BENTOBOX_ADDRESS[chainId]], - }) as const, - ), - }) - - return currencies.map((el, i) => { - const total = totals.get(el.address) - const balance = balances?.[i].result - if (!total || !balance) { - return [BridgeBentoState.LOADING, null] - } - - const { base, elastic } = total - - return [ - BridgeBentoState.EXISTS, - new BridgeBento( - BENTOBOX_ADDRESS[chainId], - el as RToken, - convertTokenToBento(el), - elastic, - base, - balance, - ), - ] - }) -} diff --git a/packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts b/packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts deleted file mode 100644 index feca61bc8d..0000000000 --- a/packages/wagmi/src/hooks/pools/actions/getTridentConstantPools.ts +++ /dev/null @@ -1,147 +0,0 @@ -import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { getPublicClient } from '@wagmi/core' -import { readContracts } from '@wagmi/core/actions' -import { TridentConstantPool } from 'sushi' -import { - tridentConstantPoolAbi, - tridentConstantPoolFactoryAbi, -} from 'sushi/abi' -import { TridentChainId } from 'sushi/config' -import { Amount, Currency, Token } from 'sushi/currency' -import { Address, getContract } from 'viem' -import { getTridentConstantPoolFactoryContract } from '../../../contracts' -import { pairsUnique } from './utils' - -export enum TridentConstantPoolState { - LOADING = 'Loading', - NOT_EXISTS = 'Not exists', - EXISTS = 'Exists', - INVALID = 'Invalid', -} - -interface PoolData { - address: Address - token0: Token - token1: Token -} - -export const getTridentConstantPools = async ( - chainId: TridentChainId, - currencies: [Currency | undefined, Currency | undefined][], - config: PublicWagmiConfig, -) => { - const client = getPublicClient(config, { chainId }) - - const contract = getContract({ - ...getTridentConstantPoolFactoryContract(chainId), - client, - }) - - const _pairsUnique = pairsUnique(currencies) - const _pairsUniqueAddr = _pairsUnique.map( - ([t0, t1]) => [t0.address, t1.address] as const, - ) - - const callStatePoolsCount = await client.multicall({ - contracts: _pairsUniqueAddr.map((el) => ({ - chainId, - address: contract?.address, - abi: tridentConstantPoolFactoryAbi, - functionName: 'poolsCount', - args: el, - })), - }) - - const callStatePoolsCountProcessed = - callStatePoolsCount - ?.map( - (s, i) => - [i, s.status === 'success' ? s.result : 0n] as [number, bigint], - ) - .filter(([, length]) => length) - .map( - ([i, length]) => - [ - _pairsUniqueAddr[i][0] as Address, - _pairsUniqueAddr[i][1] as Address, - 0n, - BigInt(length), - ] as const, - ) ?? [] - - const pairsUniqueProcessed = callStatePoolsCount - ?.map( - (s, i) => [i, s.status === 'success' ? s.result : 0n] as [number, bigint], - ) - .filter(([, length]) => length) - .map(([i]) => [_pairsUnique[i][0], _pairsUnique[i][1]]) - - const callStatePools = await readContracts(config, { - contracts: callStatePoolsCountProcessed.map( - (args) => - ({ - chainId, - address: contract?.address, - abi: tridentConstantPoolFactoryAbi, - functionName: 'getPools', - args, - }) as const, - ), - }) - - const pools: PoolData[] = [] - callStatePools?.forEach((s, i) => { - if (s.result !== undefined) - s.result.forEach((address) => { - pools.push({ - address: address as Address, - token0: pairsUniqueProcessed?.[i][0] as Token, - token1: pairsUniqueProcessed?.[i][1] as Token, - }) - }) - }) - - const poolsAddresses = pools.map((p) => p.address as Address) - - const contracts = [ - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentConstantPoolAbi, - functionName: 'getReserves' as const, - })), - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentConstantPoolAbi, - functionName: 'swapFee' as const, - })), - ] - - const reservesAndFees = await readContracts(config, { - contracts, - }) - - return pools.map((p, i) => { - if ( - !reservesAndFees?.[i].result || - !reservesAndFees?.[i + poolsAddresses.length].result - ) { - return [TridentConstantPoolState.LOADING, null] - } - - const [reserve0, reserve1, blockTimestampLast] = reservesAndFees[i] - .result as [bigint, bigint, number] - const swapFee = reservesAndFees[i + poolsAddresses.length].result as bigint - - return [ - TridentConstantPoolState.EXISTS, - new TridentConstantPool( - Amount.fromRawAmount(p.token0, reserve0), - Amount.fromRawAmount(p.token1, reserve1), - parseInt(swapFee.toString()), - blockTimestampLast !== 0, - ), - ] - }) -} diff --git a/packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts b/packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts deleted file mode 100644 index 1f20cae740..0000000000 --- a/packages/wagmi/src/hooks/pools/actions/getTridentStablePools.ts +++ /dev/null @@ -1,150 +0,0 @@ -import { TridentStablePool } from 'sushi' -import { tridentStablePoolAbi, tridentStablePoolFactoryAbi } from 'sushi/abi' -import { TridentChainId } from 'sushi/config' -import { Amount, Currency, Token } from 'sushi/currency' - -import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { Address, getContract } from 'viem' -import { getPublicClient, readContracts } from 'wagmi/actions' -import { getTridentStablePoolFactoryContract } from '../../../contracts' -import { pairsUnique } from './utils' - -export enum TridentStablePoolState { - LOADING = 'Loading', - NOT_EXISTS = 'Not Exists', - EXISTS = 'Exists', - INVALID = 'Invalid', -} - -interface PoolData { - address: Address - token0: Token - token1: Token -} - -export const getTridentStablePools = async ( - chainId: TridentChainId, - currencies: [Currency | undefined, Currency | undefined][], - totals: Map, - config: PublicWagmiConfig, -) => { - const client = getPublicClient(config, { chainId }) - - const contract = getContract({ - ...getTridentStablePoolFactoryContract(chainId), - client, - }) - - const _pairsUnique = pairsUnique(currencies) - const _pairsUniqueAddr = _pairsUnique.map( - ([t0, t1]) => [t0.address, t1.address] as const, - ) - - const callStatePoolsCount = await readContracts(config, { - contracts: _pairsUniqueAddr.map( - (el) => - ({ - chainId, - address: contract?.address, - abi: tridentStablePoolFactoryAbi, - functionName: 'poolsCount', - args: el, - }) as const, - ), - }) - - const callStatePoolsCountProcessed = callStatePoolsCount - ?.map( - (s, i) => [i, s.status === 'success' ? s.result : 0n] as [number, bigint], - ) - .filter(([, length]) => length) - .map( - ([i, length]) => - [ - _pairsUniqueAddr[i][0], - _pairsUniqueAddr[i][1], - 0n, - BigInt(length), - ] as const, - ) - - const pairsUniqueProcessed = callStatePoolsCount - ?.map( - (s, i) => [i, s.status === 'success' ? s.result : 0n] as [number, bigint], - ) - .filter(([, length]) => length) - .map(([i]) => [_pairsUnique[i][0], _pairsUnique[i][1]]) - - const callStatePools = await readContracts(config, { - contracts: callStatePoolsCountProcessed.map( - (args) => - ({ - chainId, - address: contract?.address, - abi: tridentStablePoolFactoryAbi, - functionName: 'getPools', - args, - }) as const, - ), - }) - - const pools: PoolData[] = [] - callStatePools?.forEach((s, i) => { - if (s.result) - s.result.forEach((address) => - pools.push({ - address, - token0: pairsUniqueProcessed?.[i][0], - token1: pairsUniqueProcessed?.[i][1], - }), - ) - }) - - const poolsAddresses = pools.map((p) => p.address) - - const contracts = [ - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentStablePoolAbi, - functionName: 'getReserves' as const, - })), - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentStablePoolAbi, - functionName: 'swapFee' as const, - })), - ] - - const reservesAndFees = await readContracts(config, { - contracts, - }) - - return pools.map((p, i) => { - if ( - !reservesAndFees?.[i].result || - !reservesAndFees?.[i + poolsAddresses.length].result - ) { - return [TridentStablePoolState.LOADING, null] - } - - const total0 = totals.get(p.token0.address) - const total1 = totals.get(p.token1.address) - const [reserve0, reserve1] = reservesAndFees[i].result as [bigint, bigint] - const swapFee = reservesAndFees[i + poolsAddresses.length].result as bigint - - if (!reserve0 || !reserve1 || !total0 || !total1) - return [TridentStablePoolState.LOADING, null] - return [ - TridentStablePoolState.EXISTS, - new TridentStablePool( - Amount.fromRawAmount(p.token0, reserve0), - Amount.fromRawAmount(p.token1, reserve1), - parseInt(swapFee.toString()), - { base: total0.base, elastic: total0.elastic }, - { base: total1.base, elastic: total1.elastic }, - ), - ] - }) -} diff --git a/packages/wagmi/src/hooks/pools/actions/index.ts b/packages/wagmi/src/hooks/pools/actions/index.ts index b1e0468e9d..8b4d4edf9b 100644 --- a/packages/wagmi/src/hooks/pools/actions/index.ts +++ b/packages/wagmi/src/hooks/pools/actions/index.ts @@ -1,6 +1,4 @@ export * from './getAllPools' export * from './getConcentratedLiquidityPool' export * from './getConcentratedLiquidityPoolReserves' -export * from './getSushiSwapV2Pools' -export * from './getTridentConstantPools' -export * from './getTridentStablePools' +export * from './getSushiSwapV2Pools' \ No newline at end of file diff --git a/packages/wagmi/src/hooks/pools/hooks/index.ts b/packages/wagmi/src/hooks/pools/hooks/index.ts index 9ef59087dd..2bcd8895f6 100644 --- a/packages/wagmi/src/hooks/pools/hooks/index.ts +++ b/packages/wagmi/src/hooks/pools/hooks/index.ts @@ -3,7 +3,4 @@ export * from './useConcentratedLiquidityPoolReserves' export * from './usePools' export * from './usePoolsAsMap' export * from './usePoolsCodeMap' -export * from './useSushiSwapV2Pools' -export * from './useTridentConstantPoolFactoryContract' -export * from './useTridentConstantPools' -export * from './useTridentStablePoolFactoryContract' +export * from './useSushiSwapV2Pools' \ No newline at end of file diff --git a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts b/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts index 11ca5b15cd..6e2d140881 100644 --- a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts +++ b/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts @@ -2,10 +2,7 @@ import { useQuery } from '@tanstack/react-query' import { ChainId } from 'sushi/chain' import { SUSHISWAP_V2_FACTORY_ADDRESS, - TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, - TRIDENT_STABLE_POOL_FACTORY_ADDRESS, isSushiSwapV2ChainId, - isTridentChainId, } from 'sushi/config' import { Token } from 'sushi/currency' import { Fee } from 'sushi/dex' @@ -14,8 +11,6 @@ import { TridentConstantPool, TridentStablePool, computeSushiSwapV2PoolAddress, - computeTridentConstantPoolAddress, - computeTridentStablePoolAddress, } from 'sushi/pool' import { useConfig } from 'wagmi' @@ -27,7 +22,6 @@ const getPoolAddress = ({ poolType, token0, token1, - fee, }: { chainId: ChainId poolType: PoolType @@ -38,22 +32,6 @@ const getPoolAddress = ({ const [tokenA, tokenB] = token0.wrapped.sortsBefore(token1.wrapped) ? [token0.wrapped, token1.wrapped] : [token1.wrapped, token0.wrapped] - if (poolType === PoolType.TridentStablePool && isTridentChainId(chainId)) - return computeTridentStablePoolAddress({ - factoryAddress: TRIDENT_STABLE_POOL_FACTORY_ADDRESS[chainId], - tokenA, - tokenB, - fee, - }) - - if (poolType === PoolType.TridentConstantPool && isTridentChainId(chainId)) - return computeTridentConstantPoolAddress({ - factoryAddress: TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId], - tokenA, - tokenB, - fee, - twap: false, - }) if (poolType === PoolType.SushiSwapV2Pool && isSushiSwapV2ChainId(chainId)) { return computeSushiSwapV2PoolAddress({ @@ -90,8 +68,6 @@ export const usePoolsAsMap = ({ }) const pools = [ ...(data.sushiSwapV2Pools || []), - ...(data.tridentStablePools || []), - ...(data.tridentConstantPools || []), ] return pools.reduce< Record< diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts b/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts deleted file mode 100644 index 7a6d28b0c1..0000000000 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPoolFactoryContract.ts +++ /dev/null @@ -1,30 +0,0 @@ -import { useMemo } from 'react' -import { tridentConstantPoolFactoryAbi } from 'sushi/abi' -import { - TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS, - TridentChainId, -} from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' - -export const getTridentConstantPoolFactoryContract = ( - chainId: TridentChainId, -) => ({ - address: TRIDENT_CONSTANT_POOL_FACTORY_ADDRESS[chainId], - abi: tridentConstantPoolFactoryAbi, -}) - -export function useTridentConstantPoolFactoryContract( - chainId: TridentChainId | undefined, -) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentConstantPoolFactoryContract(chainId), - client, - }) - }, [client, chainId]) -} diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts b/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts deleted file mode 100644 index cf39b387a2..0000000000 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentConstantPools.ts +++ /dev/null @@ -1,376 +0,0 @@ -'use client' - -import { useEffect, useMemo } from 'react' -import { TridentConstantPool, computeTridentConstantPoolAddress } from 'sushi' -import { - tridentConstantPoolAbi, - tridentConstantPoolFactoryAbi, -} from 'sushi/abi' -import { Amount, Currency, Token } from 'sushi/currency' -import { Fee } from 'sushi/dex' -import { - UseReadContractsParameters, - useBlockNumber, - useReadContracts, -} from 'wagmi' - -import { useQueryClient } from '@tanstack/react-query' -import { TridentChainId } from 'sushi/config' -import { Address } from 'viem' -import { TridentConstantPoolState } from '../actions' -import { useTridentConstantPoolFactoryContract } from './useTridentConstantPoolFactoryContract' - -type PoolInput = [Currency | undefined, Currency | undefined, Fee, boolean] - -interface PoolData { - address: string - token0: Token - token1: Token -} - -interface UseGetTridentConstantPoolsReturn { - isLoading: boolean - isError: boolean - data: [TridentConstantPoolState, TridentConstantPool | null][] -} - -type Config = Omit, 'contracts'> - -export function useGetTridentConstantPools( - chainId: TridentChainId | undefined, - currencies: [Currency | undefined, Currency | undefined][], - config: Config = { query: { enabled: true } }, -): UseGetTridentConstantPoolsReturn { - const contract = useTridentConstantPoolFactoryContract(chainId) - const pairsUnique = useMemo<[Token, Token][]>(() => { - const pairsMap = new Map() - currencies.map(([c1, c2]) => { - if (c1 && c2) { - const addr1 = c1.wrapped.address as string | undefined - const addr2 = c2.wrapped.address as string | undefined - if (addr1 !== undefined && addr2 !== undefined) { - if (addr1.toLowerCase() < addr2.toLowerCase()) - pairsMap.set(addr1 + addr2, [c1, c2] as [Token, Token]) - else pairsMap.set(addr2 + addr1, [c2, c1] as [Token, Token]) - } - } - }) - return Array.from(pairsMap.values()) - }, [currencies]) - - const pairsUniqueAddr = useMemo<[string, string][]>( - () => pairsUnique.map(([t0, t1]) => [t0.address, t1.address]), - [pairsUnique], - ) - - const queryClient = useQueryClient() - - const { - data: callStatePoolsCount, - isLoading: callStatePoolsCountLoading, - isError: callStatePoolsCountError, - queryKey: callStatePoolsCountQueryKey, - } = useReadContracts({ - contracts: pairsUniqueAddr.map((el) => ({ - chainId, - address: contract?.address as Address, - abi: tridentConstantPoolFactoryAbi, - functionName: 'poolsCount', - args: el as [Address, Address], - })), - - query: { - enabled: Boolean(pairsUniqueAddr.length > 0 && config?.query?.enabled), - }, - }) - - const callStatePoolsCountProcessed = useMemo(() => { - return ( - callStatePoolsCount - ?.map((s, i) => [i, s ? parseInt(s.toString()) : 0] as [number, number]) - .filter(([, length]) => length) - .map( - ([i, length]) => - [ - pairsUniqueAddr[i][0] as Address, - pairsUniqueAddr[i][1] as Address, - 0n, - BigInt(length), - ] as const, - ) ?? [] - ) - }, [callStatePoolsCount, pairsUniqueAddr]) - - const pairsUniqueProcessed = useMemo(() => { - return callStatePoolsCount - ?.map((s, i) => [i, s ? parseInt(s.toString()) : 0] as [number, number]) - .filter(([, length]) => length) - .map(([i]) => [pairsUnique[i][0], pairsUnique[i][1]]) - }, [callStatePoolsCount, pairsUnique]) - - const { - data: callStatePools, - isLoading: callStatePoolsLoading, - isError: callStatePoolsError, - queryKey: callStatePoolsQueryKey, - } = useReadContracts({ - contracts: useMemo(() => { - if (!callStatePoolsCountProcessed) return [] - return callStatePoolsCountProcessed.map((args) => ({ - chainId, - address: contract?.address as Address, - abi: tridentConstantPoolFactoryAbi, - functionName: 'getPools' as const, - args, - })) - }, [callStatePoolsCountProcessed, chainId, contract?.address]), - - query: { - enabled: Boolean( - callStatePoolsCountProcessed && - callStatePoolsCountProcessed?.length > 0 && - config?.query?.enabled, - ), - select: (results) => results.map((r) => r.result), - }, - }) - - const pools = useMemo(() => { - const pools: PoolData[] = [] - callStatePools?.forEach((s, i) => { - if (s !== undefined) - s?.forEach((address) => { - pools.push({ - address: address as Address, - token0: pairsUniqueProcessed?.[i][0] as Token, - token1: pairsUniqueProcessed?.[i][1] as Token, - }) - }) - }) - return pools - }, [callStatePools, pairsUniqueProcessed]) - - const poolsAddresses = useMemo( - () => pools.map((p) => p.address as Address), - [pools], - ) - - const contracts = [ - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentConstantPoolAbi, - functionName: 'getReserves' as const, - })), - ...poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentConstantPoolAbi, - functionName: 'swapFee' as const, - })), - ] - - const { - data: reservesAndFees, - isLoading: reservesAndFeesLoading, - isError: reservesAndFeesError, - queryKey: reservesAndFeesQueryKey, - } = useReadContracts({ - contracts, - query: { - enabled: poolsAddresses.length > 0 && config?.query?.enabled, - select: (results) => results.map((r) => r.result), - }, - }) - - const { data: blockNumber } = useBlockNumber({ chainId, watch: true }) - - useEffect(() => { - if (blockNumber) { - ;[ - callStatePoolsCountQueryKey, - callStatePoolsQueryKey, - reservesAndFeesQueryKey, - ].forEach((key) => { - queryClient.invalidateQueries(key, {}, { cancelRefetch: false }) - }) - } - }, [ - blockNumber, - queryClient, - callStatePoolsCountQueryKey, - callStatePoolsQueryKey, - reservesAndFeesQueryKey, - ]) - - return useMemo(() => { - return { - isLoading: - callStatePoolsCountLoading || - callStatePoolsLoading || - reservesAndFeesLoading, - isError: - callStatePoolsCountError || callStatePoolsError || reservesAndFeesError, - data: pools.map((p, i) => { - const _reserves = reservesAndFees?.[i] - const _swapFee = reservesAndFees?.[i + poolsAddresses.length] - - if (!_reserves || !_swapFee) { - return [TridentConstantPoolState.LOADING, null] - } - - if (typeof _reserves === 'bigint' || typeof _swapFee !== 'bigint') { - return [TridentConstantPoolState.LOADING, null] - } - - const reserves = { - _reserve0: _reserves[0], - _reserve1: _reserves[1], - _blockTimestampLast: _reserves[2], - } - - const swapFee = _swapFee - - return [ - TridentConstantPoolState.EXISTS, - new TridentConstantPool( - Amount.fromRawAmount(p.token0, reserves._reserve0.toString()), - Amount.fromRawAmount(p.token1, reserves._reserve1.toString()), - parseInt(swapFee.toString()), - reserves._blockTimestampLast !== 0, - ), - ] - }), - } - }, [ - callStatePoolsCountLoading, - callStatePoolsLoading, - reservesAndFeesLoading, - callStatePoolsCountError, - callStatePoolsError, - reservesAndFeesError, - pools, - reservesAndFees, - poolsAddresses.length, - ]) -} - -export function useTridentConstantPools( - chainId: TridentChainId, - pools: PoolInput[], -): [TridentConstantPoolState, TridentConstantPool | null][] { - const tridentConstantPoolFactory = - useTridentConstantPoolFactoryContract(chainId) - - const input = useMemo( - () => - pools - .filter((input): input is [Currency, Currency, Fee, boolean] => { - const [currencyA, currencyB, fee, twap] = input - return Boolean( - currencyA && - currencyB && - fee && - twap !== undefined && - currencyA.chainId === currencyB.chainId && - !currencyA.wrapped.equals(currencyB.wrapped) && - tridentConstantPoolFactory?.address, - ) - }) - .map<[Token, Token, Fee, boolean]>( - ([currencyA, currencyB, fee, twap]) => [ - currencyA.wrapped, - currencyB.wrapped, - fee, - twap, - ], - ), - [tridentConstantPoolFactory?.address, pools], - ) - - const poolsAddresses = useMemo( - () => - input.reduce((acc, [tokenA, tokenB, fee, twap]) => { - if (!tridentConstantPoolFactory) return acc - const address = computeTridentConstantPoolAddress({ - factoryAddress: tridentConstantPoolFactory.address, - tokenA, - tokenB, - fee, - twap, - }) as Address - acc.push(address) - return acc - }, []), - [tridentConstantPoolFactory, input], - ) - - const queryClient = useQueryClient() - - const { data, queryKey } = useReadContracts({ - contracts: poolsAddresses.map((address) => ({ - chainId, - address, - abi: tridentConstantPoolAbi, - functionName: 'getReserves' as const, - })), - - query: { - enabled: poolsAddresses.length > 0, - keepPreviousData: true, - select: (results) => results.map((r) => r.result), - }, - }) - - const { data: blockNumber } = useBlockNumber({ chainId, watch: true }) - - useEffect(() => { - if (blockNumber) { - queryClient.invalidateQueries(queryKey, {}, { cancelRefetch: false }) - } - }, [blockNumber, queryClient, queryKey]) - - return useMemo(() => { - if (poolsAddresses.length === 0) - return [[TridentConstantPoolState.INVALID, null]] - if (!data || !data.length) - return poolsAddresses.map(() => [TridentConstantPoolState.LOADING, null]) - return data.map((result, i) => { - const tokenA = pools[i][0]?.wrapped - const tokenB = pools[i][1]?.wrapped - const fee = pools[i]?.[2] - const twap = pools[i]?.[3] - if (!tokenA || !tokenB || tokenA.equals(tokenB)) - return [TridentConstantPoolState.INVALID, null] - if (!result) return [TridentConstantPoolState.NOT_EXISTS, null] - const [reserve0, reserve1] = result - const [token0, token1] = tokenA.sortsBefore(tokenB) - ? [tokenA, tokenB] - : [tokenB, tokenA] - - return [ - TridentConstantPoolState.EXISTS, - new TridentConstantPool( - Amount.fromRawAmount(token0, reserve0), - Amount.fromRawAmount(token1, reserve1), - fee, - twap, - ), - ] - }) - }, [data, pools, poolsAddresses]) -} - -export function useTridentConstantPool( - chainId: TridentChainId, - tokenA: Currency | undefined, - tokenB: Currency | undefined, - fee: Fee, - twap: boolean, -): [TridentConstantPoolState, TridentConstantPool | null] { - const inputs: [PoolInput] = useMemo( - () => [[tokenA, tokenB, Number(fee), Boolean(twap)]], - [tokenA, tokenB, fee, twap], - ) - return useTridentConstantPools(chainId, inputs)[0] -} diff --git a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts b/packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts deleted file mode 100644 index bfe23d4d44..0000000000 --- a/packages/wagmi/src/hooks/pools/hooks/useTridentStablePoolFactoryContract.ts +++ /dev/null @@ -1,22 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { TridentChainId } from 'sushi/config' -import { PublicClient, getContract } from 'viem' -import { usePublicClient } from 'wagmi' -import { getTridentStablePoolFactoryContract } from '../../../contracts' - -export function useTridentStablePoolFactoryContract( - chainId: TridentChainId | undefined, -) { - const client = usePublicClient({ chainId }) as PublicClient - - return useMemo(() => { - if (!chainId) return null - - return getContract({ - ...getTridentStablePoolFactoryContract(chainId), - client, - }) - }, [chainId, client]) -} diff --git a/packages/wagmi/src/hooks/pools/types/index.ts b/packages/wagmi/src/hooks/pools/types/index.ts index 9920ceed20..56c255bef5 100644 --- a/packages/wagmi/src/hooks/pools/types/index.ts +++ b/packages/wagmi/src/hooks/pools/types/index.ts @@ -1,14 +1,12 @@ import { PublicWagmiConfig } from '@sushiswap/wagmi-config' -import { SushiSwapV2Pool, TridentConstantPool, TridentStablePool } from 'sushi' +import { SushiSwapV2Pool } from 'sushi' import { ChainId } from 'sushi/chain' import { Type } from 'sushi/currency' import { TradeType } from 'sushi/dex' -import { BridgeBento, UniV3Pool } from 'sushi/tines' +import { UniV3Pool } from 'sushi/tines' export enum PoolType { SushiSwapV2Pool = 'SushiSwapV2', - TridentConstantPool = 'TridentConstant', - TridentStablePool = 'TridentStable', } export interface UsePoolsParams { @@ -24,8 +22,5 @@ export interface UsePoolsParams { export type UsePoolsReturn = { sushiSwapV2Pools: SushiSwapV2Pool[] | undefined - tridentConstantPools: TridentConstantPool[] | undefined - tridentStablePools: TridentStablePool[] | undefined - bridgeBentoPools: BridgeBento[] | undefined sushiSwapV3Pools: UniV3Pool[] | undefined } diff --git a/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx b/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx index f9b3974f8b..f6646ab3ab 100644 --- a/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx +++ b/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx @@ -3,11 +3,10 @@ import React, { FC } from 'react' import { ComponentsWrapperProps, SushiSwapV2PoolFinderProps, - TridentPoolFinderProps, } from './types' export const ComponentsWrapper: FC< - ComponentsWrapperProps + ComponentsWrapperProps > = ({ children }) => { return <>{children} } diff --git a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx b/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx index 57df47ab95..5ea70b934a 100644 --- a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx +++ b/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx @@ -12,19 +12,16 @@ import { import { SushiSwapV2PoolState } from '../../hooks' import { ComponentsWrapper } from './ComponentsWrapper' import { SushiSwapV2Pool } from './SushiSwapV2Pool' -import { TridentConstantPool } from './TridentConstantPool' -import { TridentStablePool } from './TridentStablePool' import { ComponentsWrapperProps, PoolExistenceStateAction, PoolStateUnion, - SushiSwapV2PoolFinderProps, - TridentPoolFinderProps, + SushiSwapV2PoolFinderProps } from './types' interface Props { components: ReactElement< - ComponentsWrapperProps + ComponentsWrapperProps > children({ pool }: { pool: PoolStateUnion }): ReactNode } @@ -74,11 +71,7 @@ const Controller: FC = ({ components, children }) => { export const PoolFinder: typeof Controller & { Components: typeof ComponentsWrapper SushiSwapV2Pool: typeof SushiSwapV2Pool - TridentConstantPool: typeof TridentConstantPool - TridentStablePool: typeof TridentStablePool } = Object.assign(Controller, { Components: ComponentsWrapper, - SushiSwapV2Pool, - TridentConstantPool, - TridentStablePool, + SushiSwapV2Pool }) diff --git a/packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx b/packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx deleted file mode 100644 index cf53b53182..0000000000 --- a/packages/wagmi/src/systems/PoolFinder/TridentConstantPool.tsx +++ /dev/null @@ -1,32 +0,0 @@ -import { FC, useEffect } from 'react' -import { Fee } from 'sushi/dex' - -import { useTridentConstantPool } from '../../hooks' -import { PoolFinderType, TridentPoolFinderProps } from './types' - -export const TridentConstantPool: FC = ({ - chainId, - dispatch, - token0, - token1, - index, - fee = Fee.DEFAULT, - twap = false, -}) => { - const state = useTridentConstantPool(chainId, token0, token1, fee, twap) - - useEffect(() => { - if (!dispatch || index === undefined) return - - dispatch({ - type: 'update', - payload: { - state, - index, - poolType: PoolFinderType.Classic, - }, - }) - }, [dispatch, index, state]) - - return <> -} diff --git a/packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx b/packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx deleted file mode 100644 index 3bcec8ef0a..0000000000 --- a/packages/wagmi/src/systems/PoolFinder/TridentStablePool.tsx +++ /dev/null @@ -1,31 +0,0 @@ -import { FC, useEffect } from 'react' -import { Fee } from 'sushi/dex' - -import { useTridentStablePool } from '../../hooks' -import { PoolFinderType, TridentPoolFinderProps } from './types' - -export const TridentStablePool: FC = ({ - chainId, - dispatch, - token0, - token1, - index, - fee = Fee.DEFAULT, - twap = false, -}) => { - const state = useTridentStablePool(chainId, token0, token1, fee, twap) - useEffect(() => { - if (!dispatch || index === undefined) return - - dispatch({ - type: 'update', - payload: { - state, - index, - poolType: PoolFinderType.Stable, - }, - }) - }, [dispatch, index, state]) - - return <> -} diff --git a/packages/wagmi/src/systems/PoolFinder/types.ts b/packages/wagmi/src/systems/PoolFinder/types.ts index e1153cca14..37203cf5a7 100644 --- a/packages/wagmi/src/systems/PoolFinder/types.ts +++ b/packages/wagmi/src/systems/PoolFinder/types.ts @@ -1,18 +1,11 @@ import { ReactElement } from 'react' -import { SushiSwapV2ChainId, TridentChainId } from 'sushi/config' +import { SushiSwapV2ChainId } from 'sushi/config' import { Type } from 'sushi/currency' -import { Fee } from 'sushi/dex' import { SushiSwapV2Pool, - TridentConstantPool, - TridentStablePool, } from 'sushi/pool' -import { - SushiSwapV2PoolState, - TridentConstantPoolState, - TridentStablePoolState, -} from '../../hooks' +import { SushiSwapV2PoolState } from '../../hooks' export type ComponentsWrapperProps = { children: @@ -39,16 +32,7 @@ export interface SushiSwapV2PoolFinderProps extends PoolFinderProps { enabled: boolean } -export interface TridentPoolFinderProps extends PoolFinderProps { - chainId: TridentChainId - fee?: Fee - twap?: boolean -} - -export type PoolStateUnion = [ - SushiSwapV2PoolState | TridentConstantPoolState | TridentStablePoolState, - SushiSwapV2Pool | TridentConstantPool | TridentStablePool | null, -] +export type PoolStateUnion = [SushiSwapV2PoolState, SushiSwapV2Pool | null] export enum PoolFinderType { Classic = 'Classic', From 0bee657d9a1ef7bd39ff7a6e489d4d509f14b7e1 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Thu, 23 May 2024 17:51:10 +0000 Subject: [PATCH 018/119] chore: format --- apps/evm/src/ui/pool/PoolChartV2.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 8 ++++++-- packages/wagmi/src/hooks/pools/actions/index.ts | 2 +- packages/wagmi/src/hooks/pools/hooks/index.ts | 2 +- packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts | 4 +--- .../wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx | 5 +---- packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx | 8 +++----- packages/wagmi/src/systems/PoolFinder/types.ts | 4 +--- 8 files changed, 15 insertions(+), 20 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolChartV2.tsx b/apps/evm/src/ui/pool/PoolChartV2.tsx index 7b5d4ab0b6..0ab0e1d222 100644 --- a/apps/evm/src/ui/pool/PoolChartV2.tsx +++ b/apps/evm/src/ui/pool/PoolChartV2.tsx @@ -11,7 +11,7 @@ import { PoolChartType, PoolChartTypes } from './PoolChartTypes' const charts = [ PoolChartType.Volume, PoolChartType.TVL, - PoolChartType.Fees + PoolChartType.Fees, ] as const const periods = [ PoolChartPeriod.Day, diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 944e0b4a04..9319d64d78 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -213,8 +213,12 @@ function useTransactionsV2( ...swap, sender: String(swap.sender), to: String(swap.to), - amountIn: Number(swap.amount0In !== '0'? swap.amount0In : swap.amount1In), - amountOut: Number(swap.amount0Out !== '0'? swap.amount0Out : swap.amount1Out), + amountIn: Number( + swap.amount0In !== '0' ? swap.amount0In : swap.amount1In, + ), + amountOut: Number( + swap.amount0Out !== '0' ? swap.amount0Out : swap.amount1Out, + ), type: TransactionType.Swap as const, })) diff --git a/packages/wagmi/src/hooks/pools/actions/index.ts b/packages/wagmi/src/hooks/pools/actions/index.ts index 8b4d4edf9b..967d5e1fe5 100644 --- a/packages/wagmi/src/hooks/pools/actions/index.ts +++ b/packages/wagmi/src/hooks/pools/actions/index.ts @@ -1,4 +1,4 @@ export * from './getAllPools' export * from './getConcentratedLiquidityPool' export * from './getConcentratedLiquidityPoolReserves' -export * from './getSushiSwapV2Pools' \ No newline at end of file +export * from './getSushiSwapV2Pools' diff --git a/packages/wagmi/src/hooks/pools/hooks/index.ts b/packages/wagmi/src/hooks/pools/hooks/index.ts index 2bcd8895f6..2fb78b5dec 100644 --- a/packages/wagmi/src/hooks/pools/hooks/index.ts +++ b/packages/wagmi/src/hooks/pools/hooks/index.ts @@ -3,4 +3,4 @@ export * from './useConcentratedLiquidityPoolReserves' export * from './usePools' export * from './usePoolsAsMap' export * from './usePoolsCodeMap' -export * from './useSushiSwapV2Pools' \ No newline at end of file +export * from './useSushiSwapV2Pools' diff --git a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts b/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts index 6e2d140881..8506fff9d4 100644 --- a/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts +++ b/packages/wagmi/src/hooks/pools/hooks/usePoolsAsMap.ts @@ -66,9 +66,7 @@ export const usePoolsAsMap = ({ withBentoPools: false, config, }) - const pools = [ - ...(data.sushiSwapV2Pools || []), - ] + const pools = [...(data.sushiSwapV2Pools || [])] return pools.reduce< Record< string, diff --git a/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx b/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx index f6646ab3ab..d4095eff38 100644 --- a/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx +++ b/packages/wagmi/src/systems/PoolFinder/ComponentsWrapper.tsx @@ -1,9 +1,6 @@ import React, { FC } from 'react' -import { - ComponentsWrapperProps, - SushiSwapV2PoolFinderProps, -} from './types' +import { ComponentsWrapperProps, SushiSwapV2PoolFinderProps } from './types' export const ComponentsWrapper: FC< ComponentsWrapperProps diff --git a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx b/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx index 5ea70b934a..2614a6253c 100644 --- a/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx +++ b/packages/wagmi/src/systems/PoolFinder/PoolFinder.tsx @@ -16,13 +16,11 @@ import { ComponentsWrapperProps, PoolExistenceStateAction, PoolStateUnion, - SushiSwapV2PoolFinderProps + SushiSwapV2PoolFinderProps, } from './types' interface Props { - components: ReactElement< - ComponentsWrapperProps - > + components: ReactElement> children({ pool }: { pool: PoolStateUnion }): ReactNode } @@ -73,5 +71,5 @@ export const PoolFinder: typeof Controller & { SushiSwapV2Pool: typeof SushiSwapV2Pool } = Object.assign(Controller, { Components: ComponentsWrapper, - SushiSwapV2Pool + SushiSwapV2Pool, }) diff --git a/packages/wagmi/src/systems/PoolFinder/types.ts b/packages/wagmi/src/systems/PoolFinder/types.ts index 37203cf5a7..58a84a27ec 100644 --- a/packages/wagmi/src/systems/PoolFinder/types.ts +++ b/packages/wagmi/src/systems/PoolFinder/types.ts @@ -1,9 +1,7 @@ import { ReactElement } from 'react' import { SushiSwapV2ChainId } from 'sushi/config' import { Type } from 'sushi/currency' -import { - SushiSwapV2Pool, -} from 'sushi/pool' +import { SushiSwapV2Pool } from 'sushi/pool' import { SushiSwapV2PoolState } from '../../hooks' From d31cf65b2adc4325d74e20e524c3ff93f90d4b0e Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Thu, 23 May 2024 19:00:39 +0000 Subject: [PATCH 019/119] feat(pkgs/graph-client): create new package, initial configs --- .vscode/settings.json | 2 + config/graph/src/index.ts | 6 +- packages/graph-client-new/package.json | 84 + packages/graph-client-new/schema.graphql | 6326 +++ packages/graph-client-new/schema.json | 43738 ++++++++++++++++ packages/graph-client-new/scripts/t.ts | 5 + .../graph-client-new/scripts/tsconfig.json | 6 + .../scripts/update-schemas.ts | 54 + .../graph-client-new/src/lib/request-paged.ts | 125 + packages/graph-client-new/src/scalars.ts | 5 + .../src/subgraphs/blocks/blocks-cache.d.ts | 9 + .../src/subgraphs/blocks/blocks-env.d.ts | 42 + .../src/subgraphs/blocks/schema.graphql | 379 + .../src/subgraphs/sushi-v2/index.ts | 0 .../src/subgraphs/sushi-v2/schema.graphql | 5133 ++ .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 9 + .../src/subgraphs/sushi-v2/sushi-v2-env.d.ts | 103 + .../src/subgraphs/sushi-v3/graphql.ts | 8 + .../src/subgraphs/sushi-v3/index.ts | 0 .../src/subgraphs/sushi-v3/queries/burns.ts | 54 + .../subgraphs/sushi-v3/queries/collects.ts | 52 + .../subgraphs/sushi-v3/queries/day-datas.ts | 49 + .../src/subgraphs/sushi-v3/queries/factory.ts | 44 + .../src/subgraphs/sushi-v3/queries/mints.ts | 55 + .../src/subgraphs/sushi-v3/queries/pool.ts | 79 + .../sushi-v3/queries/pools-by-token-pair.ts | 79 + .../src/subgraphs/sushi-v3/queries/swaps.ts | 54 + .../sushi-v3/queries/transactions.ts | 85 + .../src/subgraphs/sushi-v3/schema.graphql | 6326 +++ .../src/subgraphs/sushi-v3/sushi-v3-env.d.ts | 105 + packages/graph-client-new/tsconfig.json | 37 + pnpm-lock.yaml | 846 +- 32 files changed, 63774 insertions(+), 125 deletions(-) create mode 100644 packages/graph-client-new/package.json create mode 100644 packages/graph-client-new/schema.graphql create mode 100644 packages/graph-client-new/schema.json create mode 100644 packages/graph-client-new/scripts/t.ts create mode 100644 packages/graph-client-new/scripts/tsconfig.json create mode 100644 packages/graph-client-new/scripts/update-schemas.ts create mode 100644 packages/graph-client-new/src/lib/request-paged.ts create mode 100644 packages/graph-client-new/src/scalars.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts create mode 100644 packages/graph-client-new/tsconfig.json diff --git a/.vscode/settings.json b/.vscode/settings.json index 890b18e1a4..5343c441be 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -32,6 +32,8 @@ "editor.defaultFormatter": "biomejs.biome", "editor.formatOnSave": true }, + "typescript.tsdk": "apps/evm/node_modules/typescript/lib", + "typescript.enablePromptUseWorkspaceTsdk": true, "[typescript]": { "editor.defaultFormatter": "biomejs.biome", "editor.formatOnSave": true diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index bfcbf2b4d5..6b57aa9a3d 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -316,7 +316,7 @@ export const SECONDS_BETWEEN_BLOCKS: Record = { [ChainId.SCROLL]: 3, } as const -export const SUSHISWAP_SUBGRAPH_URL: Record = { +export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-ethereum`, [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/sushiswap-avalanche`, [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-arbitrum`, @@ -349,7 +349,7 @@ export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/sushiswap-skale-europa`, } as const -export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { +export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, [ChainId.ARBITRUM]: `${STUDIO_HOST}/v3-arbitrum/v0.0.1`, [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v3/v3-avalanche`, @@ -378,7 +378,7 @@ export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v3-skale-europa`, } -export const TRIDENT_SUBGRAPH_URL: Record = { +export const TRIDENT_SUBGRAPH_URL: Record = { [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-v2/trident-polygon`, [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-v2/trident-optimism`, [ChainId.KAVA]: `${KAVA_HOST}/sushi-qa/trident-kava`, diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json new file mode 100644 index 0000000000..dbe2b0b30b --- /dev/null +++ b/packages/graph-client-new/package.json @@ -0,0 +1,84 @@ +{ + "name": "@sushiswap/graph-client-new", + "version": "0.0.0", + "description": "Graph Client", + "keywords": [ + "sushi", + "graph", + "subgraph" + ], + "repository": { + "type": "git", + "url": "https://github.com/sushiswap/sushiswap.git", + "directory": "packages/graph-client-new" + }, + "license": "MIT", + "author": "LufyCZ ", + "type": "module", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.js", + "default": "./dist/index.js" + }, + "./abi": { + "types": "./dist/abi/index.d.ts", + "import": "./dist/abi/index.js", + "default": "./dist/abi/index.js" + }, + "./package.json": "./package.json" + }, + "module": "./dist/index.js", + "source": "src/index.ts", + "types": "./dist/index.d.ts", + "typesVersions": { + "*": { + ".": [ + "src/index" + ], + "abi": [ + "src/abi/index" + ] + } + }, + "typings": "dist/index.d.ts", + "files": [ + "dist/**" + ], + "scripts": { + "build:types": "gql.tada generate output && gql.tada turbo", + "build": "pnpm build:types && tsc", + "check": "tsc --pretty --noEmit", + "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", + "dev": "tsc --watch", + "lint": "TIMING=1 eslint src", + "lint:fix": "TIMING=1 eslint src --fix", + "prepublishOnly": "pnpm build", + "update-schemas": "tsx scripts/update-schemas.ts" + }, + "jest": { + "preset": "@sushiswap/jest-config/node" + }, + "dependencies": { + "@sushiswap/graph-config": "workspace:*", + "gql.tada": "^1.7.5", + "graphql-request": "^7.0.1", + "sushi": "workspace:*" + }, + "devDependencies": { + "@0no-co/graphqlsp": "^1.12.3", + "@sushiswap/jest-config": "workspace:*", + "@tsconfig/esm": "1.0.4", + "@tsconfig/strictest": "2.0.2", + "@types/node": "20", + "eslint": "8.43.0", + "fetch-graphql-schema": "^0.2.1", + "graphql-fetch-schema": "^1.1.0", + "graphql-js-schema-fetch": "^1.1.2", + "tsx": "^4.7.1", + "typescript": "5.2.2" + }, + "peerDependencies": { + "@wagmi/core": "2.10.2" + } +} diff --git a/packages/graph-client-new/schema.graphql b/packages/graph-client-new/schema.graphql new file mode 100644 index 0000000000..766d37e403 --- /dev/null +++ b/packages/graph-client-new/schema.graphql @@ -0,0 +1,6326 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +type Bundle { + id: ID! + ethPriceUSD: BigDecimal! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Bundle_filter] + or: [Bundle_filter] +} + +enum Bundle_orderBy { + id + ethPriceUSD +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Burn_filter] + or: [Burn_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__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 +} + +scalar Bytes + +type Collect { + id: ID! + transaction: Transaction! + timestamp: BigInt! + pool: Pool! + owner: Bytes + amount0: BigDecimal! + amount1: BigDecimal! + amountUSD: BigDecimal + tickLower: BigInt! + tickUpper: BigInt! + logIndex: BigInt +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + owner: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Collect_filter] + or: [Collect_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__liquidityProviderCount + owner + amount0 + amount1 + amountUSD + tickLower + tickUpper + logIndex +} + +type DecreaseEvent { + id: ID! + pool: Pool! + tokenID: BigInt! + position: Position! + amount0: BigInt! + amount1: BigInt! + token0: Token! + token1: Token! + timeStamp: BigInt! + transaction: Transaction! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: Transaction_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [DecreaseEvent_filter] + or: [DecreaseEvent_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__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 +} + +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! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Factory_filter] + or: [Factory_filter] +} + +enum Factory_orderBy { + id + poolCount + txCount + totalVolumeUSD + totalVolumeETH + totalFeesUSD + totalFeesETH + untrackedVolumeUSD + totalValueLockedUSD + totalValueLockedETH + totalValueLockedUSDUntracked + totalValueLockedETHUntracked + owner +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + sender: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Flash_filter] + or: [Flash_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__liquidityProviderCount + sender + recipient + amount0 + amount1 + amountUSD + amount0Paid + amount1Paid + logIndex +} + +type IncreaseEvent { + id: ID! + pool: Pool! + tokenID: BigInt! + position: Position! + amount0: BigInt! + amount1: BigInt! + token0: Token! + token1: Token! + timeStamp: BigInt! + transaction: Transaction! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: Transaction_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [IncreaseEvent_filter] + or: [IncreaseEvent_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__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 +} + +"8 bytes signed integer\n" +scalar Int8 + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Mint_filter] + or: [Mint_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__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 +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +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! + liquidityProviderCount: BigInt! + poolHourData(skip: Int = 0, first: Int = 100, orderBy: PoolHourData_orderBy, orderDirection: OrderDirection, where: PoolHourData_filter): [PoolHourData!]! + poolDayData(skip: Int = 0, first: Int = 100, orderBy: PoolDayData_orderBy, orderDirection: OrderDirection, where: PoolDayData_filter): [PoolDayData!]! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! + collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! + ticks(skip: Int = 0, first: Int = 100, orderBy: Tick_orderBy, orderDirection: OrderDirection, where: Tick_filter): [Tick!]! +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PoolDayData_filter] + or: [PoolDayData_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__liquidityProviderCount + liquidity + sqrtPrice + token0Price + token1Price + tick + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + tvlUSD + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + open + high + low + close +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PoolHourData_filter] + or: [PoolHourData_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__liquidityProviderCount + liquidity + sqrtPrice + token0Price + token1Price + tick + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + tvlUSD + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + open + high + low + close +} + +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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + feeTier: BigInt + feeTier_not: BigInt + feeTier_gt: BigInt + feeTier_lt: BigInt + feeTier_gte: BigInt + feeTier_lte: BigInt + feeTier_in: [BigInt!] + feeTier_not_in: [BigInt!] + 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!] + 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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pool_filter] + or: [Pool_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 + liquidityProviderCount + poolHourData + poolDayData + mints + burns + swaps + collects + ticks +} + +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(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! + decreaseEvents(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PositionSnapshot_filter] + or: [PositionSnapshot_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__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 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + tickLower_contains_nocase: String + tickLower_not_contains: String + tickLower_not_contains_nocase: 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_: 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_contains: String + tickUpper_contains_nocase: String + tickUpper_not_contains: String + tickUpper_not_contains_nocase: 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_: 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Position_filter] + or: [Position_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__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 +} + +type Query { + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + tick( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tick + ticks( + skip: Int = 0 + first: Int = 100 + orderBy: Tick_orderBy + orderDirection: OrderDirection + where: Tick_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tick!]! + position( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Position + positions( + skip: Int = 0 + first: Int = 100 + orderBy: Position_orderBy + orderDirection: OrderDirection + where: Position_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Position!]! + positionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PositionSnapshot + positionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PositionSnapshot_orderBy + orderDirection: OrderDirection + where: PositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PositionSnapshot!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + collect( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Collect + collects( + skip: Int = 0 + first: Int = 100 + orderBy: Collect_orderBy + orderDirection: OrderDirection + where: Collect_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Collect!]! + flash( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Flash + flashes( + skip: Int = 0 + first: Int = 100 + orderBy: Flash_orderBy + orderDirection: OrderDirection + where: Flash_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Flash!]! + uniswapDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniswapDayData + uniswapDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: UniswapDayData_orderBy + orderDirection: OrderDirection + where: UniswapDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniswapDayData!]! + poolDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolDayData + poolDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolDayData_orderBy + orderDirection: OrderDirection + where: PoolDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolDayData!]! + poolHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHourData + poolHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHourData_orderBy + orderDirection: OrderDirection + where: PoolHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHourData!]! + tickHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickHourData + tickHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickHourData_orderBy + orderDirection: OrderDirection + where: TickHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickHourData!]! + tickDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickDayData + tickDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickDayData_orderBy + orderDirection: OrderDirection + where: TickDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickDayData!]! + tokenDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDayData + tokenDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDayData_orderBy + orderDirection: OrderDirection + where: TokenDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDayData!]! + tokenHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourData + tokenHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourData_orderBy + orderDirection: OrderDirection + where: TokenHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourData!]! + increaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): IncreaseEvent + increaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: IncreaseEvent_orderBy + orderDirection: OrderDirection + where: IncreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [IncreaseEvent!]! + decreaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DecreaseEvent + decreaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: DecreaseEvent_orderBy + orderDirection: OrderDirection + where: DecreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DecreaseEvent!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + tick( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tick + ticks( + skip: Int = 0 + first: Int = 100 + orderBy: Tick_orderBy + orderDirection: OrderDirection + where: Tick_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tick!]! + position( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Position + positions( + skip: Int = 0 + first: Int = 100 + orderBy: Position_orderBy + orderDirection: OrderDirection + where: Position_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Position!]! + positionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PositionSnapshot + positionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PositionSnapshot_orderBy + orderDirection: OrderDirection + where: PositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PositionSnapshot!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + collect( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Collect + collects( + skip: Int = 0 + first: Int = 100 + orderBy: Collect_orderBy + orderDirection: OrderDirection + where: Collect_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Collect!]! + flash( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Flash + flashes( + skip: Int = 0 + first: Int = 100 + orderBy: Flash_orderBy + orderDirection: OrderDirection + where: Flash_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Flash!]! + uniswapDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniswapDayData + uniswapDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: UniswapDayData_orderBy + orderDirection: OrderDirection + where: UniswapDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniswapDayData!]! + poolDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolDayData + poolDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolDayData_orderBy + orderDirection: OrderDirection + where: PoolDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolDayData!]! + poolHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHourData + poolHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHourData_orderBy + orderDirection: OrderDirection + where: PoolHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHourData!]! + tickHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickHourData + tickHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickHourData_orderBy + orderDirection: OrderDirection + where: TickHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickHourData!]! + tickDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickDayData + tickDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickDayData_orderBy + orderDirection: OrderDirection + where: TickDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickDayData!]! + tokenDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDayData + tokenDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDayData_orderBy + orderDirection: OrderDirection + where: TokenDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDayData!]! + tokenHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourData + tokenHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourData_orderBy + orderDirection: OrderDirection + where: TokenHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourData!]! + increaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): IncreaseEvent + increaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: IncreaseEvent_orderBy + orderDirection: OrderDirection + where: IncreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [IncreaseEvent!]! + decreaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DecreaseEvent + decreaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: DecreaseEvent_orderBy + orderDirection: OrderDirection + where: DecreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DecreaseEvent!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Swap_filter] + or: [Swap_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__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 +} + +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 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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + tick_contains_nocase: String + tick_not_contains: String + tick_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TickDayData_filter] + or: [TickDayData_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__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 +} + +type TickHourData { + id: ID! + periodStartUnix: Int! + pool: Pool! + tick: Tick! + liquidityGross: BigInt! + liquidityNet: BigInt! + volumeToken0: BigDecimal! + volumeToken1: BigDecimal! + volumeUSD: BigDecimal! + feesUSD: BigDecimal! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + tick_contains_nocase: String + tick_not_contains: String + tick_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TickHourData_filter] + or: [TickHourData_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__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 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_contains: String + poolAddress_contains_nocase: String + poolAddress_not_contains: String + poolAddress_not_contains_nocase: 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 + 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Tick_filter] + or: [Tick_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__liquidityProviderCount + liquidityGross + liquidityNet + price0 + price1 + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + feeGrowthOutside0X128 + feeGrowthOutside1X128 +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +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(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!]! + tokenDayData(skip: Int = 0, first: Int = 100, orderBy: TokenDayData_orderBy, orderDirection: OrderDirection, where: TokenDayData_filter): [TokenDayData!]! +} + +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! +} + +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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenDayData_filter] + or: [TokenDayData_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 +} + +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! +} + +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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenHourData_filter] + or: [TokenHourData_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 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_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + 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_contains_nocase: [String!] + whitelistPools_not_contains: [String!] + whitelistPools_not_contains_nocase: [String!] + whitelistPools_: Pool_filter + tokenDayData_: TokenDayData_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + symbol + name + decimals + totalSupply + volume + volumeUSD + untrackedVolumeUSD + feesUSD + txCount + poolCount + totalValueLocked + totalValueLockedUSD + totalValueLockedUSDUntracked + derivedETH + whitelistPools + tokenDayData +} + +type Transaction { + id: ID! + blockNumber: BigInt! + timestamp: BigInt! + gasUsed: BigInt! + gasPrice: BigInt! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! + flashed(skip: Int = 0, first: Int = 100, orderBy: Flash_orderBy, orderDirection: OrderDirection, where: Flash_filter): [Flash!]! + collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! +} + +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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + blockNumber + timestamp + gasUsed + gasPrice + mints + burns + swaps + flashed + collects +} + +type UniswapDayData { + id: ID! + date: Int! + volumeETH: BigDecimal! + volumeUSD: BigDecimal! + volumeUSDUntracked: BigDecimal! + feesUSD: BigDecimal! + txCount: BigInt! + tvlUSD: BigDecimal! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniswapDayData_filter] + or: [UniswapDayData_filter] +} + +enum UniswapDayData_orderBy { + id + date + volumeETH + volumeUSD + volumeUSDUntracked + feesUSD + txCount + tvlUSD +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/schema.json b/packages/graph-client-new/schema.json new file mode 100644 index 0000000000..b6c1131522 --- /dev/null +++ b/packages/graph-client-new/schema.json @@ -0,0 +1,43738 @@ +{ + "data": { + "__schema": { + "queryType": { + "name": "Query" + }, + "mutationType": null, + "subscriptionType": { + "name": "Subscription" + }, + "types": [ + { + "kind": "ENUM", + "name": "Aggregation_interval", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "hour", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "day", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "BigDecimal", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "BigInt", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "number_gte", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "hash", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "number_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Boolean", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Bundle", + "description": " Bundle - should only ever be one created", + "fields": [ + { + "name": "id", + "description": " hardcoded to '1'", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nativePrice", + "description": " Price of native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Bundle_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nativePrice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nativePrice_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nativePrice_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Bundle_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Bundle_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Bundle_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nativePrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Burn", + "description": null, + "fields": [ + { + "name": "id", + "description": " transaction.id:transaction.burns.length ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount0", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount1", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "complete", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeTo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeLiquidity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "logIndex_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "complete", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "complete_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "complete_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "complete_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Burn_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasLimit", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "complete", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeTo", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeLiquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Bytes", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Factory", + "description": null, + "fields": [ + { + "name": "id", + "description": " Contract address ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": " Factory type ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": " Volume USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": " Volume Native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": " Liquidity USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": " Liquidity NATIVE ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": " Fees USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": " Fees NATIVE ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairCount", + "description": " Pair count ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": " Transaction count ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenCount", + "description": " Token count ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userCount", + "description": " User count ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FactoryDaySnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {factoryId}-day-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FactoryDaySnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FactoryDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FactoryDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FactoryDaySnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__tokenCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__userCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "FactoryHourSnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {factoryId}-hour-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "FactoryHourSnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "factory_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "factory_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FactoryHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "FactoryHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "FactoryHourSnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__tokenCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory__userCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_not", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pairCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pairCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "userCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "userCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "userCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Factory_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "userCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Float", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "ID", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int", + "description": "4 bytes signed integer\n", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Int8", + "description": "8 bytes signed integer\n", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LiquidityPosition", + "description": null, + "fields": [ + { + "name": "id", + "description": "pair.id:user.id", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "balance", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {lp.id}-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": " saved for fast historical lookups ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block", + "description": " saved for fast historical lookups ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": " reference to user ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": " reference to pair ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0PriceUSD", + "description": " snapshot of token0 price ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1PriceUSD", + "description": " snapshot of token1 price ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve0", + "description": " snapshot of pair token0 reserves ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve1", + "description": " snapshot of pair token1 reserves ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserveUSD", + "description": " snapshot of pair reserves in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityTokenTotalSupply", + "description": " snapshot of pool token supply ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityTokenBalance", + "description": " snapshot of users pool token balance ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityPosition", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPosition_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "block_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token0PriceUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1PriceUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserveUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserveUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserveUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityTokenTotalSupply_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityTokenBalance_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LiquidityPositionSnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition__balance", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "block", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user__lpSnapshotsCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0PriceUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1PriceUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserveUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityTokenTotalSupply", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityTokenBalance", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "user_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "user_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "balance_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "balance_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtBlock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "LiquidityPosition_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user__lpSnapshotsCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "balance", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Mint", + "description": null, + "fields": [ + { + "name": "id", + "description": " transaction.id:transaction.mints.length ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount0", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount1", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeTo", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeLiquidity", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amount1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amount1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "logIndex", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "logIndex_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeTo_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeTo_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feeLiquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Mint_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasLimit", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amount1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeTo", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feeLiquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "OrderDirection", + "description": "Defines the order direction, either ascending or descending", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "asc", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "desc", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Pair", + "description": null, + "fields": [ + { + "name": "id", + "description": " Pair address (contract address) ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": " Pair type ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swapFee", + "description": " Swap fee ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "twapEnabled", + "description": " TWAP - time weighted average price ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": " name of the pair, this combines symbol of both tokens, e.g. WETH/SUSHI ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0", + "description": " First Token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1", + "description": " Second Token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": " Which source this pair comes from, in this case it will always be 'LEGACY' ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": " Which block this pair was created on ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": " When this pair was created ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve0", + "description": " Liquidity of first token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve1", + "description": " Liquidity of second token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cacheUpdatedAtBlock", + "description": " which block _k was saved ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_reserve0", + "description": " Liquidity of first token, this is only updated for the first transaction in a block ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_reserve1", + "description": " Liquidity of second token, this is only updated for the first transaction in a block ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_token0Price", + "description": " Price of the first token in this pair, this is only updated for the first transaction in a block ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_token1Price", + "description": " Price of the second token in this pair, this is only updated for the first transaction in a block ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": " Liquidity, Total supply of all LP in this pool ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": " USD liquidity", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": " Native Liquidity ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackedLiquidityNative", + "description": " Tracked Liquidity native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0Price", + "description": " Price of the first token in this pair, not to be confused with TokenPrice entity ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1Price", + "description": " Price of the second token in this pair, not to be confused with TokenPrice entity ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": " Fee in Native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": " Fee in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": " APR ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aprUpdatedAtTimestamp", + "description": " When APR was last updated ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "txCount", + "description": " Transaction count ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": " Liquidity Positions ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPosition_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshots", + "description": " Liquidity position snapshots ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPositionSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hourSnapshots", + "description": " Pair Hour Snapshot ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "daySnapshots", + "description": " Pair Day Snapshot ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {pairId}-day-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeVolumeUSD", + "description": " Used to calculate apr ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PairDaySnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeVolumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {pairId}-hour-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeVolumeUSD", + "description": " Used to calculate apr ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "cumulativeVolumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PairHourSnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "cumulativeVolumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "PairType", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "CONSTANT_PRODUCT_POOL", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_not", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "type_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "type_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "PairType", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swapFee", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swapFee_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swapFee_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "twapEnabled", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "twapEnabled_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "twapEnabled_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "twapEnabled_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token0_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "source_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "source_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "source_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "reserve1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "reserve1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cacheUpdatedAtBlock_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_reserve0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_reserve1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_token0Price_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_cache_token1Price_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "trackedLiquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token0Price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token0Price_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token0Price_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1Price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token1Price_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token1Price_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken0_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken0_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeToken1_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeToken1_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "apr_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "apr_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "aprUpdatedAtTimestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "txCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "txCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityPositions_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityPositionSnapshots_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "hourSnapshots_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "daySnapshots_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Pair_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshots", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hourSnapshots", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "daySnapshots", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Query", + "description": null, + "fields": [ + { + "name": "version", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_Version", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_Version_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_Version_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_Version", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factories", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Factory_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bundle", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Bundle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bundles", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Bundle_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Bundle_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Bundle", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokens", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Token_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPrice", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPrices", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenPrice_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenPrice", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_TokenPair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_TokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_TokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokenPair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokenPairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_WhitelistedTokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Pair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "User_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPosition_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mint", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Mint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mints", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Mint_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mint", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burn", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Burn", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burns", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Burn_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Burn", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swap", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Swap", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swaps", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Swap_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Swap", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Transaction_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPositionSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "FactoryHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FactoryHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FactoryHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FactoryHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "FactoryDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FactoryDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FactoryDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FactoryDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_meta", + "description": "Access to subgraph metadata", + "args": [ + { + "name": "block", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "_Meta_", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "String", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Subscription", + "description": null, + "fields": [ + { + "name": "version", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_Version", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "versions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_Version_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_Version_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_Version", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factory", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factories", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Factory_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Factory_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Factory", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bundle", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Bundle", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "bundles", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Bundle_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Bundle_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Bundle", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokens", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Token_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPrice", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenPrice", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPrices", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenPrice_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenPrice", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_TokenPair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenPairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_TokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_TokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokenPair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedTokenPairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_WhitelistedTokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairs", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Pair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "user", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "User", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "users", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "User_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "User", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPosition", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPosition_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mint", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Mint", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mints", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Mint_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mint", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burn", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Burn", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burns", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Burn_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Burn", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swap", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Swap", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swaps", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Swap_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Swap", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Transaction_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositionSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPositionSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPositionSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPositionSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "PairDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "PairDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PairDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "TokenDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "TokenDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryHourSnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "FactoryHourSnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryHourSnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FactoryHourSnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FactoryHourSnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FactoryHourSnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryDaySnapshot", + "description": null, + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "OBJECT", + "name": "FactoryDaySnapshot", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "factoryDaySnapshots", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "FactoryDaySnapshot_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "FactoryDaySnapshot_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "block", + "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "subgraphError", + "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "ofType": null + } + }, + "defaultValue": "deny" + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "FactoryDaySnapshot", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "_meta", + "description": "Access to subgraph metadata", + "args": [ + { + "name": "block", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Block_height", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "OBJECT", + "name": "_Meta_", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Swap", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transaction", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountIn", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountOut", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transaction_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transaction_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "timestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "timestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "sender_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "sender_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenIn_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenIn_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "tokenOut_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "tokenOut_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountIn_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountIn_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountOut", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountOut_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountOut_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "to_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "to_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "logIndex_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "logIndex_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "amountUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "amountUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Swap_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasLimit", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__gasPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transaction__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "sender", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenIn__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "tokenOut__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountIn", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountOut", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "to", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "logIndex", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "amountUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "SCALAR", + "name": "Timestamp", + "description": "A string representation of microseconds UNIX timestamp (16 digits)\n", + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Token", + "description": null, + "fields": [ + { + "name": "id", + "description": " Token address ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": " Token Price ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "TokenPrice", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "symbol", + "description": " Symbol of the token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "symbolSuccess", + "description": " if symbol was successfully retrieved ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": " Name of the token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameSuccess", + "description": " if name was successfully retrieved ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals", + "description": " Decimals of the token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimalsSuccess", + "description": " if decimals were successfully retrieved ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": " Liquidity ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": " Liquidity in native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": " Liquidity in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": " Volume ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": " Volume in native ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": " Volume in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": " Fee in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": " Volume in USD ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "txCount", + "description": " Count of all the transactions ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairCount", + "description": " Count of all the pairs ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedPairCount", + "description": " Count of all the whitelisted pairs ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairs", + "description": " All pairs where this token is involved in ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_TokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_TokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedPairs", + "description": " All whitelisted pairs where this token is involved in ", + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "_WhitelistedTokenPair_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TokenDaySnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {tokenId}-day-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenDaySnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenDaySnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TokenDaySnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TokenHourSnapshot", + "description": null, + "fields": [ + { + "name": "id", + "description": " {tokenId}-hour-{timestamp} ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenHourSnapshot_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "date_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "date_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "priceUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "priceUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "transactionCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "transactionCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenHourSnapshot_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TokenHourSnapshot_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "date", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "priceUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "transactionCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "TokenPrice", + "description": null, + "fields": [ + { + "name": "id", + "description": " same as token entity id, address of token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": " Token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "derivedNative", + "description": " derived native, this is useful for calculating price. (derivedNative * bundle.nativePrice = USD price) ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsdPrice", + "description": " price in USD. NOTE: this will not always be up to date, it only updates when onSync event is emitted, bundle.nativePrice could have changed. ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken", + "description": " Which token this price is based on ", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair", + "description": " Which pair this price is based on ", + "args": [], + "type": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "derivedNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "derivedNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lastUsdPrice_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pricedOffToken", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffToken_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pricedOffPair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "TokenPrice_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "derivedNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lastUsdPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffToken__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pricedOffPair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "price", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "price_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "price_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "price_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "TokenPrice_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "symbol_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "symbol_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbol_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbolSuccess", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbolSuccess_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "symbolSuccess_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "symbolSuccess_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "name_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "name_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameSuccess", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameSuccess_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "nameSuccess_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "nameSuccess_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "decimals", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimals_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "decimals_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "decimalsSuccess", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimalsSuccess_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "decimalsSuccess_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "decimalsSuccess_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidity_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidity_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volume_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volume_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "volumeUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "volumeUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesNative_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesNative_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "feesUSD_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "feesUSD_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigDecimal", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "txCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "txCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "txCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pairCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pairCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pairCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "whitelistedPairCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pairs_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "whitelistedPairs_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Token_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price__derivedNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "price__lastUsdPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pairs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "whitelistedPairs", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "Transaction", + "description": null, + "fields": [ + { + "name": "id", + "description": " Tx hash ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasLimit", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasPrice", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mints", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Mint_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Mint", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burns", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Burn_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Burn", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swaps", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "Swap_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Swap", + "ofType": null + } + } + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "gasLimit", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasLimit_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "gasLimit_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "gasPrice", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "gasPrice_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "gasPrice_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_not_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "mints_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Mint_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "burns", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_not_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "burns_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Burn_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "swaps", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_not", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_not_contains", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_not_contains_nocase", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "swaps_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Swap_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtBlock_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "createdAtTimestamp_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "Transaction_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "Transaction_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasLimit", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "gasPrice", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "mints", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "burns", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "swaps", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "User", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lpSnapshotsCount", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": null, + "args": [ + { + "name": "skip", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "0" + }, + { + "name": "first", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "defaultValue": "100" + }, + { + "name": "orderBy", + "description": null, + "type": { + "kind": "ENUM", + "name": "LiquidityPosition_orderBy", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "orderDirection", + "description": null, + "type": { + "kind": "ENUM", + "name": "OrderDirection", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "where", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + } + ], + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "LiquidityPosition", + "ofType": null + } + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "lpSnapshotsCount_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "liquidityPositions_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "LiquidityPosition_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "User_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "User_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "lpSnapshotsCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "liquidityPositions", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "_Block_", + "description": null, + "fields": [ + { + "name": "hash", + "description": "The hash of the block", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "number", + "description": "The block number", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "timestamp", + "description": "Integer representation of the timestamp stored in blocks for the chain", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "parentHash", + "description": "The hash of the parent block", + "args": [], + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "_Meta_", + "description": "The type for the top-level _meta field", + "fields": [ + { + "name": "block", + "description": "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "_Block_", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deployment", + "description": "The deployment ID", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "hasIndexingErrors", + "description": "If `true`, the subgraph encountered indexing errors at some past block", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_SubgraphErrorPolicy_", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "allow", + "description": "Data will be returned even if the subgraph has indexing errors", + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "deny", + "description": "If the subgraph has indexing errors, data will be omitted. The default.", + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "_TokenPair", + "description": null, + "fields": [ + { + "name": "id", + "description": " id is created by combining token.id and count, e.g. 0x00x00:1 ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": " Pair ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": " Token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_TokenPair_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_TokenPair_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "_Version", + "description": null, + "fields": [ + { + "name": "id", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_Version_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "version", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "version_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "version_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "version_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_Version_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_Version_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_Version_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "version", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + }, + { + "kind": "OBJECT", + "name": "_WhitelistedTokenPair", + "description": null, + "fields": [ + { + "name": "id", + "description": " id is created by combining token.id and count, e.g. 0x00x00:1 ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": " Pair ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Pair", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": " Token ", + "args": [], + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Token", + "ofType": null + } + }, + "isDeprecated": false, + "deprecationReason": null + } + ], + "inputFields": null, + "interfaces": [], + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "description": null, + "fields": null, + "inputFields": [ + { + "name": "id", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "id_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "id_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "ID", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "pair_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "pair_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Pair_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lt", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_gte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_lte", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_not_in", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + "defaultValue": null + }, + { + "name": "token_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_contains_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_starts_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_not_ends_with_nocase", + "description": null, + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "token_", + "description": null, + "type": { + "kind": "INPUT_OBJECT", + "name": "Token_filter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "_change_block", + "description": "Filter for the block changed event.", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockChangedFilter", + "ofType": null + }, + "defaultValue": null + }, + { + "name": "and", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + } + }, + "defaultValue": null + }, + { + "name": "or", + "description": null, + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "_WhitelistedTokenPair_filter", + "ofType": null + } + }, + "defaultValue": null + } + ], + "interfaces": null, + "enumValues": null, + "possibleTypes": null + }, + { + "kind": "ENUM", + "name": "_WhitelistedTokenPair_orderBy", + "description": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "enumValues": [ + { + "name": "id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__type", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__swapFee", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__twapEnabled", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__source", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__createdAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cacheUpdatedAtBlock", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_reserve1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair___cache_token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__trackedLiquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token0Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__token1Price", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken0", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__volumeToken1", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__apr", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__aprUpdatedAtTimestamp", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "pair__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__id", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbol", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__symbolSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__name", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__nameSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimals", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__decimalsSuccess", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidity", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__liquidityUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volume", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__volumeUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesNative", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__feesUSD", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__txCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__pairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + }, + { + "name": "token__whitelistedPairCount", + "description": null, + "isDeprecated": false, + "deprecationReason": null + } + ], + "possibleTypes": null + } + ], + "directives": [ + { + "name": "skip", + "description": null, + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "name": "include", + "description": null, + "locations": [ + "FIELD", + "FRAGMENT_SPREAD", + "INLINE_FRAGMENT" + ], + "args": [ + { + "name": "if", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "name": "entity", + "description": "Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive.", + "locations": [ + "OBJECT" + ], + "args": [] + }, + { + "name": "subgraphId", + "description": "Defined a Subgraph ID for an object type", + "locations": [ + "OBJECT" + ], + "args": [ + { + "name": "id", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ] + }, + { + "name": "derivedFrom", + "description": "creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API.", + "locations": [ + "FIELD_DEFINITION" + ], + "args": [ + { + "name": "field", + "description": null, + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + "defaultValue": null + } + ] + } + ] + } + } +} \ No newline at end of file diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client-new/scripts/t.ts new file mode 100644 index 0000000000..d0c5456204 --- /dev/null +++ b/packages/graph-client-new/scripts/t.ts @@ -0,0 +1,5 @@ +import { getSushiV3Transactions } from '../src/subgraphs/sushi-v3/queries/transactions' + +const a = await getSushiV3Transactions(1, { first: 2001 }) + +console.log(a.length) diff --git a/packages/graph-client-new/scripts/tsconfig.json b/packages/graph-client-new/scripts/tsconfig.json new file mode 100644 index 0000000000..01a34e875f --- /dev/null +++ b/packages/graph-client-new/scripts/tsconfig.json @@ -0,0 +1,6 @@ +{ + "extends": "../tsconfig.json", + "compilerOptions": { + "noEmit": true + } +} \ No newline at end of file diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts new file mode 100644 index 0000000000..5c5e4982f9 --- /dev/null +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -0,0 +1,54 @@ +import { + BLOCKS_SUBGRAPH_URL, + SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V3_SUBGRAPH_URL, +} from '@sushiswap/graph-config' + +import fs from 'fs' + +import fetchSchema from 'graphql-fetch-schema' + +const schemas = { + blocks: BLOCKS_SUBGRAPH_URL[1], + 'sushi-v2': SUSHISWAP_SUBGRAPH_URL[1], + 'sushi-v3': SUSHISWAP_V3_SUBGRAPH_URL[1], +} as const satisfies Record + +async function updateSchema(schema: keyof typeof schemas) { + const path = `./src/subgraphs/${schema}/schema.graphql` + const url = schemas[schema] + + try { + const [{ contents }] = await fetchSchema.default(`https://${url}/`, { + json: false, + graphql: true, + }) + + fs.writeFileSync(path, contents) + } catch (e) { + return { + schema, + success: false, + error: e, + } + } + + return { + schema, + success: true, + } +} + +const res = await Promise.all( + Object.keys(schemas).map((schema) => + updateSchema(schema as keyof typeof schemas), + ), +) + +res.forEach((r) => { + if (r.success) { + console.log(`Updated ${r.schema} schema`) + } else { + console.error(`Failed to update ${r.schema} schema`, r.error) + } +}) diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client-new/src/lib/request-paged.ts new file mode 100644 index 0000000000..e458fedded --- /dev/null +++ b/packages/graph-client-new/src/lib/request-paged.ts @@ -0,0 +1,125 @@ +import { MAX_FIRST } from '@sushiswap/graph-config' +import type { ResultOf, TadaDocumentNode, VariablesOf } from 'gql.tada' +import _request from 'graphql-request' +import type { ChainId } from 'sushi/chain' + +interface RequestPaged>> { + chainId: ChainId + url: string + query: T + variables: VariablesOf +} + +type ResultOfValue = + ResultOf[keyof ResultOf][number][] + +function request( + url: string, + query: T, + variables: VariablesOf, +): Promise> { + return _request(url, query, variables as any) as Promise> +} + +/** + * + * @brief A wrapper for graphql-request's request function that handles pagination + * @warning This function only works with queries that have a single key in the result, the rest will be ignored + * + * @param chainId Required to retrieve the maxFirst value + * @param url The URL of the subgraph + * @param query The query to be executed + * @param variables The variables to be passed to the query + */ +export async function requestPaged({ + chainId, + url, + query, + variables, +}: RequestPaged) { + const maxFirst = MAX_FIRST[chainId] + + // No need to page + if ( + 'first' in variables && + typeof variables['first'] === 'number' && + variables['first'] <= maxFirst + ) { + return request(url, query, variables) + } + + if ('orderBy' in variables) { + throw new Error('orderBy is not allowed in requestPaged') + } + + if ('orderDirection' in variables) { + throw new Error('orderDirection is not allowed in requestPaged') + } + + const querySelection = (query as any)?.definitions?.[0]?.selectionSet + ?.selections?.[0] + + if (!querySelection) { + throw new Error('Query selection not found') + } + + // We need the id value to paginate + if ( + !querySelection.selectionSet.selections.find((s: any) => { + return s.name.value === 'id' + }) + ) { + throw new Error('Id not found in query selection') + } + + const key = querySelection?.name?.value as keyof ResultOf + if (!key) { + throw new Error('Key not found') + } + + let lastSize = maxFirst + let results: ResultOfValue = [] + let lastId: string | null = null + + while (lastSize === maxFirst) { + const lastIdWhere: any = typeof lastId === 'string' ? { id_gt: lastId } : {} + + const result = await request(url, query, { + ...variables, + first: maxFirst, + where: { + ...(variables?.['where'] ?? {}), + ...lastIdWhere, + }, + orderBy: 'id', + orderDirection: 'asc', + }).then((r: ResultOf) => { + if (!r) return null + return Object.values(r)[0] as ResultOfValue + }) + + if (!result) { + break + } + + if (result.length === 0) { + break + } + + results = results.concat(result) + + lastSize = result.length + lastId = result[result.length - 1]!.id + + if ( + 'first' in variables && + typeof variables['first'] === 'number' && + results.length >= variables['first'] + ) { + results = results.slice(0, variables['first']) + break + } + } + + return { [key]: results } as ResultOf +} diff --git a/packages/graph-client-new/src/scalars.ts b/packages/graph-client-new/src/scalars.ts new file mode 100644 index 0000000000..8417649de4 --- /dev/null +++ b/packages/graph-client-new/src/scalars.ts @@ -0,0 +1,5 @@ +export type Scalars = { + BigInt: string + BigDecimal: string + Bytes: `0x${string}` +} diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts new file mode 100644 index 0000000000..e664361ffe --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts @@ -0,0 +1,9 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + + } +} diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts new file mode 100644 index 0000000000..ce60b52d24 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts @@ -0,0 +1,42 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'blocks'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'Block': { kind: 'OBJECT'; name: 'Block'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'difficulty': { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiptsRoot': { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stateRoot': { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalDifficulty': { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'transactionsRoot': { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unclesHash': { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_filter': { kind: 'INPUT_OBJECT'; name: 'Block_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'number_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'difficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Block_orderBy': { name: 'Block_orderBy'; enumValues: 'id' | 'number' | 'timestamp' | 'parentHash' | 'author' | 'difficulty' | 'totalDifficulty' | 'gasUsed' | 'gasLimit' | 'receiptsRoot' | 'transactionsRoot' | 'stateRoot' | 'size' | 'unclesHash'; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/blocks/schema.graphql b/packages/graph-client-new/src/subgraphs/blocks/schema.graphql new file mode 100644 index 0000000000..0680e7f5b1 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/schema.graphql @@ -0,0 +1,379 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +type Block { + id: ID! + number: BigInt! + timestamp: BigInt! + parentHash: String + author: String + difficulty: BigInt + totalDifficulty: BigInt + gasUsed: BigInt + gasLimit: BigInt + receiptsRoot: String + transactionsRoot: String + stateRoot: String + size: BigInt + unclesHash: String +} + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_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!] + number: BigInt + number_not: BigInt + number_gt: BigInt + number_lt: BigInt + number_gte: BigInt + number_lte: BigInt + number_in: [BigInt!] + number_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!] + parentHash: String + parentHash_not: String + parentHash_gt: String + parentHash_lt: String + parentHash_gte: String + parentHash_lte: String + parentHash_in: [String!] + parentHash_not_in: [String!] + parentHash_contains: String + parentHash_contains_nocase: String + parentHash_not_contains: String + parentHash_not_contains_nocase: String + parentHash_starts_with: String + parentHash_starts_with_nocase: String + parentHash_not_starts_with: String + parentHash_not_starts_with_nocase: String + parentHash_ends_with: String + parentHash_ends_with_nocase: String + parentHash_not_ends_with: String + parentHash_not_ends_with_nocase: String + author: String + author_not: String + author_gt: String + author_lt: String + author_gte: String + author_lte: String + author_in: [String!] + author_not_in: [String!] + author_contains: String + author_contains_nocase: String + author_not_contains: String + author_not_contains_nocase: String + author_starts_with: String + author_starts_with_nocase: String + author_not_starts_with: String + author_not_starts_with_nocase: String + author_ends_with: String + author_ends_with_nocase: String + author_not_ends_with: String + author_not_ends_with_nocase: String + difficulty: BigInt + difficulty_not: BigInt + difficulty_gt: BigInt + difficulty_lt: BigInt + difficulty_gte: BigInt + difficulty_lte: BigInt + difficulty_in: [BigInt!] + difficulty_not_in: [BigInt!] + totalDifficulty: BigInt + totalDifficulty_not: BigInt + totalDifficulty_gt: BigInt + totalDifficulty_lt: BigInt + totalDifficulty_gte: BigInt + totalDifficulty_lte: BigInt + totalDifficulty_in: [BigInt!] + totalDifficulty_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!] + gasLimit: BigInt + gasLimit_not: BigInt + gasLimit_gt: BigInt + gasLimit_lt: BigInt + gasLimit_gte: BigInt + gasLimit_lte: BigInt + gasLimit_in: [BigInt!] + gasLimit_not_in: [BigInt!] + receiptsRoot: String + receiptsRoot_not: String + receiptsRoot_gt: String + receiptsRoot_lt: String + receiptsRoot_gte: String + receiptsRoot_lte: String + receiptsRoot_in: [String!] + receiptsRoot_not_in: [String!] + receiptsRoot_contains: String + receiptsRoot_contains_nocase: String + receiptsRoot_not_contains: String + receiptsRoot_not_contains_nocase: String + receiptsRoot_starts_with: String + receiptsRoot_starts_with_nocase: String + receiptsRoot_not_starts_with: String + receiptsRoot_not_starts_with_nocase: String + receiptsRoot_ends_with: String + receiptsRoot_ends_with_nocase: String + receiptsRoot_not_ends_with: String + receiptsRoot_not_ends_with_nocase: String + transactionsRoot: String + transactionsRoot_not: String + transactionsRoot_gt: String + transactionsRoot_lt: String + transactionsRoot_gte: String + transactionsRoot_lte: String + transactionsRoot_in: [String!] + transactionsRoot_not_in: [String!] + transactionsRoot_contains: String + transactionsRoot_contains_nocase: String + transactionsRoot_not_contains: String + transactionsRoot_not_contains_nocase: String + transactionsRoot_starts_with: String + transactionsRoot_starts_with_nocase: String + transactionsRoot_not_starts_with: String + transactionsRoot_not_starts_with_nocase: String + transactionsRoot_ends_with: String + transactionsRoot_ends_with_nocase: String + transactionsRoot_not_ends_with: String + transactionsRoot_not_ends_with_nocase: String + stateRoot: String + stateRoot_not: String + stateRoot_gt: String + stateRoot_lt: String + stateRoot_gte: String + stateRoot_lte: String + stateRoot_in: [String!] + stateRoot_not_in: [String!] + stateRoot_contains: String + stateRoot_contains_nocase: String + stateRoot_not_contains: String + stateRoot_not_contains_nocase: String + stateRoot_starts_with: String + stateRoot_starts_with_nocase: String + stateRoot_not_starts_with: String + stateRoot_not_starts_with_nocase: String + stateRoot_ends_with: String + stateRoot_ends_with_nocase: String + stateRoot_not_ends_with: String + stateRoot_not_ends_with_nocase: String + size: BigInt + size_not: BigInt + size_gt: BigInt + size_lt: BigInt + size_gte: BigInt + size_lte: BigInt + size_in: [BigInt!] + size_not_in: [BigInt!] + unclesHash: String + unclesHash_not: String + unclesHash_gt: String + unclesHash_lt: String + unclesHash_gte: String + unclesHash_lte: String + unclesHash_in: [String!] + unclesHash_not_in: [String!] + unclesHash_contains: String + unclesHash_contains_nocase: String + unclesHash_not_contains: String + unclesHash_not_contains_nocase: String + unclesHash_starts_with: String + unclesHash_starts_with_nocase: String + unclesHash_not_starts_with: String + unclesHash_not_starts_with_nocase: String + unclesHash_ends_with: String + unclesHash_ends_with_nocase: String + unclesHash_not_ends_with: String + unclesHash_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Block_filter] + or: [Block_filter] +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +enum Block_orderBy { + id + number + timestamp + parentHash + author + difficulty + totalDifficulty + gasUsed + gasLimit + receiptsRoot + transactionsRoot + stateRoot + size + unclesHash +} + +scalar Bytes + +"8 bytes signed integer\n" +scalar Int8 + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Query { + block( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Block + blocks( + skip: Int = 0 + first: Int = 100 + orderBy: Block_orderBy + orderDirection: OrderDirection + where: Block_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Block!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + block( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Block + blocks( + skip: Int = 0 + first: Int = 100 + orderBy: Block_orderBy + orderDirection: OrderDirection + where: Block_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Block!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql b/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql new file mode 100644 index 0000000000..c66797f3c4 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql @@ -0,0 +1,5133 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +""" Bundle - should only ever be one created""" +type Bundle { + """ hardcoded to '1'""" + id: ID! + + """ Price of native """ + nativePrice: BigDecimal! +} + +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!] + nativePrice: BigDecimal + nativePrice_not: BigDecimal + nativePrice_gt: BigDecimal + nativePrice_lt: BigDecimal + nativePrice_gte: BigDecimal + nativePrice_lte: BigDecimal + nativePrice_in: [BigDecimal!] + nativePrice_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Bundle_filter] + or: [Bundle_filter] +} + +enum Bundle_orderBy { + id + nativePrice +} + +type Burn { + """ transaction.id:transaction.burns.length """ + id: ID! + transaction: Transaction! + timestamp: BigInt! + pair: Pair! + liquidity: BigDecimal! + sender: String + amount0: BigDecimal + amount1: BigDecimal + to: String + logIndex: BigInt + amountUSD: BigDecimal + complete: Boolean! + feeTo: String + feeLiquidity: BigDecimal +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + sender: String + sender_not: String + sender_gt: String + sender_lt: String + sender_gte: String + sender_lte: String + sender_in: [String!] + sender_not_in: [String!] + sender_contains: String + sender_contains_nocase: String + sender_not_contains: String + sender_not_contains_nocase: String + sender_starts_with: String + sender_starts_with_nocase: String + sender_not_starts_with: String + sender_not_starts_with_nocase: String + sender_ends_with: String + sender_ends_with_nocase: String + sender_not_ends_with: String + sender_not_ends_with_nocase: String + 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!] + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + logIndex: BigInt + logIndex_not: BigInt + logIndex_gt: BigInt + logIndex_lt: BigInt + logIndex_gte: BigInt + logIndex_lte: BigInt + logIndex_in: [BigInt!] + logIndex_not_in: [BigInt!] + amountUSD: BigDecimal + amountUSD_not: BigDecimal + amountUSD_gt: BigDecimal + amountUSD_lt: BigDecimal + amountUSD_gte: BigDecimal + amountUSD_lte: BigDecimal + amountUSD_in: [BigDecimal!] + amountUSD_not_in: [BigDecimal!] + complete: Boolean + complete_not: Boolean + complete_in: [Boolean!] + complete_not_in: [Boolean!] + feeTo: String + feeTo_not: String + feeTo_gt: String + feeTo_lt: String + feeTo_gte: String + feeTo_lte: String + feeTo_in: [String!] + feeTo_not_in: [String!] + feeTo_contains: String + feeTo_contains_nocase: String + feeTo_not_contains: String + feeTo_not_contains_nocase: String + feeTo_starts_with: String + feeTo_starts_with_nocase: String + feeTo_not_starts_with: String + feeTo_not_starts_with_nocase: String + feeTo_ends_with: String + feeTo_ends_with_nocase: String + feeTo_not_ends_with: String + feeTo_not_ends_with_nocase: String + feeLiquidity: BigDecimal + feeLiquidity_not: BigDecimal + feeLiquidity_gt: BigDecimal + feeLiquidity_lt: BigDecimal + feeLiquidity_gte: BigDecimal + feeLiquidity_lte: BigDecimal + feeLiquidity_in: [BigDecimal!] + feeLiquidity_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Burn_filter] + or: [Burn_filter] +} + +enum Burn_orderBy { + id + transaction + transaction__id + transaction__gasLimit + transaction__gasPrice + transaction__createdAtBlock + transaction__createdAtTimestamp + timestamp + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + liquidity + sender + amount0 + amount1 + to + logIndex + amountUSD + complete + feeTo + feeLiquidity +} + +scalar Bytes + +type Factory { + """ Contract address """ + id: ID! + + """ Factory type """ + type: PairType! + + """ Volume USD """ + volumeUSD: BigDecimal! + + """ Volume Native """ + volumeNative: BigDecimal! + + """ Liquidity USD """ + liquidityUSD: BigDecimal! + + """ Liquidity NATIVE """ + liquidityNative: BigDecimal! + + """ Fees USD """ + feesUSD: BigDecimal! + + """ Fees NATIVE """ + feesNative: BigDecimal! + + """ Pair count """ + pairCount: BigInt! + + """ Transaction count """ + transactionCount: BigInt! + + """ Token count """ + tokenCount: BigInt! + + """ User count """ + userCount: BigInt! +} + +type FactoryDaySnapshot { + """ {factoryId}-day-{timestamp} """ + id: ID! + factory: Factory! + date: Int! + volumeUSD: BigDecimal! + volumeNative: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + transactionCount: BigInt! +} + +input FactoryDaySnapshot_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!] + factory: String + factory_not: String + factory_gt: String + factory_lt: String + factory_gte: String + factory_lte: String + factory_in: [String!] + factory_not_in: [String!] + factory_contains: String + factory_contains_nocase: String + factory_not_contains: String + factory_not_contains_nocase: String + factory_starts_with: String + factory_starts_with_nocase: String + factory_not_starts_with: String + factory_not_starts_with_nocase: String + factory_ends_with: String + factory_ends_with_nocase: String + factory_not_ends_with: String + factory_not_ends_with_nocase: String + factory_: Factory_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + volumeUSD: BigDecimal + volumeUSD_not: BigDecimal + volumeUSD_gt: BigDecimal + volumeUSD_lt: BigDecimal + volumeUSD_gte: BigDecimal + volumeUSD_lte: BigDecimal + volumeUSD_in: [BigDecimal!] + volumeUSD_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [FactoryDaySnapshot_filter] + or: [FactoryDaySnapshot_filter] +} + +enum FactoryDaySnapshot_orderBy { + id + factory + factory__id + factory__type + factory__volumeUSD + factory__volumeNative + factory__liquidityUSD + factory__liquidityNative + factory__feesUSD + factory__feesNative + factory__pairCount + factory__transactionCount + factory__tokenCount + factory__userCount + date + volumeUSD + volumeNative + liquidityNative + liquidityUSD + feesNative + feesUSD + transactionCount +} + +type FactoryHourSnapshot { + """ {factoryId}-hour-{timestamp} """ + id: ID! + factory: Factory! + date: Int! + volumeUSD: BigDecimal! + volumeNative: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + transactionCount: BigInt! +} + +input FactoryHourSnapshot_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!] + factory: String + factory_not: String + factory_gt: String + factory_lt: String + factory_gte: String + factory_lte: String + factory_in: [String!] + factory_not_in: [String!] + factory_contains: String + factory_contains_nocase: String + factory_not_contains: String + factory_not_contains_nocase: String + factory_starts_with: String + factory_starts_with_nocase: String + factory_not_starts_with: String + factory_not_starts_with_nocase: String + factory_ends_with: String + factory_ends_with_nocase: String + factory_not_ends_with: String + factory_not_ends_with_nocase: String + factory_: Factory_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + volumeUSD: BigDecimal + volumeUSD_not: BigDecimal + volumeUSD_gt: BigDecimal + volumeUSD_lt: BigDecimal + volumeUSD_gte: BigDecimal + volumeUSD_lte: BigDecimal + volumeUSD_in: [BigDecimal!] + volumeUSD_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [FactoryHourSnapshot_filter] + or: [FactoryHourSnapshot_filter] +} + +enum FactoryHourSnapshot_orderBy { + id + factory + factory__id + factory__type + factory__volumeUSD + factory__volumeNative + factory__liquidityUSD + factory__liquidityNative + factory__feesUSD + factory__feesNative + factory__pairCount + factory__transactionCount + factory__tokenCount + factory__userCount + date + volumeUSD + volumeNative + liquidityNative + liquidityUSD + feesNative + feesUSD + transactionCount +} + +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!] + type: PairType + type_not: PairType + type_in: [PairType!] + type_not_in: [PairType!] + volumeUSD: BigDecimal + volumeUSD_not: BigDecimal + volumeUSD_gt: BigDecimal + volumeUSD_lt: BigDecimal + volumeUSD_gte: BigDecimal + volumeUSD_lte: BigDecimal + volumeUSD_in: [BigDecimal!] + volumeUSD_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_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!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_not_in: [BigDecimal!] + pairCount: BigInt + pairCount_not: BigInt + pairCount_gt: BigInt + pairCount_lt: BigInt + pairCount_gte: BigInt + pairCount_lte: BigInt + pairCount_in: [BigInt!] + pairCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + tokenCount: BigInt + tokenCount_not: BigInt + tokenCount_gt: BigInt + tokenCount_lt: BigInt + tokenCount_gte: BigInt + tokenCount_lte: BigInt + tokenCount_in: [BigInt!] + tokenCount_not_in: [BigInt!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Factory_filter] + or: [Factory_filter] +} + +enum Factory_orderBy { + id + type + volumeUSD + volumeNative + liquidityUSD + liquidityNative + feesUSD + feesNative + pairCount + transactionCount + tokenCount + userCount +} + +"8 bytes signed integer\n" +scalar Int8 + +type LiquidityPosition { + """pair.id:user.id""" + id: ID! + pair: Pair! + user: User! + balance: BigInt! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +type LiquidityPositionSnapshot { + """ {lp.id}-{timestamp} """ + id: ID! + liquidityPosition: LiquidityPosition! + + """ saved for fast historical lookups """ + timestamp: Int! + + """ saved for fast historical lookups """ + block: Int! + + """ reference to user """ + user: User! + + """ reference to pair """ + pair: Pair! + + """ snapshot of token0 price """ + token0PriceUSD: BigDecimal! + + """ snapshot of token1 price """ + token1PriceUSD: BigDecimal! + + """ snapshot of pair token0 reserves """ + reserve0: BigInt! + + """ snapshot of pair token1 reserves """ + reserve1: BigInt! + + """ snapshot of pair reserves in USD """ + reserveUSD: BigDecimal! + + """ snapshot of pool token supply """ + liquidityTokenTotalSupply: BigInt! + + """ snapshot of users pool token balance """ + liquidityTokenBalance: BigInt! +} + +input LiquidityPositionSnapshot_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!] + liquidityPosition: String + liquidityPosition_not: String + liquidityPosition_gt: String + liquidityPosition_lt: String + liquidityPosition_gte: String + liquidityPosition_lte: String + liquidityPosition_in: [String!] + liquidityPosition_not_in: [String!] + liquidityPosition_contains: String + liquidityPosition_contains_nocase: String + liquidityPosition_not_contains: String + liquidityPosition_not_contains_nocase: String + liquidityPosition_starts_with: String + liquidityPosition_starts_with_nocase: String + liquidityPosition_not_starts_with: String + liquidityPosition_not_starts_with_nocase: String + liquidityPosition_ends_with: String + liquidityPosition_ends_with_nocase: String + liquidityPosition_not_ends_with: String + liquidityPosition_not_ends_with_nocase: String + liquidityPosition_: LiquidityPosition_filter + timestamp: Int + timestamp_not: Int + timestamp_gt: Int + timestamp_lt: Int + timestamp_gte: Int + timestamp_lte: Int + timestamp_in: [Int!] + timestamp_not_in: [Int!] + block: Int + block_not: Int + block_gt: Int + block_lt: Int + block_gte: Int + block_lte: Int + block_in: [Int!] + block_not_in: [Int!] + user: String + user_not: String + user_gt: String + user_lt: String + user_gte: String + user_lte: String + user_in: [String!] + user_not_in: [String!] + user_contains: String + user_contains_nocase: String + user_not_contains: String + user_not_contains_nocase: String + user_starts_with: String + user_starts_with_nocase: String + user_not_starts_with: String + user_not_starts_with_nocase: String + user_ends_with: String + user_ends_with_nocase: String + user_not_ends_with: String + user_not_ends_with_nocase: String + user_: User_filter + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + token0PriceUSD: BigDecimal + token0PriceUSD_not: BigDecimal + token0PriceUSD_gt: BigDecimal + token0PriceUSD_lt: BigDecimal + token0PriceUSD_gte: BigDecimal + token0PriceUSD_lte: BigDecimal + token0PriceUSD_in: [BigDecimal!] + token0PriceUSD_not_in: [BigDecimal!] + token1PriceUSD: BigDecimal + token1PriceUSD_not: BigDecimal + token1PriceUSD_gt: BigDecimal + token1PriceUSD_lt: BigDecimal + token1PriceUSD_gte: BigDecimal + token1PriceUSD_lte: BigDecimal + token1PriceUSD_in: [BigDecimal!] + token1PriceUSD_not_in: [BigDecimal!] + reserve0: BigInt + reserve0_not: BigInt + reserve0_gt: BigInt + reserve0_lt: BigInt + reserve0_gte: BigInt + reserve0_lte: BigInt + reserve0_in: [BigInt!] + reserve0_not_in: [BigInt!] + reserve1: BigInt + reserve1_not: BigInt + reserve1_gt: BigInt + reserve1_lt: BigInt + reserve1_gte: BigInt + reserve1_lte: BigInt + reserve1_in: [BigInt!] + reserve1_not_in: [BigInt!] + reserveUSD: BigDecimal + reserveUSD_not: BigDecimal + reserveUSD_gt: BigDecimal + reserveUSD_lt: BigDecimal + reserveUSD_gte: BigDecimal + reserveUSD_lte: BigDecimal + reserveUSD_in: [BigDecimal!] + reserveUSD_not_in: [BigDecimal!] + liquidityTokenTotalSupply: BigInt + liquidityTokenTotalSupply_not: BigInt + liquidityTokenTotalSupply_gt: BigInt + liquidityTokenTotalSupply_lt: BigInt + liquidityTokenTotalSupply_gte: BigInt + liquidityTokenTotalSupply_lte: BigInt + liquidityTokenTotalSupply_in: [BigInt!] + liquidityTokenTotalSupply_not_in: [BigInt!] + liquidityTokenBalance: BigInt + liquidityTokenBalance_not: BigInt + liquidityTokenBalance_gt: BigInt + liquidityTokenBalance_lt: BigInt + liquidityTokenBalance_gte: BigInt + liquidityTokenBalance_lte: BigInt + liquidityTokenBalance_in: [BigInt!] + liquidityTokenBalance_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [LiquidityPositionSnapshot_filter] + or: [LiquidityPositionSnapshot_filter] +} + +enum LiquidityPositionSnapshot_orderBy { + id + liquidityPosition + liquidityPosition__id + liquidityPosition__balance + liquidityPosition__createdAtBlock + liquidityPosition__createdAtTimestamp + timestamp + block + user + user__id + user__lpSnapshotsCount + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + token0PriceUSD + token1PriceUSD + reserve0 + reserve1 + reserveUSD + liquidityTokenTotalSupply + liquidityTokenBalance +} + +input LiquidityPosition_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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + user: String + user_not: String + user_gt: String + user_lt: String + user_gte: String + user_lte: String + user_in: [String!] + user_not_in: [String!] + user_contains: String + user_contains_nocase: String + user_not_contains: String + user_not_contains_nocase: String + user_starts_with: String + user_starts_with_nocase: String + user_not_starts_with: String + user_not_starts_with_nocase: String + user_ends_with: String + user_ends_with_nocase: String + user_not_ends_with: String + user_not_ends_with_nocase: String + user_: User_filter + balance: BigInt + balance_not: BigInt + balance_gt: BigInt + balance_lt: BigInt + balance_gte: BigInt + balance_lte: BigInt + balance_in: [BigInt!] + balance_not_in: [BigInt!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [LiquidityPosition_filter] + or: [LiquidityPosition_filter] +} + +enum LiquidityPosition_orderBy { + id + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + user + user__id + user__lpSnapshotsCount + balance + createdAtBlock + createdAtTimestamp +} + +type Mint { + """ transaction.id:transaction.mints.length """ + id: ID! + transaction: Transaction! + timestamp: BigInt! + pair: Pair! + to: String! + liquidity: BigDecimal! + sender: Bytes + amount0: BigDecimal + amount1: BigDecimal + logIndex: BigInt + amountUSD: BigDecimal + feeTo: Bytes + feeLiquidity: BigDecimal +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + 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 + 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!] + logIndex: BigInt + logIndex_not: BigInt + logIndex_gt: BigInt + logIndex_lt: BigInt + logIndex_gte: BigInt + logIndex_lte: BigInt + logIndex_in: [BigInt!] + logIndex_not_in: [BigInt!] + amountUSD: BigDecimal + amountUSD_not: BigDecimal + amountUSD_gt: BigDecimal + amountUSD_lt: BigDecimal + amountUSD_gte: BigDecimal + amountUSD_lte: BigDecimal + amountUSD_in: [BigDecimal!] + amountUSD_not_in: [BigDecimal!] + feeTo: Bytes + feeTo_not: Bytes + feeTo_gt: Bytes + feeTo_lt: Bytes + feeTo_gte: Bytes + feeTo_lte: Bytes + feeTo_in: [Bytes!] + feeTo_not_in: [Bytes!] + feeTo_contains: Bytes + feeTo_not_contains: Bytes + feeLiquidity: BigDecimal + feeLiquidity_not: BigDecimal + feeLiquidity_gt: BigDecimal + feeLiquidity_lt: BigDecimal + feeLiquidity_gte: BigDecimal + feeLiquidity_lte: BigDecimal + feeLiquidity_in: [BigDecimal!] + feeLiquidity_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Mint_filter] + or: [Mint_filter] +} + +enum Mint_orderBy { + id + transaction + transaction__id + transaction__gasLimit + transaction__gasPrice + transaction__createdAtBlock + transaction__createdAtTimestamp + timestamp + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + to + liquidity + sender + amount0 + amount1 + logIndex + amountUSD + feeTo + feeLiquidity +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Pair { + """ Pair address (contract address) """ + id: ID! + + """ Pair type """ + type: PairType! + + """ Swap fee """ + swapFee: BigInt! + + """ TWAP - time weighted average price """ + twapEnabled: Boolean! + + """ name of the pair, this combines symbol of both tokens, e.g. WETH/SUSHI + """ + name: String! + + """ First Token """ + token0: Token! + + """ Second Token """ + token1: Token! + + """ Which source this pair comes from, in this case it will always be 'LEGACY' + """ + source: String! + + """ Which block this pair was created on """ + createdAtBlock: BigInt! + + """ When this pair was created """ + createdAtTimestamp: BigInt! + + """ Liquidity of first token """ + reserve0: BigInt! + + """ Liquidity of second token """ + reserve1: BigInt! + + """ which block _k was saved """ + _cacheUpdatedAtBlock: BigInt! + + """ Liquidity of first token, this is only updated for the first transaction in a block + """ + _cache_reserve0: BigInt! + + """ Liquidity of second token, this is only updated for the first transaction in a block + """ + _cache_reserve1: BigInt! + + """ Price of the first token in this pair, this is only updated for the first transaction in a block + """ + _cache_token0Price: BigDecimal! + + """ Price of the second token in this pair, this is only updated for the first transaction in a block + """ + _cache_token1Price: BigDecimal! + + """ Liquidity, Total supply of all LP in this pool """ + liquidity: BigInt! + + """ USD liquidity""" + liquidityUSD: BigDecimal! + + """ Native Liquidity """ + liquidityNative: BigDecimal! + + """ Tracked Liquidity native """ + trackedLiquidityNative: BigDecimal! + + """ Price of the first token in this pair, not to be confused with TokenPrice entity + """ + token0Price: BigDecimal! + + """ Price of the second token in this pair, not to be confused with TokenPrice entity + """ + token1Price: BigDecimal! + volumeNative: BigDecimal! + volumeUSD: BigDecimal! + volumeToken0: BigDecimal! + volumeToken1: BigDecimal! + + """ Fee in Native """ + feesNative: BigDecimal! + + """ Fee in USD """ + feesUSD: BigDecimal! + + """ APR """ + apr: BigDecimal! + + """ When APR was last updated """ + aprUpdatedAtTimestamp: BigInt! + + """ Transaction count """ + txCount: BigInt! + + """ Liquidity Positions """ + liquidityPositions(skip: Int = 0, first: Int = 100, orderBy: LiquidityPosition_orderBy, orderDirection: OrderDirection, where: LiquidityPosition_filter): [LiquidityPosition!]! + + """ Liquidity position snapshots """ + liquidityPositionSnapshots(skip: Int = 0, first: Int = 100, orderBy: LiquidityPositionSnapshot_orderBy, orderDirection: OrderDirection, where: LiquidityPositionSnapshot_filter): [LiquidityPositionSnapshot!]! + + """ Pair Hour Snapshot """ + hourSnapshots(skip: Int = 0, first: Int = 100, orderBy: PairHourSnapshot_orderBy, orderDirection: OrderDirection, where: PairHourSnapshot_filter): [PairHourSnapshot!]! + + """ Pair Day Snapshot """ + daySnapshots(skip: Int = 0, first: Int = 100, orderBy: PairDaySnapshot_orderBy, orderDirection: OrderDirection, where: PairDaySnapshot_filter): [PairDaySnapshot!]! +} + +type PairDaySnapshot { + """ {pairId}-day-{timestamp} """ + id: ID! + pair: Pair! + date: Int! + + """ Used to calculate apr """ + cumulativeVolumeUSD: BigDecimal! + volumeUSD: BigDecimal! + volumeNative: BigDecimal! + volumeToken0: BigDecimal! + volumeToken1: BigDecimal! + liquidity: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + apr: BigDecimal! + transactionCount: BigInt! +} + +input PairDaySnapshot_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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + cumulativeVolumeUSD: BigDecimal + cumulativeVolumeUSD_not: BigDecimal + cumulativeVolumeUSD_gt: BigDecimal + cumulativeVolumeUSD_lt: BigDecimal + cumulativeVolumeUSD_gte: BigDecimal + cumulativeVolumeUSD_lte: BigDecimal + cumulativeVolumeUSD_in: [BigDecimal!] + cumulativeVolumeUSD_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!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PairDaySnapshot_filter] + or: [PairDaySnapshot_filter] +} + +enum PairDaySnapshot_orderBy { + id + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + date + cumulativeVolumeUSD + volumeUSD + volumeNative + volumeToken0 + volumeToken1 + liquidity + liquidityNative + liquidityUSD + feesNative + feesUSD + apr + transactionCount +} + +type PairHourSnapshot { + """ {pairId}-hour-{timestamp} """ + id: ID! + pair: Pair! + date: Int! + + """ Used to calculate apr """ + cumulativeVolumeUSD: BigDecimal! + volumeUSD: BigDecimal! + volumeNative: BigDecimal! + volumeToken0: BigDecimal! + volumeToken1: BigDecimal! + liquidity: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + apr: BigDecimal! + transactionCount: BigInt! +} + +input PairHourSnapshot_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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + cumulativeVolumeUSD: BigDecimal + cumulativeVolumeUSD_not: BigDecimal + cumulativeVolumeUSD_gt: BigDecimal + cumulativeVolumeUSD_lt: BigDecimal + cumulativeVolumeUSD_gte: BigDecimal + cumulativeVolumeUSD_lte: BigDecimal + cumulativeVolumeUSD_in: [BigDecimal!] + cumulativeVolumeUSD_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!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PairHourSnapshot_filter] + or: [PairHourSnapshot_filter] +} + +enum PairHourSnapshot_orderBy { + id + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + date + cumulativeVolumeUSD + volumeUSD + volumeNative + volumeToken0 + volumeToken1 + liquidity + liquidityNative + liquidityUSD + feesNative + feesUSD + apr + transactionCount +} + +enum PairType { + CONSTANT_PRODUCT_POOL +} + +input Pair_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!] + type: PairType + type_not: PairType + type_in: [PairType!] + type_not_in: [PairType!] + swapFee: BigInt + swapFee_not: BigInt + swapFee_gt: BigInt + swapFee_lt: BigInt + swapFee_gte: BigInt + swapFee_lte: BigInt + swapFee_in: [BigInt!] + swapFee_not_in: [BigInt!] + twapEnabled: Boolean + twapEnabled_not: Boolean + twapEnabled_in: [Boolean!] + twapEnabled_not_in: [Boolean!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + source: String + source_not: String + source_gt: String + source_lt: String + source_gte: String + source_lte: String + source_in: [String!] + source_not_in: [String!] + source_contains: String + source_contains_nocase: String + source_not_contains: String + source_not_contains_nocase: String + source_starts_with: String + source_starts_with_nocase: String + source_not_starts_with: String + source_not_starts_with_nocase: String + source_ends_with: String + source_ends_with_nocase: String + source_not_ends_with: String + source_not_ends_with_nocase: String + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + reserve0: BigInt + reserve0_not: BigInt + reserve0_gt: BigInt + reserve0_lt: BigInt + reserve0_gte: BigInt + reserve0_lte: BigInt + reserve0_in: [BigInt!] + reserve0_not_in: [BigInt!] + reserve1: BigInt + reserve1_not: BigInt + reserve1_gt: BigInt + reserve1_lt: BigInt + reserve1_gte: BigInt + reserve1_lte: BigInt + reserve1_in: [BigInt!] + reserve1_not_in: [BigInt!] + _cacheUpdatedAtBlock: BigInt + _cacheUpdatedAtBlock_not: BigInt + _cacheUpdatedAtBlock_gt: BigInt + _cacheUpdatedAtBlock_lt: BigInt + _cacheUpdatedAtBlock_gte: BigInt + _cacheUpdatedAtBlock_lte: BigInt + _cacheUpdatedAtBlock_in: [BigInt!] + _cacheUpdatedAtBlock_not_in: [BigInt!] + _cache_reserve0: BigInt + _cache_reserve0_not: BigInt + _cache_reserve0_gt: BigInt + _cache_reserve0_lt: BigInt + _cache_reserve0_gte: BigInt + _cache_reserve0_lte: BigInt + _cache_reserve0_in: [BigInt!] + _cache_reserve0_not_in: [BigInt!] + _cache_reserve1: BigInt + _cache_reserve1_not: BigInt + _cache_reserve1_gt: BigInt + _cache_reserve1_lt: BigInt + _cache_reserve1_gte: BigInt + _cache_reserve1_lte: BigInt + _cache_reserve1_in: [BigInt!] + _cache_reserve1_not_in: [BigInt!] + _cache_token0Price: BigDecimal + _cache_token0Price_not: BigDecimal + _cache_token0Price_gt: BigDecimal + _cache_token0Price_lt: BigDecimal + _cache_token0Price_gte: BigDecimal + _cache_token0Price_lte: BigDecimal + _cache_token0Price_in: [BigDecimal!] + _cache_token0Price_not_in: [BigDecimal!] + _cache_token1Price: BigDecimal + _cache_token1Price_not: BigDecimal + _cache_token1Price_gt: BigDecimal + _cache_token1Price_lt: BigDecimal + _cache_token1Price_gte: BigDecimal + _cache_token1Price_lte: BigDecimal + _cache_token1Price_in: [BigDecimal!] + _cache_token1Price_not_in: [BigDecimal!] + liquidity: BigInt + liquidity_not: BigInt + liquidity_gt: BigInt + liquidity_lt: BigInt + liquidity_gte: BigInt + liquidity_lte: BigInt + liquidity_in: [BigInt!] + liquidity_not_in: [BigInt!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + trackedLiquidityNative: BigDecimal + trackedLiquidityNative_not: BigDecimal + trackedLiquidityNative_gt: BigDecimal + trackedLiquidityNative_lt: BigDecimal + trackedLiquidityNative_gte: BigDecimal + trackedLiquidityNative_lte: BigDecimal + trackedLiquidityNative_in: [BigDecimal!] + trackedLiquidityNative_not_in: [BigDecimal!] + 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!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + 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!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + aprUpdatedAtTimestamp: BigInt + aprUpdatedAtTimestamp_not: BigInt + aprUpdatedAtTimestamp_gt: BigInt + aprUpdatedAtTimestamp_lt: BigInt + aprUpdatedAtTimestamp_gte: BigInt + aprUpdatedAtTimestamp_lte: BigInt + aprUpdatedAtTimestamp_in: [BigInt!] + aprUpdatedAtTimestamp_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!] + liquidityPositions_: LiquidityPosition_filter + liquidityPositionSnapshots_: LiquidityPositionSnapshot_filter + hourSnapshots_: PairHourSnapshot_filter + daySnapshots_: PairDaySnapshot_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pair_filter] + or: [Pair_filter] +} + +enum Pair_orderBy { + id + type + swapFee + twapEnabled + name + token0 + token0__id + token0__symbol + token0__symbolSuccess + token0__name + token0__nameSuccess + token0__decimals + token0__decimalsSuccess + token0__liquidity + token0__liquidityNative + token0__liquidityUSD + token0__volume + token0__volumeNative + token0__volumeUSD + token0__feesNative + token0__feesUSD + token0__txCount + token0__pairCount + token0__whitelistedPairCount + token1 + token1__id + token1__symbol + token1__symbolSuccess + token1__name + token1__nameSuccess + token1__decimals + token1__decimalsSuccess + token1__liquidity + token1__liquidityNative + token1__liquidityUSD + token1__volume + token1__volumeNative + token1__volumeUSD + token1__feesNative + token1__feesUSD + token1__txCount + token1__pairCount + token1__whitelistedPairCount + source + createdAtBlock + createdAtTimestamp + reserve0 + reserve1 + _cacheUpdatedAtBlock + _cache_reserve0 + _cache_reserve1 + _cache_token0Price + _cache_token1Price + liquidity + liquidityUSD + liquidityNative + trackedLiquidityNative + token0Price + token1Price + volumeNative + volumeUSD + volumeToken0 + volumeToken1 + feesNative + feesUSD + apr + aprUpdatedAtTimestamp + txCount + liquidityPositions + liquidityPositionSnapshots + hourSnapshots + daySnapshots +} + +type Query { + version( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _Version + versions( + skip: Int = 0 + first: Int = 100 + orderBy: _Version_orderBy + orderDirection: OrderDirection + where: _Version_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_Version!]! + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + tokenPrice( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenPrice + tokenPrices( + skip: Int = 0 + first: Int = 100 + orderBy: TokenPrice_orderBy + orderDirection: OrderDirection + where: TokenPrice_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenPrice!]! + tokenPair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _TokenPair + tokenPairs( + skip: Int = 0 + first: Int = 100 + orderBy: _TokenPair_orderBy + orderDirection: OrderDirection + where: _TokenPair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_TokenPair!]! + whitelistedTokenPair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _WhitelistedTokenPair + whitelistedTokenPairs( + skip: Int = 0 + first: Int = 100 + orderBy: _WhitelistedTokenPair_orderBy + orderDirection: OrderDirection + where: _WhitelistedTokenPair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_WhitelistedTokenPair!]! + pair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pair + pairs( + skip: Int = 0 + first: Int = 100 + orderBy: Pair_orderBy + orderDirection: OrderDirection + where: Pair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pair!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + liquidityPosition( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): LiquidityPosition + liquidityPositions( + skip: Int = 0 + first: Int = 100 + orderBy: LiquidityPosition_orderBy + orderDirection: OrderDirection + where: LiquidityPosition_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [LiquidityPosition!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + liquidityPositionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): LiquidityPositionSnapshot + liquidityPositionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: LiquidityPositionSnapshot_orderBy + orderDirection: OrderDirection + where: LiquidityPositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [LiquidityPositionSnapshot!]! + pairHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PairHourSnapshot + pairHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PairHourSnapshot_orderBy + orderDirection: OrderDirection + where: PairHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PairHourSnapshot!]! + pairDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PairDaySnapshot + pairDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PairDaySnapshot_orderBy + orderDirection: OrderDirection + where: PairDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PairDaySnapshot!]! + tokenHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourSnapshot + tokenHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourSnapshot_orderBy + orderDirection: OrderDirection + where: TokenHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourSnapshot!]! + tokenDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDaySnapshot + tokenDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDaySnapshot_orderBy + orderDirection: OrderDirection + where: TokenDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDaySnapshot!]! + factoryHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FactoryHourSnapshot + factoryHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: FactoryHourSnapshot_orderBy + orderDirection: OrderDirection + where: FactoryHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FactoryHourSnapshot!]! + factoryDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FactoryDaySnapshot + factoryDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: FactoryDaySnapshot_orderBy + orderDirection: OrderDirection + where: FactoryDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FactoryDaySnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + version( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _Version + versions( + skip: Int = 0 + first: Int = 100 + orderBy: _Version_orderBy + orderDirection: OrderDirection + where: _Version_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_Version!]! + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + tokenPrice( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenPrice + tokenPrices( + skip: Int = 0 + first: Int = 100 + orderBy: TokenPrice_orderBy + orderDirection: OrderDirection + where: TokenPrice_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenPrice!]! + tokenPair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _TokenPair + tokenPairs( + skip: Int = 0 + first: Int = 100 + orderBy: _TokenPair_orderBy + orderDirection: OrderDirection + where: _TokenPair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_TokenPair!]! + whitelistedTokenPair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): _WhitelistedTokenPair + whitelistedTokenPairs( + skip: Int = 0 + first: Int = 100 + orderBy: _WhitelistedTokenPair_orderBy + orderDirection: OrderDirection + where: _WhitelistedTokenPair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [_WhitelistedTokenPair!]! + pair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pair + pairs( + skip: Int = 0 + first: Int = 100 + orderBy: Pair_orderBy + orderDirection: OrderDirection + where: Pair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pair!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + liquidityPosition( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): LiquidityPosition + liquidityPositions( + skip: Int = 0 + first: Int = 100 + orderBy: LiquidityPosition_orderBy + orderDirection: OrderDirection + where: LiquidityPosition_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [LiquidityPosition!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + liquidityPositionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): LiquidityPositionSnapshot + liquidityPositionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: LiquidityPositionSnapshot_orderBy + orderDirection: OrderDirection + where: LiquidityPositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [LiquidityPositionSnapshot!]! + pairHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PairHourSnapshot + pairHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PairHourSnapshot_orderBy + orderDirection: OrderDirection + where: PairHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PairHourSnapshot!]! + pairDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PairDaySnapshot + pairDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PairDaySnapshot_orderBy + orderDirection: OrderDirection + where: PairDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PairDaySnapshot!]! + tokenHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourSnapshot + tokenHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourSnapshot_orderBy + orderDirection: OrderDirection + where: TokenHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourSnapshot!]! + tokenDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDaySnapshot + tokenDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDaySnapshot_orderBy + orderDirection: OrderDirection + where: TokenDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDaySnapshot!]! + factoryHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FactoryHourSnapshot + factoryHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: FactoryHourSnapshot_orderBy + orderDirection: OrderDirection + where: FactoryHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FactoryHourSnapshot!]! + factoryDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FactoryDaySnapshot + factoryDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: FactoryDaySnapshot_orderBy + orderDirection: OrderDirection + where: FactoryDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FactoryDaySnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Swap { + id: ID! + transaction: Transaction! + timestamp: BigInt! + pair: Pair! + sender: String! + tokenIn: Token! + tokenOut: Token! + amountIn: BigDecimal! + amountOut: BigDecimal! + to: String! + logIndex: BigInt + amountUSD: BigDecimal! +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + sender: String + sender_not: String + sender_gt: String + sender_lt: String + sender_gte: String + sender_lte: String + sender_in: [String!] + sender_not_in: [String!] + sender_contains: String + sender_contains_nocase: String + sender_not_contains: String + sender_not_contains_nocase: String + sender_starts_with: String + sender_starts_with_nocase: String + sender_not_starts_with: String + sender_not_starts_with_nocase: String + sender_ends_with: String + sender_ends_with_nocase: String + sender_not_ends_with: String + sender_not_ends_with_nocase: String + tokenIn: String + tokenIn_not: String + tokenIn_gt: String + tokenIn_lt: String + tokenIn_gte: String + tokenIn_lte: String + tokenIn_in: [String!] + tokenIn_not_in: [String!] + tokenIn_contains: String + tokenIn_contains_nocase: String + tokenIn_not_contains: String + tokenIn_not_contains_nocase: String + tokenIn_starts_with: String + tokenIn_starts_with_nocase: String + tokenIn_not_starts_with: String + tokenIn_not_starts_with_nocase: String + tokenIn_ends_with: String + tokenIn_ends_with_nocase: String + tokenIn_not_ends_with: String + tokenIn_not_ends_with_nocase: String + tokenIn_: Token_filter + tokenOut: String + tokenOut_not: String + tokenOut_gt: String + tokenOut_lt: String + tokenOut_gte: String + tokenOut_lte: String + tokenOut_in: [String!] + tokenOut_not_in: [String!] + tokenOut_contains: String + tokenOut_contains_nocase: String + tokenOut_not_contains: String + tokenOut_not_contains_nocase: String + tokenOut_starts_with: String + tokenOut_starts_with_nocase: String + tokenOut_not_starts_with: String + tokenOut_not_starts_with_nocase: String + tokenOut_ends_with: String + tokenOut_ends_with_nocase: String + tokenOut_not_ends_with: String + tokenOut_not_ends_with_nocase: String + tokenOut_: Token_filter + amountIn: BigDecimal + amountIn_not: BigDecimal + amountIn_gt: BigDecimal + amountIn_lt: BigDecimal + amountIn_gte: BigDecimal + amountIn_lte: BigDecimal + amountIn_in: [BigDecimal!] + amountIn_not_in: [BigDecimal!] + amountOut: BigDecimal + amountOut_not: BigDecimal + amountOut_gt: BigDecimal + amountOut_lt: BigDecimal + amountOut_gte: BigDecimal + amountOut_lte: BigDecimal + amountOut_in: [BigDecimal!] + amountOut_not_in: [BigDecimal!] + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + logIndex: BigInt + logIndex_not: BigInt + logIndex_gt: BigInt + logIndex_lt: BigInt + logIndex_gte: BigInt + logIndex_lte: BigInt + logIndex_in: [BigInt!] + logIndex_not_in: [BigInt!] + amountUSD: BigDecimal + amountUSD_not: BigDecimal + amountUSD_gt: BigDecimal + amountUSD_lt: BigDecimal + amountUSD_gte: BigDecimal + amountUSD_lte: BigDecimal + amountUSD_in: [BigDecimal!] + amountUSD_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Swap_filter] + or: [Swap_filter] +} + +enum Swap_orderBy { + id + transaction + transaction__id + transaction__gasLimit + transaction__gasPrice + transaction__createdAtBlock + transaction__createdAtTimestamp + timestamp + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + sender + tokenIn + tokenIn__id + tokenIn__symbol + tokenIn__symbolSuccess + tokenIn__name + tokenIn__nameSuccess + tokenIn__decimals + tokenIn__decimalsSuccess + tokenIn__liquidity + tokenIn__liquidityNative + tokenIn__liquidityUSD + tokenIn__volume + tokenIn__volumeNative + tokenIn__volumeUSD + tokenIn__feesNative + tokenIn__feesUSD + tokenIn__txCount + tokenIn__pairCount + tokenIn__whitelistedPairCount + tokenOut + tokenOut__id + tokenOut__symbol + tokenOut__symbolSuccess + tokenOut__name + tokenOut__nameSuccess + tokenOut__decimals + tokenOut__decimalsSuccess + tokenOut__liquidity + tokenOut__liquidityNative + tokenOut__liquidityUSD + tokenOut__volume + tokenOut__volumeNative + tokenOut__volumeUSD + tokenOut__feesNative + tokenOut__feesUSD + tokenOut__txCount + tokenOut__pairCount + tokenOut__whitelistedPairCount + amountIn + amountOut + to + logIndex + amountUSD +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type Token { + """ Token address """ + id: ID! + + """ Token Price """ + price: TokenPrice! + + """ Symbol of the token """ + symbol: String! + + """ if symbol was successfully retrieved """ + symbolSuccess: Boolean! + + """ Name of the token """ + name: String! + + """ if name was successfully retrieved """ + nameSuccess: Boolean! + + """ Decimals of the token """ + decimals: BigInt! + + """ if decimals were successfully retrieved """ + decimalsSuccess: Boolean! + + """ Liquidity """ + liquidity: BigInt! + + """ Liquidity in native """ + liquidityNative: BigDecimal! + + """ Liquidity in USD """ + liquidityUSD: BigDecimal! + + """ Volume """ + volume: BigDecimal! + + """ Volume in native """ + volumeNative: BigDecimal! + + """ Volume in USD """ + volumeUSD: BigDecimal! + + """ Fee in USD """ + feesNative: BigDecimal! + + """ Volume in USD """ + feesUSD: BigDecimal! + + """ Count of all the transactions """ + txCount: BigInt! + + """ Count of all the pairs """ + pairCount: BigInt! + + """ Count of all the whitelisted pairs """ + whitelistedPairCount: BigInt! + + """ All pairs where this token is involved in """ + pairs(skip: Int = 0, first: Int = 100, orderBy: _TokenPair_orderBy, orderDirection: OrderDirection, where: _TokenPair_filter): [_TokenPair!]! + + """ All whitelisted pairs where this token is involved in """ + whitelistedPairs(skip: Int = 0, first: Int = 100, orderBy: _WhitelistedTokenPair_orderBy, orderDirection: OrderDirection, where: _WhitelistedTokenPair_filter): [_WhitelistedTokenPair!]! +} + +type TokenDaySnapshot { + """ {tokenId}-day-{timestamp} """ + id: ID! + date: Int! + token: Token! + liquidity: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + volume: BigDecimal! + volumeNative: BigDecimal! + volumeUSD: BigDecimal! + priceNative: BigDecimal! + priceUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + transactionCount: BigInt! +} + +input TokenDaySnapshot_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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + volume: BigDecimal + volume_not: BigDecimal + volume_gt: BigDecimal + volume_lt: BigDecimal + volume_gte: BigDecimal + volume_lte: BigDecimal + volume_in: [BigDecimal!] + volume_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + priceNative: BigDecimal + priceNative_not: BigDecimal + priceNative_gt: BigDecimal + priceNative_lt: BigDecimal + priceNative_gte: BigDecimal + priceNative_lte: BigDecimal + priceNative_in: [BigDecimal!] + priceNative_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!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenDaySnapshot_filter] + or: [TokenDaySnapshot_filter] +} + +enum TokenDaySnapshot_orderBy { + id + date + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__liquidity + token__liquidityNative + token__liquidityUSD + token__volume + token__volumeNative + token__volumeUSD + token__feesNative + token__feesUSD + token__txCount + token__pairCount + token__whitelistedPairCount + liquidity + liquidityNative + liquidityUSD + volume + volumeNative + volumeUSD + priceNative + priceUSD + feesNative + feesUSD + transactionCount +} + +type TokenHourSnapshot { + """ {tokenId}-hour-{timestamp} """ + id: ID! + date: Int! + token: Token! + liquidity: BigDecimal! + liquidityNative: BigDecimal! + liquidityUSD: BigDecimal! + volume: BigDecimal! + volumeNative: BigDecimal! + volumeUSD: BigDecimal! + priceNative: BigDecimal! + priceUSD: BigDecimal! + feesNative: BigDecimal! + feesUSD: BigDecimal! + transactionCount: BigInt! +} + +input TokenHourSnapshot_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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + liquidity: BigDecimal + liquidity_not: BigDecimal + liquidity_gt: BigDecimal + liquidity_lt: BigDecimal + liquidity_gte: BigDecimal + liquidity_lte: BigDecimal + liquidity_in: [BigDecimal!] + liquidity_not_in: [BigDecimal!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + volume: BigDecimal + volume_not: BigDecimal + volume_gt: BigDecimal + volume_lt: BigDecimal + volume_gte: BigDecimal + volume_lte: BigDecimal + volume_in: [BigDecimal!] + volume_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + priceNative: BigDecimal + priceNative_not: BigDecimal + priceNative_gt: BigDecimal + priceNative_lt: BigDecimal + priceNative_gte: BigDecimal + priceNative_lte: BigDecimal + priceNative_in: [BigDecimal!] + priceNative_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!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenHourSnapshot_filter] + or: [TokenHourSnapshot_filter] +} + +enum TokenHourSnapshot_orderBy { + id + date + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__liquidity + token__liquidityNative + token__liquidityUSD + token__volume + token__volumeNative + token__volumeUSD + token__feesNative + token__feesUSD + token__txCount + token__pairCount + token__whitelistedPairCount + liquidity + liquidityNative + liquidityUSD + volume + volumeNative + volumeUSD + priceNative + priceUSD + feesNative + feesUSD + transactionCount +} + +type TokenPrice { + """ same as token entity id, address of token """ + id: ID! + + """ Token """ + token: Token! + + """ derived native, this is useful for calculating price. (derivedNative * bundle.nativePrice = USD price) + """ + derivedNative: BigDecimal! + + """ price in USD. NOTE: this will not always be up to date, it only updates when onSync event is emitted, bundle.nativePrice could have changed. + """ + lastUsdPrice: BigDecimal! + + """ Which token this price is based on """ + pricedOffToken: Token + + """ Which pair this price is based on """ + pricedOffPair: Pair +} + +input TokenPrice_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + derivedNative: BigDecimal + derivedNative_not: BigDecimal + derivedNative_gt: BigDecimal + derivedNative_lt: BigDecimal + derivedNative_gte: BigDecimal + derivedNative_lte: BigDecimal + derivedNative_in: [BigDecimal!] + derivedNative_not_in: [BigDecimal!] + lastUsdPrice: BigDecimal + lastUsdPrice_not: BigDecimal + lastUsdPrice_gt: BigDecimal + lastUsdPrice_lt: BigDecimal + lastUsdPrice_gte: BigDecimal + lastUsdPrice_lte: BigDecimal + lastUsdPrice_in: [BigDecimal!] + lastUsdPrice_not_in: [BigDecimal!] + pricedOffToken: String + pricedOffToken_not: String + pricedOffToken_gt: String + pricedOffToken_lt: String + pricedOffToken_gte: String + pricedOffToken_lte: String + pricedOffToken_in: [String!] + pricedOffToken_not_in: [String!] + pricedOffToken_contains: String + pricedOffToken_contains_nocase: String + pricedOffToken_not_contains: String + pricedOffToken_not_contains_nocase: String + pricedOffToken_starts_with: String + pricedOffToken_starts_with_nocase: String + pricedOffToken_not_starts_with: String + pricedOffToken_not_starts_with_nocase: String + pricedOffToken_ends_with: String + pricedOffToken_ends_with_nocase: String + pricedOffToken_not_ends_with: String + pricedOffToken_not_ends_with_nocase: String + pricedOffToken_: Token_filter + pricedOffPair: String + pricedOffPair_not: String + pricedOffPair_gt: String + pricedOffPair_lt: String + pricedOffPair_gte: String + pricedOffPair_lte: String + pricedOffPair_in: [String!] + pricedOffPair_not_in: [String!] + pricedOffPair_contains: String + pricedOffPair_contains_nocase: String + pricedOffPair_not_contains: String + pricedOffPair_not_contains_nocase: String + pricedOffPair_starts_with: String + pricedOffPair_starts_with_nocase: String + pricedOffPair_not_starts_with: String + pricedOffPair_not_starts_with_nocase: String + pricedOffPair_ends_with: String + pricedOffPair_ends_with_nocase: String + pricedOffPair_not_ends_with: String + pricedOffPair_not_ends_with_nocase: String + pricedOffPair_: Pair_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenPrice_filter] + or: [TokenPrice_filter] +} + +enum TokenPrice_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__liquidity + token__liquidityNative + token__liquidityUSD + token__volume + token__volumeNative + token__volumeUSD + token__feesNative + token__feesUSD + token__txCount + token__pairCount + token__whitelistedPairCount + derivedNative + lastUsdPrice + pricedOffToken + pricedOffToken__id + pricedOffToken__symbol + pricedOffToken__symbolSuccess + pricedOffToken__name + pricedOffToken__nameSuccess + pricedOffToken__decimals + pricedOffToken__decimalsSuccess + pricedOffToken__liquidity + pricedOffToken__liquidityNative + pricedOffToken__liquidityUSD + pricedOffToken__volume + pricedOffToken__volumeNative + pricedOffToken__volumeUSD + pricedOffToken__feesNative + pricedOffToken__feesUSD + pricedOffToken__txCount + pricedOffToken__pairCount + pricedOffToken__whitelistedPairCount + pricedOffPair + pricedOffPair__id + pricedOffPair__type + pricedOffPair__swapFee + pricedOffPair__twapEnabled + pricedOffPair__name + pricedOffPair__source + pricedOffPair__createdAtBlock + pricedOffPair__createdAtTimestamp + pricedOffPair__reserve0 + pricedOffPair__reserve1 + pricedOffPair___cacheUpdatedAtBlock + pricedOffPair___cache_reserve0 + pricedOffPair___cache_reserve1 + pricedOffPair___cache_token0Price + pricedOffPair___cache_token1Price + pricedOffPair__liquidity + pricedOffPair__liquidityUSD + pricedOffPair__liquidityNative + pricedOffPair__trackedLiquidityNative + pricedOffPair__token0Price + pricedOffPair__token1Price + pricedOffPair__volumeNative + pricedOffPair__volumeUSD + pricedOffPair__volumeToken0 + pricedOffPair__volumeToken1 + pricedOffPair__feesNative + pricedOffPair__feesUSD + pricedOffPair__apr + pricedOffPair__aprUpdatedAtTimestamp + pricedOffPair__txCount +} + +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!] + price: String + price_not: String + price_gt: String + price_lt: String + price_gte: String + price_lte: String + price_in: [String!] + price_not_in: [String!] + price_contains: String + price_contains_nocase: String + price_not_contains: String + price_not_contains_nocase: String + price_starts_with: String + price_starts_with_nocase: String + price_not_starts_with: String + price_not_starts_with_nocase: String + price_ends_with: String + price_ends_with_nocase: String + price_not_ends_with: String + price_not_ends_with_nocase: String + price_: TokenPrice_filter + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + symbolSuccess: Boolean + symbolSuccess_not: Boolean + symbolSuccess_in: [Boolean!] + symbolSuccess_not_in: [Boolean!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + nameSuccess: Boolean + nameSuccess_not: Boolean + nameSuccess_in: [Boolean!] + nameSuccess_not_in: [Boolean!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + decimalsSuccess: Boolean + decimalsSuccess_not: Boolean + decimalsSuccess_in: [Boolean!] + decimalsSuccess_not_in: [Boolean!] + liquidity: BigInt + liquidity_not: BigInt + liquidity_gt: BigInt + liquidity_lt: BigInt + liquidity_gte: BigInt + liquidity_lte: BigInt + liquidity_in: [BigInt!] + liquidity_not_in: [BigInt!] + liquidityNative: BigDecimal + liquidityNative_not: BigDecimal + liquidityNative_gt: BigDecimal + liquidityNative_lt: BigDecimal + liquidityNative_gte: BigDecimal + liquidityNative_lte: BigDecimal + liquidityNative_in: [BigDecimal!] + liquidityNative_not_in: [BigDecimal!] + liquidityUSD: BigDecimal + liquidityUSD_not: BigDecimal + liquidityUSD_gt: BigDecimal + liquidityUSD_lt: BigDecimal + liquidityUSD_gte: BigDecimal + liquidityUSD_lte: BigDecimal + liquidityUSD_in: [BigDecimal!] + liquidityUSD_not_in: [BigDecimal!] + volume: BigDecimal + volume_not: BigDecimal + volume_gt: BigDecimal + volume_lt: BigDecimal + volume_gte: BigDecimal + volume_lte: BigDecimal + volume_in: [BigDecimal!] + volume_not_in: [BigDecimal!] + volumeNative: BigDecimal + volumeNative_not: BigDecimal + volumeNative_gt: BigDecimal + volumeNative_lt: BigDecimal + volumeNative_gte: BigDecimal + volumeNative_lte: BigDecimal + volumeNative_in: [BigDecimal!] + volumeNative_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!] + feesNative: BigDecimal + feesNative_not: BigDecimal + feesNative_gt: BigDecimal + feesNative_lt: BigDecimal + feesNative_gte: BigDecimal + feesNative_lte: BigDecimal + feesNative_in: [BigDecimal!] + feesNative_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!] + pairCount: BigInt + pairCount_not: BigInt + pairCount_gt: BigInt + pairCount_lt: BigInt + pairCount_gte: BigInt + pairCount_lte: BigInt + pairCount_in: [BigInt!] + pairCount_not_in: [BigInt!] + whitelistedPairCount: BigInt + whitelistedPairCount_not: BigInt + whitelistedPairCount_gt: BigInt + whitelistedPairCount_lt: BigInt + whitelistedPairCount_gte: BigInt + whitelistedPairCount_lte: BigInt + whitelistedPairCount_in: [BigInt!] + whitelistedPairCount_not_in: [BigInt!] + pairs_: _TokenPair_filter + whitelistedPairs_: _WhitelistedTokenPair_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + price + price__id + price__derivedNative + price__lastUsdPrice + symbol + symbolSuccess + name + nameSuccess + decimals + decimalsSuccess + liquidity + liquidityNative + liquidityUSD + volume + volumeNative + volumeUSD + feesNative + feesUSD + txCount + pairCount + whitelistedPairCount + pairs + whitelistedPairs +} + +type Transaction { + """ Tx hash """ + id: ID! + gasLimit: BigInt! + gasPrice: BigInt! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +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!] + gasLimit: BigInt + gasLimit_not: BigInt + gasLimit_gt: BigInt + gasLimit_lt: BigInt + gasLimit_gte: BigInt + gasLimit_lte: BigInt + gasLimit_in: [BigInt!] + gasLimit_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: [String!] + mints_not: [String!] + mints_contains: [String!] + mints_contains_nocase: [String!] + mints_not_contains: [String!] + mints_not_contains_nocase: [String!] + mints_: Mint_filter + burns: [String!] + burns_not: [String!] + burns_contains: [String!] + burns_contains_nocase: [String!] + burns_not_contains: [String!] + burns_not_contains_nocase: [String!] + burns_: Burn_filter + swaps: [String!] + swaps_not: [String!] + swaps_contains: [String!] + swaps_contains_nocase: [String!] + swaps_not_contains: [String!] + swaps_not_contains_nocase: [String!] + swaps_: Swap_filter + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + gasLimit + gasPrice + mints + burns + swaps + createdAtBlock + createdAtTimestamp +} + +type User { + id: ID! + lpSnapshotsCount: BigInt! + liquidityPositions(skip: Int = 0, first: Int = 100, orderBy: LiquidityPosition_orderBy, orderDirection: OrderDirection, where: LiquidityPosition_filter): [LiquidityPosition!] +} + +input User_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!] + lpSnapshotsCount: BigInt + lpSnapshotsCount_not: BigInt + lpSnapshotsCount_gt: BigInt + lpSnapshotsCount_lt: BigInt + lpSnapshotsCount_gte: BigInt + lpSnapshotsCount_lte: BigInt + lpSnapshotsCount_in: [BigInt!] + lpSnapshotsCount_not_in: [BigInt!] + liquidityPositions_: LiquidityPosition_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + lpSnapshotsCount + liquidityPositions +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} + +type _TokenPair { + """ id is created by combining token.id and count, e.g. 0x00x00:1 """ + id: ID! + + """ Pair """ + pair: Pair! + + """ Token """ + token: Token! +} + +input _TokenPair_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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [_TokenPair_filter] + or: [_TokenPair_filter] +} + +enum _TokenPair_orderBy { + id + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__liquidity + token__liquidityNative + token__liquidityUSD + token__volume + token__volumeNative + token__volumeUSD + token__feesNative + token__feesUSD + token__txCount + token__pairCount + token__whitelistedPairCount +} + +type _Version { + id: ID! + version: String! +} + +input _Version_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!] + version: String + version_not: String + version_gt: String + version_lt: String + version_gte: String + version_lte: String + version_in: [String!] + version_not_in: [String!] + version_contains: String + version_contains_nocase: String + version_not_contains: String + version_not_contains_nocase: String + version_starts_with: String + version_starts_with_nocase: String + version_not_starts_with: String + version_not_starts_with_nocase: String + version_ends_with: String + version_ends_with_nocase: String + version_not_ends_with: String + version_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [_Version_filter] + or: [_Version_filter] +} + +enum _Version_orderBy { + id + version +} + +type _WhitelistedTokenPair { + """ id is created by combining token.id and count, e.g. 0x00x00:1 """ + id: ID! + + """ Pair """ + pair: Pair! + + """ Token """ + token: Token! +} + +input _WhitelistedTokenPair_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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [_WhitelistedTokenPair_filter] + or: [_WhitelistedTokenPair_filter] +} + +enum _WhitelistedTokenPair_orderBy { + id + pair + pair__id + pair__type + pair__swapFee + pair__twapEnabled + pair__name + pair__source + pair__createdAtBlock + pair__createdAtTimestamp + pair__reserve0 + pair__reserve1 + pair___cacheUpdatedAtBlock + pair___cache_reserve0 + pair___cache_reserve1 + pair___cache_token0Price + pair___cache_token1Price + pair__liquidity + pair__liquidityUSD + pair__liquidityNative + pair__trackedLiquidityNative + pair__token0Price + pair__token1Price + pair__volumeNative + pair__volumeUSD + pair__volumeToken0 + pair__volumeToken1 + pair__feesNative + pair__feesUSD + pair__apr + pair__aprUpdatedAtTimestamp + pair__txCount + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__liquidity + token__liquidityNative + token__liquidityUSD + token__volume + token__volumeNative + token__volumeUSD + token__feesNative + token__feesUSD + token__txCount + token__pairCount + token__whitelistedPairCount +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts new file mode 100644 index 0000000000..e664361ffe --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts @@ -0,0 +1,9 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts new file mode 100644 index 0000000000..eabaf74d35 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts @@ -0,0 +1,103 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'sushi-v2'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'nativePrice': { name: 'nativePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'nativePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'nativePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'nativePrice'; }; + 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'complete': { name: 'complete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'complete'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'complete_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'complete_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'complete_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'to' | 'logIndex' | 'amountUSD' | 'complete' | 'feeTo' | 'feeLiquidity'; }; + 'Bytes': unknown; + 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tokenCount': { name: 'tokenCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'FactoryDaySnapshot': { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'factory': { name: 'factory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'FactoryDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_'; type: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'FactoryDaySnapshot_orderBy': { name: 'FactoryDaySnapshot_orderBy'; enumValues: 'id' | 'factory' | 'factory__id' | 'factory__type' | 'factory__volumeUSD' | 'factory__volumeNative' | 'factory__liquidityUSD' | 'factory__liquidityNative' | 'factory__feesUSD' | 'factory__feesNative' | 'factory__pairCount' | 'factory__transactionCount' | 'factory__tokenCount' | 'factory__userCount' | 'date' | 'volumeUSD' | 'volumeNative' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; + 'FactoryHourSnapshot': { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'factory': { name: 'factory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'FactoryHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_'; type: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'FactoryHourSnapshot_orderBy': { name: 'FactoryHourSnapshot_orderBy'; enumValues: 'id' | 'factory' | 'factory__id' | 'factory__type' | 'factory__volumeUSD' | 'factory__volumeNative' | 'factory__liquidityUSD' | 'factory__liquidityNative' | 'factory__feesUSD' | 'factory__feesNative' | 'factory__pairCount' | 'factory__transactionCount' | 'factory__tokenCount' | 'factory__userCount' | 'date' | 'volumeUSD' | 'volumeNative' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; + 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'type' | 'volumeUSD' | 'volumeNative' | 'liquidityUSD' | 'liquidityNative' | 'feesUSD' | 'feesNative' | 'pairCount' | 'transactionCount' | 'tokenCount' | 'userCount'; }; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'LiquidityPosition': { kind: 'OBJECT'; name: 'LiquidityPosition'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; + 'LiquidityPositionSnapshot': { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityTokenTotalSupply': { name: 'liquidityTokenTotalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'token0PriceUSD': { name: 'token0PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1PriceUSD': { name: 'token1PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; + 'LiquidityPositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'LiquidityPositionSnapshot_orderBy': { name: 'LiquidityPositionSnapshot_orderBy'; enumValues: 'id' | 'liquidityPosition' | 'liquidityPosition__id' | 'liquidityPosition__balance' | 'liquidityPosition__createdAtBlock' | 'liquidityPosition__createdAtTimestamp' | 'timestamp' | 'block' | 'user' | 'user__id' | 'user__lpSnapshotsCount' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token0PriceUSD' | 'token1PriceUSD' | 'reserve0' | 'reserve1' | 'reserveUSD' | 'liquidityTokenTotalSupply' | 'liquidityTokenBalance'; }; + 'LiquidityPosition_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'LiquidityPosition_orderBy': { name: 'LiquidityPosition_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'user' | 'user__id' | 'user__lpSnapshotsCount' | 'balance' | 'createdAtBlock' | 'createdAtTimestamp'; }; + 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'to' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'logIndex' | 'amountUSD' | 'feeTo' | 'feeLiquidity'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { '_cacheUpdatedAtBlock': { name: '_cacheUpdatedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_reserve0': { name: '_cache_reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_reserve1': { name: '_cache_reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_token0Price': { name: '_cache_token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; '_cache_token1Price': { name: '_cache_token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'aprUpdatedAtTimestamp': { name: 'aprUpdatedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'swapFee': { name: 'swapFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'trackedLiquidityNative': { name: 'trackedLiquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'twapEnabled': { name: 'twapEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PairDaySnapshot': { kind: 'OBJECT'; name: 'PairDaySnapshot'; fields: { 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'cumulativeVolumeUSD': { name: 'cumulativeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PairDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PairDaySnapshot_orderBy': { name: 'PairDaySnapshot_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'date' | 'cumulativeVolumeUSD' | 'volumeUSD' | 'volumeNative' | 'volumeToken0' | 'volumeToken1' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'apr' | 'transactionCount'; }; + 'PairHourSnapshot': { kind: 'OBJECT'; name: 'PairHourSnapshot'; fields: { 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'cumulativeVolumeUSD': { name: 'cumulativeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PairHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PairHourSnapshot_orderBy': { name: 'PairHourSnapshot_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'date' | 'cumulativeVolumeUSD' | 'volumeUSD' | 'volumeNative' | 'volumeToken0' | 'volumeToken1' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'apr' | 'transactionCount'; }; + 'PairType': { name: 'PairType'; enumValues: 'CONSTANT_PRODUCT_POOL'; }; + 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'swapFee'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'swapFee_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'twapEnabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twapEnabled_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twapEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'twapEnabled_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedLiquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedLiquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositionSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'hourSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'daySnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'type' | 'swapFee' | 'twapEnabled' | 'name' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__symbolSuccess' | 'token0__name' | 'token0__nameSuccess' | 'token0__decimals' | 'token0__decimalsSuccess' | 'token0__liquidity' | 'token0__liquidityNative' | 'token0__liquidityUSD' | 'token0__volume' | 'token0__volumeNative' | 'token0__volumeUSD' | 'token0__feesNative' | 'token0__feesUSD' | 'token0__txCount' | 'token0__pairCount' | 'token0__whitelistedPairCount' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__symbolSuccess' | 'token1__name' | 'token1__nameSuccess' | 'token1__decimals' | 'token1__decimalsSuccess' | 'token1__liquidity' | 'token1__liquidityNative' | 'token1__liquidityUSD' | 'token1__volume' | 'token1__volumeNative' | 'token1__volumeUSD' | 'token1__feesNative' | 'token1__feesUSD' | 'token1__txCount' | 'token1__pairCount' | 'token1__whitelistedPairCount' | 'source' | 'createdAtBlock' | 'createdAtTimestamp' | 'reserve0' | 'reserve1' | '_cacheUpdatedAtBlock' | '_cache_reserve0' | '_cache_reserve1' | '_cache_token0Price' | '_cache_token1Price' | 'liquidity' | 'liquidityUSD' | 'liquidityNative' | 'trackedLiquidityNative' | 'token0Price' | 'token1Price' | 'volumeNative' | 'volumeUSD' | 'volumeToken0' | 'volumeToken1' | 'feesNative' | 'feesUSD' | 'apr' | 'aprUpdatedAtTimestamp' | 'txCount' | 'liquidityPositions' | 'liquidityPositionSnapshots' | 'hourSnapshots' | 'daySnapshots'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'factoryDaySnapshot': { name: 'factoryDaySnapshot'; type: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; } }; 'factoryDaySnapshots': { name: 'factoryDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; }; }; }; } }; 'factoryHourSnapshot': { name: 'factoryHourSnapshot'; type: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; } }; 'factoryHourSnapshots': { name: 'factoryHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDaySnapshot': { name: 'pairDaySnapshot'; type: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; } }; 'pairDaySnapshots': { name: 'pairDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'pairHourSnapshot': { name: 'pairHourSnapshot'; type: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; } }; 'pairHourSnapshots': { name: 'pairHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDaySnapshot': { name: 'tokenDaySnapshot'; type: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; } }; 'tokenDaySnapshots': { name: 'tokenDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; }; }; }; } }; 'tokenHourSnapshot': { name: 'tokenHourSnapshot'; type: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; } }; 'tokenHourSnapshots': { name: 'tokenHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; }; }; }; } }; 'tokenPair': { name: 'tokenPair'; type: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; } }; 'tokenPairs': { name: 'tokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'tokenPrice': { name: 'tokenPrice'; type: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; } }; 'tokenPrices': { name: 'tokenPrices'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'version': { name: 'version'; type: { kind: 'OBJECT'; name: '_Version'; ofType: null; } }; 'versions': { name: 'versions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Version'; ofType: null; }; }; }; } }; 'whitelistedTokenPair': { name: 'whitelistedTokenPair'; type: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; } }; 'whitelistedTokenPairs': { name: 'whitelistedTokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'factoryDaySnapshot': { name: 'factoryDaySnapshot'; type: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; } }; 'factoryDaySnapshots': { name: 'factoryDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; }; }; }; } }; 'factoryHourSnapshot': { name: 'factoryHourSnapshot'; type: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; } }; 'factoryHourSnapshots': { name: 'factoryHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDaySnapshot': { name: 'pairDaySnapshot'; type: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; } }; 'pairDaySnapshots': { name: 'pairDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'pairHourSnapshot': { name: 'pairHourSnapshot'; type: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; } }; 'pairHourSnapshots': { name: 'pairHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDaySnapshot': { name: 'tokenDaySnapshot'; type: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; } }; 'tokenDaySnapshots': { name: 'tokenDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; }; }; }; } }; 'tokenHourSnapshot': { name: 'tokenHourSnapshot'; type: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; } }; 'tokenHourSnapshots': { name: 'tokenHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; }; }; }; } }; 'tokenPair': { name: 'tokenPair'; type: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; } }; 'tokenPairs': { name: 'tokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'tokenPrice': { name: 'tokenPrice'; type: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; } }; 'tokenPrices': { name: 'tokenPrices'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'version': { name: 'version'; type: { kind: 'OBJECT'; name: '_Version'; ofType: null; } }; 'versions': { name: 'versions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Version'; ofType: null; }; }; }; } }; 'whitelistedTokenPair': { name: 'whitelistedTokenPair'; type: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; } }; 'whitelistedTokenPairs': { name: 'whitelistedTokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; + 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amountIn': { name: 'amountIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountOut': { name: 'amountOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenIn': { name: 'tokenIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenOut': { name: 'tokenOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenIn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenIn_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenOut'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenOut_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenOut_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'amountIn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountIn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountOut'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountOut_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'sender' | 'tokenIn' | 'tokenIn__id' | 'tokenIn__symbol' | 'tokenIn__symbolSuccess' | 'tokenIn__name' | 'tokenIn__nameSuccess' | 'tokenIn__decimals' | 'tokenIn__decimalsSuccess' | 'tokenIn__liquidity' | 'tokenIn__liquidityNative' | 'tokenIn__liquidityUSD' | 'tokenIn__volume' | 'tokenIn__volumeNative' | 'tokenIn__volumeUSD' | 'tokenIn__feesNative' | 'tokenIn__feesUSD' | 'tokenIn__txCount' | 'tokenIn__pairCount' | 'tokenIn__whitelistedPairCount' | 'tokenOut' | 'tokenOut__id' | 'tokenOut__symbol' | 'tokenOut__symbolSuccess' | 'tokenOut__name' | 'tokenOut__nameSuccess' | 'tokenOut__decimals' | 'tokenOut__decimalsSuccess' | 'tokenOut__liquidity' | 'tokenOut__liquidityNative' | 'tokenOut__liquidityUSD' | 'tokenOut__volume' | 'tokenOut__volumeNative' | 'tokenOut__volumeUSD' | 'tokenOut__feesNative' | 'tokenOut__feesUSD' | 'tokenOut__txCount' | 'tokenOut__pairCount' | 'tokenOut__whitelistedPairCount' | 'amountIn' | 'amountOut' | 'to' | 'logIndex' | 'amountUSD'; }; + 'Timestamp': unknown; + 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimalsSuccess': { name: 'decimalsSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'nameSuccess': { name: 'nameSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'price': { name: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbolSuccess': { name: 'symbolSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistedPairCount': { name: 'whitelistedPairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'whitelistedPairs': { name: 'whitelistedPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; + 'TokenDaySnapshot': { kind: 'OBJECT'; name: 'TokenDaySnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceNative': { name: 'priceNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenDaySnapshot_orderBy': { name: 'TokenDaySnapshot_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'priceNative' | 'priceUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; + 'TokenHourSnapshot': { kind: 'OBJECT'; name: 'TokenHourSnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceNative': { name: 'priceNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenHourSnapshot_orderBy': { name: 'TokenHourSnapshot_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'priceNative' | 'priceUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; + 'TokenPrice': { kind: 'OBJECT'; name: 'TokenPrice'; fields: { 'derivedNative': { name: 'derivedNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastUsdPrice': { name: 'lastUsdPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pricedOffPair': { name: 'pricedOffPair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pricedOffToken': { name: 'pricedOffToken'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + 'TokenPrice_filter': { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'derivedNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastUsdPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastUsdPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffPair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffPair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenPrice_orderBy': { name: 'TokenPrice_orderBy'; enumValues: 'id' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'derivedNative' | 'lastUsdPrice' | 'pricedOffToken' | 'pricedOffToken__id' | 'pricedOffToken__symbol' | 'pricedOffToken__symbolSuccess' | 'pricedOffToken__name' | 'pricedOffToken__nameSuccess' | 'pricedOffToken__decimals' | 'pricedOffToken__decimalsSuccess' | 'pricedOffToken__liquidity' | 'pricedOffToken__liquidityNative' | 'pricedOffToken__liquidityUSD' | 'pricedOffToken__volume' | 'pricedOffToken__volumeNative' | 'pricedOffToken__volumeUSD' | 'pricedOffToken__feesNative' | 'pricedOffToken__feesUSD' | 'pricedOffToken__txCount' | 'pricedOffToken__pairCount' | 'pricedOffToken__whitelistedPairCount' | 'pricedOffPair' | 'pricedOffPair__id' | 'pricedOffPair__type' | 'pricedOffPair__swapFee' | 'pricedOffPair__twapEnabled' | 'pricedOffPair__name' | 'pricedOffPair__source' | 'pricedOffPair__createdAtBlock' | 'pricedOffPair__createdAtTimestamp' | 'pricedOffPair__reserve0' | 'pricedOffPair__reserve1' | 'pricedOffPair___cacheUpdatedAtBlock' | 'pricedOffPair___cache_reserve0' | 'pricedOffPair___cache_reserve1' | 'pricedOffPair___cache_token0Price' | 'pricedOffPair___cache_token1Price' | 'pricedOffPair__liquidity' | 'pricedOffPair__liquidityUSD' | 'pricedOffPair__liquidityNative' | 'pricedOffPair__trackedLiquidityNative' | 'pricedOffPair__token0Price' | 'pricedOffPair__token1Price' | 'pricedOffPair__volumeNative' | 'pricedOffPair__volumeUSD' | 'pricedOffPair__volumeToken0' | 'pricedOffPair__volumeToken1' | 'pricedOffPair__feesNative' | 'pricedOffPair__feesUSD' | 'pricedOffPair__apr' | 'pricedOffPair__aprUpdatedAtTimestamp' | 'pricedOffPair__txCount'; }; + 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbolSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'nameSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimalsSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'decimalsSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'decimalsSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimalsSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistedPairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistedPairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairs_'; type: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairs_'; type: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'price' | 'price__id' | 'price__derivedNative' | 'price__lastUsdPrice' | 'symbol' | 'symbolSuccess' | 'name' | 'nameSuccess' | 'decimals' | 'decimalsSuccess' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'feesNative' | 'feesUSD' | 'txCount' | 'pairCount' | 'whitelistedPairCount' | 'pairs' | 'whitelistedPairs'; }; + 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; }; }; + 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'gasLimit' | 'gasPrice' | 'mints' | 'burns' | 'swaps' | 'createdAtBlock' | 'createdAtTimestamp'; }; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; } }; 'lpSnapshotsCount': { name: 'lpSnapshotsCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpSnapshotsCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpSnapshotsCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'lpSnapshotsCount' | 'liquidityPositions'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + '_TokenPair': { kind: 'OBJECT'; name: '_TokenPair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + '_TokenPair_filter': { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; }; defaultValue: null }]; }; + '_TokenPair_orderBy': { name: '_TokenPair_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount'; }; + '_Version': { kind: 'OBJECT'; name: '_Version'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + '_Version_filter': { kind: 'INPUT_OBJECT'; name: '_Version_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_Version_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_Version_filter'; ofType: null; }; }; defaultValue: null }]; }; + '_Version_orderBy': { name: '_Version_orderBy'; enumValues: 'id' | 'version'; }; + '_WhitelistedTokenPair': { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + '_WhitelistedTokenPair_filter': { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; }; defaultValue: null }]; }; + '_WhitelistedTokenPair_orderBy': { name: '_WhitelistedTokenPair_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts new file mode 100644 index 0000000000..dca1aafa7f --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/scalars.js' +import type { introspection } from './sushi-v3-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts new file mode 100644 index 0000000000..bf3ede1899 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -0,0 +1,54 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3BurnsQuery = graphql(` + query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) { + burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } + } +`) + +export type GetSushiV3Burns = VariablesOf + +export async function getSushiV3Burns( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Burns, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3BurnsQuery, + variables, + }) + + if (result) { + return result.burns + } + + return [] +} + +export type SushiV3Burns = NonNullable< + ResultOf +>['burns'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts new file mode 100644 index 0000000000..1b1b593055 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -0,0 +1,52 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3CollectsQuery = graphql(` + query Collects($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Collect_orderBy, $orderDirection: OrderDirection, $where: Collect_filter) { + collects(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + owner + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } + } +`) + +export type GetSushiV3Collects = VariablesOf + +export async function getSushiV3Collects( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Collects, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3CollectsQuery, + variables, + }) + + if (result) { + return result.collects + } + + return [] +} + +export type SushiV3Collects = NonNullable< + ResultOf +>['collects'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts new file mode 100644 index 0000000000..b7645a2472 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -0,0 +1,49 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3DayDatasQuery = graphql(` + query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) { + uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + date + volumeETH + volumeUSD + volumeUSDUntracked + feesUSD + txCount + tvlUSD + } + } +`) + +export type GetSushiV3DayDatas = VariablesOf + +export async function getSushiV3DayDatas( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3DayDatas, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3DayDatasQuery, + variables, + }) + + if (result) { + return result.uniswapDayDatas + } + + return [] +} + +export type SushiV3DayDatas = NonNullable< + ResultOf +>['uniswapDayDatas'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts new file mode 100644 index 0000000000..3d642a2b53 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -0,0 +1,44 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { graphql } from '../graphql' + +export const SushiV3FactoriesQuery = graphql(` + query Factories { + factories(first: 1) { + id + totalValueLockedUSD + totalVolumeUSD + poolCount + } + } +`) + +export type GetSushiV3Factory = VariablesOf + +export async function getSushiV3Factory( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Factory, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await request({ + url, + document: SushiV3FactoriesQuery, + variables, + }) + + if (result) { + return result.factories[0]! + } + + throw new Error('No factory found') +} + +export type SushiV3Factory = NonNullable< + ResultOf +>['factories'][number] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts new file mode 100644 index 0000000000..3164da5793 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -0,0 +1,55 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3MintsQuery = graphql(` + query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) { + mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } + } +`) + +export type GetSushiV3Mints = VariablesOf + +export async function getSushiV3Mints( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Mints, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3MintsQuery, + variables, + }) + + if (result) { + return result.mints + } + + return [] +} + +export type SushiV3Mints = NonNullable< + ResultOf +>['mints'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts new file mode 100644 index 0000000000..a986831ac1 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -0,0 +1,79 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { graphql } from '../graphql' + +export const SushiV3PoolQuery = graphql(` + query Pool($id: ID!, $block: Block_height) { + pool(id: $id, block: $block) { + id + token0 { + id + symbol + name + decimals + } + token1 { + id + symbol + name + decimals + } + feeTier + liquidity + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + totalValueLockedToken0 + totalValueLockedToken1 + totalValueLockedETH + totalValueLockedUSD + + createdAtTimestamp + createdAtBlockNumber + + poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) { + id + periodStartUnix + tvlUSD + volumeUSD + feesUSD + txCount + } + + poolDayData(first: 730, orderBy: date, orderDirection: desc) { + id + date + tvlUSD + volumeUSD + feesUSD + txCount + } + } + } +`) + +export type GetSushiV3Pool = VariablesOf + +export async function getSushiV3Pool( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Pool, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await request(url, SushiV3PoolQuery, variables) + + if (result) { + return result.pool + } + + throw new Error('No pool found') +} + +export type SushiV3Pool = NonNullable>['pool'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts new file mode 100644 index 0000000000..ecd57c97f3 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -0,0 +1,79 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { graphql } from '../graphql' + +export const SushiV3PoolsByTokenPairQuery = graphql(` + query PoolsByTokenPair($where: Pool_filter!) { + pools(first: 1000, where: $where) { + id + feeTier + liquidity + sqrtPrice + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + token0Price + token1Price + tick + observationIndex + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + totalValueLockedToken0 + totalValueLockedToken1 + totalValueLockedETH + totalValueLockedUSD + totalValueLockedUSDUntracked + liquidityProviderCount + } + } +`) + +export type GetSushiV3PoolsByTokenPair = { + token0: `0x${string}` + token1: `0x${string}` +} + +export async function getSushiV3DayDatas( + chainId: SushiSwapV3ChainId, + _variables: GetSushiV3PoolsByTokenPair, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const tokens = [_variables.token0, _variables.token1].sort() as [ + `0x${string}`, + `0x${string}`, + ] + + const variables: VariablesOf = { + where: { + token0: tokens[0], + token1: tokens[1], + }, + } + + const result = await request({ + url, + document: SushiV3PoolsByTokenPairQuery, + variables, + }) + + if (result) { + return result.pools + } + + return [] +} + +export type SushiV3DayDatas = NonNullable< + ResultOf +>['pools'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts new file mode 100644 index 0000000000..4247f34ecd --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -0,0 +1,54 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3SwapsQuery = graphql(` + query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) { + swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + transaction { + id + timestamp + blockNumber + } + } + } +`) + +export type GetSushiV3Swaps = VariablesOf + +export async function getSushiV3Swaps( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Swaps, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3SwapsQuery, + variables, + }) + + if (result) { + return result.swaps + } + + return [] +} + +export type SushiV3Swaps = NonNullable< + ResultOf +>['swaps'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts new file mode 100644 index 0000000000..f36f5c3d95 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -0,0 +1,85 @@ +import { + SUSHISWAP_V3_SUBGRAPH_URL, + type SushiSwapV3ChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV3TransactionsQuery = graphql(` + query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) { + transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + timestamp + blockNumber + mints { + id + owner + sender + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + burns { + id + owner + origin + amount + amount0 + amount1 + amountUSD + logIndex + } + swaps { + id + sender + recipient + origin + amount0 + amount1 + amountUSD + logIndex + } + collects { + id + owner + amount0 + amount1 + amountUSD + logIndex + } + } + } +`) + +export type GetSushiV3Transactions = VariablesOf< + typeof SushiV3TransactionsQuery +> + +export async function getSushiV3Transactions( + chainId: SushiSwapV3ChainId, + variables: GetSushiV3Transactions, +) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3TransactionsQuery, + variables, + }) + + if (result) { + return result.transactions + } + + return [] +} + +export type SushiV3Transactions = NonNullable< + ResultOf +>['transactions'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql b/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql new file mode 100644 index 0000000000..766d37e403 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql @@ -0,0 +1,6326 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +type Bundle { + id: ID! + ethPriceUSD: BigDecimal! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Bundle_filter] + or: [Bundle_filter] +} + +enum Bundle_orderBy { + id + ethPriceUSD +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Burn_filter] + or: [Burn_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__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 +} + +scalar Bytes + +type Collect { + id: ID! + transaction: Transaction! + timestamp: BigInt! + pool: Pool! + owner: Bytes + amount0: BigDecimal! + amount1: BigDecimal! + amountUSD: BigDecimal + tickLower: BigInt! + tickUpper: BigInt! + logIndex: BigInt +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + owner: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Collect_filter] + or: [Collect_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__liquidityProviderCount + owner + amount0 + amount1 + amountUSD + tickLower + tickUpper + logIndex +} + +type DecreaseEvent { + id: ID! + pool: Pool! + tokenID: BigInt! + position: Position! + amount0: BigInt! + amount1: BigInt! + token0: Token! + token1: Token! + timeStamp: BigInt! + transaction: Transaction! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: Transaction_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [DecreaseEvent_filter] + or: [DecreaseEvent_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__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 +} + +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! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Factory_filter] + or: [Factory_filter] +} + +enum Factory_orderBy { + id + poolCount + txCount + totalVolumeUSD + totalVolumeETH + totalFeesUSD + totalFeesETH + untrackedVolumeUSD + totalValueLockedUSD + totalValueLockedETH + totalValueLockedUSDUntracked + totalValueLockedETHUntracked + owner +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + sender: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Flash_filter] + or: [Flash_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__liquidityProviderCount + sender + recipient + amount0 + amount1 + amountUSD + amount0Paid + amount1Paid + logIndex +} + +type IncreaseEvent { + id: ID! + pool: Pool! + tokenID: BigInt! + position: Position! + amount0: BigInt! + amount1: BigInt! + token0: Token! + token1: Token! + timeStamp: BigInt! + transaction: Transaction! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: Transaction_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [IncreaseEvent_filter] + or: [IncreaseEvent_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__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 +} + +"8 bytes signed integer\n" +scalar Int8 + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Mint_filter] + or: [Mint_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__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 +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +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! + liquidityProviderCount: BigInt! + poolHourData(skip: Int = 0, first: Int = 100, orderBy: PoolHourData_orderBy, orderDirection: OrderDirection, where: PoolHourData_filter): [PoolHourData!]! + poolDayData(skip: Int = 0, first: Int = 100, orderBy: PoolDayData_orderBy, orderDirection: OrderDirection, where: PoolDayData_filter): [PoolDayData!]! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! + collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! + ticks(skip: Int = 0, first: Int = 100, orderBy: Tick_orderBy, orderDirection: OrderDirection, where: Tick_filter): [Tick!]! +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PoolDayData_filter] + or: [PoolDayData_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__liquidityProviderCount + liquidity + sqrtPrice + token0Price + token1Price + tick + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + tvlUSD + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + open + high + low + close +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PoolHourData_filter] + or: [PoolHourData_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__liquidityProviderCount + liquidity + sqrtPrice + token0Price + token1Price + tick + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + tvlUSD + volumeToken0 + volumeToken1 + volumeUSD + feesUSD + txCount + open + high + low + close +} + +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_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + feeTier: BigInt + feeTier_not: BigInt + feeTier_gt: BigInt + feeTier_lt: BigInt + feeTier_gte: BigInt + feeTier_lte: BigInt + feeTier_in: [BigInt!] + feeTier_not_in: [BigInt!] + 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!] + 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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pool_filter] + or: [Pool_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 + liquidityProviderCount + poolHourData + poolDayData + mints + burns + swaps + collects + ticks +} + +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(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! + decreaseEvents(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! +} + +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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + position_contains_nocase: String + position_not_contains: String + position_not_contains_nocase: 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_: 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PositionSnapshot_filter] + or: [PositionSnapshot_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__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 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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_contains: String + tickLower_contains_nocase: String + tickLower_not_contains: String + tickLower_not_contains_nocase: 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_: 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_contains: String + tickUpper_contains_nocase: String + tickUpper_not_contains: String + tickUpper_not_contains_nocase: 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_: 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Position_filter] + or: [Position_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__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 +} + +type Query { + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + tick( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tick + ticks( + skip: Int = 0 + first: Int = 100 + orderBy: Tick_orderBy + orderDirection: OrderDirection + where: Tick_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tick!]! + position( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Position + positions( + skip: Int = 0 + first: Int = 100 + orderBy: Position_orderBy + orderDirection: OrderDirection + where: Position_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Position!]! + positionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PositionSnapshot + positionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PositionSnapshot_orderBy + orderDirection: OrderDirection + where: PositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PositionSnapshot!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + collect( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Collect + collects( + skip: Int = 0 + first: Int = 100 + orderBy: Collect_orderBy + orderDirection: OrderDirection + where: Collect_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Collect!]! + flash( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Flash + flashes( + skip: Int = 0 + first: Int = 100 + orderBy: Flash_orderBy + orderDirection: OrderDirection + where: Flash_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Flash!]! + uniswapDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniswapDayData + uniswapDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: UniswapDayData_orderBy + orderDirection: OrderDirection + where: UniswapDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniswapDayData!]! + poolDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolDayData + poolDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolDayData_orderBy + orderDirection: OrderDirection + where: PoolDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolDayData!]! + poolHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHourData + poolHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHourData_orderBy + orderDirection: OrderDirection + where: PoolHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHourData!]! + tickHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickHourData + tickHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickHourData_orderBy + orderDirection: OrderDirection + where: TickHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickHourData!]! + tickDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickDayData + tickDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickDayData_orderBy + orderDirection: OrderDirection + where: TickDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickDayData!]! + tokenDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDayData + tokenDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDayData_orderBy + orderDirection: OrderDirection + where: TokenDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDayData!]! + tokenHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourData + tokenHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourData_orderBy + orderDirection: OrderDirection + where: TokenHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourData!]! + increaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): IncreaseEvent + increaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: IncreaseEvent_orderBy + orderDirection: OrderDirection + where: IncreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [IncreaseEvent!]! + decreaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DecreaseEvent + decreaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: DecreaseEvent_orderBy + orderDirection: OrderDirection + where: DecreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DecreaseEvent!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + factory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Factory + factories( + skip: Int = 0 + first: Int = 100 + orderBy: Factory_orderBy + orderDirection: OrderDirection + where: Factory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Factory!]! + bundle( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Bundle + bundles( + skip: Int = 0 + first: Int = 100 + orderBy: Bundle_orderBy + orderDirection: OrderDirection + where: Bundle_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Bundle!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + tick( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tick + ticks( + skip: Int = 0 + first: Int = 100 + orderBy: Tick_orderBy + orderDirection: OrderDirection + where: Tick_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tick!]! + position( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Position + positions( + skip: Int = 0 + first: Int = 100 + orderBy: Position_orderBy + orderDirection: OrderDirection + where: Position_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Position!]! + positionSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PositionSnapshot + positionSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: PositionSnapshot_orderBy + orderDirection: OrderDirection + where: PositionSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PositionSnapshot!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + mint( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Mint + mints( + skip: Int = 0 + first: Int = 100 + orderBy: Mint_orderBy + orderDirection: OrderDirection + where: Mint_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Mint!]! + burn( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Burn + burns( + skip: Int = 0 + first: Int = 100 + orderBy: Burn_orderBy + orderDirection: OrderDirection + where: Burn_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Burn!]! + swap( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Swap + swaps( + skip: Int = 0 + first: Int = 100 + orderBy: Swap_orderBy + orderDirection: OrderDirection + where: Swap_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Swap!]! + collect( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Collect + collects( + skip: Int = 0 + first: Int = 100 + orderBy: Collect_orderBy + orderDirection: OrderDirection + where: Collect_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Collect!]! + flash( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Flash + flashes( + skip: Int = 0 + first: Int = 100 + orderBy: Flash_orderBy + orderDirection: OrderDirection + where: Flash_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Flash!]! + uniswapDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniswapDayData + uniswapDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: UniswapDayData_orderBy + orderDirection: OrderDirection + where: UniswapDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniswapDayData!]! + poolDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolDayData + poolDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolDayData_orderBy + orderDirection: OrderDirection + where: PoolDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolDayData!]! + poolHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHourData + poolHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHourData_orderBy + orderDirection: OrderDirection + where: PoolHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHourData!]! + tickHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickHourData + tickHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickHourData_orderBy + orderDirection: OrderDirection + where: TickHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickHourData!]! + tickDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TickDayData + tickDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TickDayData_orderBy + orderDirection: OrderDirection + where: TickDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TickDayData!]! + tokenDayData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDayData + tokenDayDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDayData_orderBy + orderDirection: OrderDirection + where: TokenDayData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDayData!]! + tokenHourData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourData + tokenHourDatas( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourData_orderBy + orderDirection: OrderDirection + where: TokenHourData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourData!]! + increaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): IncreaseEvent + increaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: IncreaseEvent_orderBy + orderDirection: OrderDirection + where: IncreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [IncreaseEvent!]! + decreaseEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DecreaseEvent + decreaseEvents( + skip: Int = 0 + first: Int = 100 + orderBy: DecreaseEvent_orderBy + orderDirection: OrderDirection + where: DecreaseEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DecreaseEvent!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +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 +} + +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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Swap_filter] + or: [Swap_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__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 +} + +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 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! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + tick_contains_nocase: String + tick_not_contains: String + tick_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TickDayData_filter] + or: [TickDayData_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__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 +} + +type TickHourData { + id: ID! + periodStartUnix: Int! + pool: Pool! + tick: Tick! + liquidityGross: BigInt! + liquidityNet: BigInt! + volumeToken0: BigDecimal! + volumeToken1: BigDecimal! + volumeUSD: BigDecimal! + feesUSD: BigDecimal! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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_contains: String + tick_contains_nocase: String + tick_not_contains: String + tick_not_contains_nocase: 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_: 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TickHourData_filter] + or: [TickHourData_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__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 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_contains: String + poolAddress_contains_nocase: String + poolAddress_not_contains: String + poolAddress_not_contains_nocase: 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 + 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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Tick_filter] + or: [Tick_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__liquidityProviderCount + liquidityGross + liquidityNet + price0 + price1 + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + feeGrowthOutside0X128 + feeGrowthOutside1X128 +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +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(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!]! + tokenDayData(skip: Int = 0, first: Int = 100, orderBy: TokenDayData_orderBy, orderDirection: OrderDirection, where: TokenDayData_filter): [TokenDayData!]! +} + +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! +} + +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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenDayData_filter] + or: [TokenDayData_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 +} + +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! +} + +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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenHourData_filter] + or: [TokenHourData_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 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_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + 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_contains_nocase: [String!] + whitelistPools_not_contains: [String!] + whitelistPools_not_contains_nocase: [String!] + whitelistPools_: Pool_filter + tokenDayData_: TokenDayData_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + symbol + name + decimals + totalSupply + volume + volumeUSD + untrackedVolumeUSD + feesUSD + txCount + poolCount + totalValueLocked + totalValueLockedUSD + totalValueLockedUSDUntracked + derivedETH + whitelistPools + tokenDayData +} + +type Transaction { + id: ID! + blockNumber: BigInt! + timestamp: BigInt! + gasUsed: BigInt! + gasPrice: BigInt! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! + flashed(skip: Int = 0, first: Int = 100, orderBy: Flash_orderBy, orderDirection: OrderDirection, where: Flash_filter): [Flash!]! + collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! +} + +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 + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + blockNumber + timestamp + gasUsed + gasPrice + mints + burns + swaps + flashed + collects +} + +type UniswapDayData { + id: ID! + date: Int! + volumeETH: BigDecimal! + volumeUSD: BigDecimal! + volumeUSDUntracked: BigDecimal! + feesUSD: BigDecimal! + txCount: BigInt! + tvlUSD: BigDecimal! +} + +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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniswapDayData_filter] + or: [UniswapDayData_filter] +} + +enum UniswapDayData_orderBy { + id + date + volumeETH + volumeUSD + volumeUSDUntracked + feesUSD + txCount + tvlUSD +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts new file mode 100644 index 0000000000..4e69c9fce7 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts @@ -0,0 +1,105 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'sushi-v3'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPriceUSD': { name: 'ethPriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; + 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPriceUSD'; }; + 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: '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__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'; }; + 'Bytes': unknown; + 'Collect': { kind: 'OBJECT'; name: 'Collect'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Collect_filter': { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Collect_orderBy': { name: 'Collect_orderBy'; enumValues: '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__liquidityProviderCount' | 'owner' | 'amount0' | 'amount1' | 'amountUSD' | 'tickLower' | 'tickUpper' | 'logIndex'; }; + 'DecreaseEvent': { kind: 'OBJECT'; name: 'DecreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'DecreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'DecreaseEvent_orderBy': { name: 'DecreaseEvent_orderBy'; enumValues: '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__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'; }; + 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeesETH': { name: 'totalFeesETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeesUSD': { name: 'totalFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETHUntracked': { name: 'totalValueLockedETHUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'poolCount' | 'txCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'totalFeesUSD' | 'totalFeesETH' | 'untrackedVolumeUSD' | 'totalValueLockedUSD' | 'totalValueLockedETH' | 'totalValueLockedUSDUntracked' | 'totalValueLockedETHUntracked' | 'owner'; }; + 'Flash': { kind: 'OBJECT'; name: 'Flash'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Paid': { name: 'amount0Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Paid': { name: 'amount1Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Flash_filter': { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Flash_orderBy': { name: 'Flash_orderBy'; enumValues: '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__liquidityProviderCount' | 'sender' | 'recipient' | 'amount0' | 'amount1' | 'amountUSD' | 'amount0Paid' | 'amount1Paid' | 'logIndex'; }; + 'ID': unknown; + 'IncreaseEvent': { kind: 'OBJECT'; name: 'IncreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'IncreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'IncreaseEvent_orderBy': { name: 'IncreaseEvent_orderBy'; enumValues: '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__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'; }; + 'Int': unknown; + 'Int8': unknown; + 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: '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__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'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeTier': { name: 'feeTier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'observationIndex': { name: 'observationIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken0': { name: 'totalValueLockedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken1': { name: 'totalValueLockedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PoolDayData': { kind: 'OBJECT'; name: 'PoolDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PoolDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PoolDayData_orderBy': { name: 'PoolDayData_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidity' | 'sqrtPrice' | 'token0Price' | 'token1Price' | 'tick' | 'feeGrowthGlobal0X128' | 'feeGrowthGlobal1X128' | 'tvlUSD' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'feesUSD' | 'txCount' | 'open' | 'high' | 'low' | 'close'; }; + 'PoolHourData': { kind: 'OBJECT'; name: 'PoolHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PoolHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PoolHourData_orderBy': { name: 'PoolHourData_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidity' | 'sqrtPrice' | 'token0Price' | 'token1Price' | 'tick' | 'feeGrowthGlobal0X128' | 'feeGrowthGlobal1X128' | 'tvlUSD' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'feesUSD' | 'txCount' | 'open' | 'high' | 'low' | 'close'; }; + 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'feeTier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'poolDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: 'ticks_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: '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' | 'liquidityProviderCount' | 'poolHourData' | 'poolDayData' | 'mints' | 'burns' | 'swaps' | 'collects' | 'ticks'; }; + 'Position': { kind: 'OBJECT'; name: 'Position'; fields: { 'amountCollectedUSD': { name: 'amountCollectedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountDepositedUSD': { name: 'amountDepositedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountWithdrawnUSD': { name: 'amountWithdrawnUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken0': { name: 'collectedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken1': { name: 'collectedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PositionSnapshot': { kind: 'OBJECT'; name: 'PositionSnapshot'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PositionSnapshot_orderBy': { name: 'PositionSnapshot_orderBy'; enumValues: '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__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'; }; + 'Position_filter': { kind: 'INPUT_OBJECT'; name: 'Position_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'increaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: 'decreaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Position_orderBy': { name: 'Position_orderBy'; enumValues: '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__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'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; + 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sqrtPriceX96': { name: 'sqrtPriceX96'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: '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__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'; }; + 'Tick': { kind: 'OBJECT'; name: 'Tick'; fields: { 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'poolAddress': { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'price0': { name: 'price0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'price1': { name: 'price1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tickIdx': { name: 'tickIdx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TickDayData': { kind: 'OBJECT'; name: 'TickDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TickDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TickDayData_orderBy': { name: 'TickDayData_orderBy'; enumValues: '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__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'; }; + 'TickHourData': { kind: 'OBJECT'; name: 'TickHourData'; fields: { 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TickHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TickHourData_orderBy': { name: 'TickHourData_orderBy'; enumValues: '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__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'; }; + 'Tick_filter': { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickIdx'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickIdx_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Tick_orderBy': { name: 'Tick_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidityGross' | 'liquidityNet' | 'price0' | 'price1' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'untrackedVolumeUSD' | 'feesUSD' | 'collectedFeesToken0' | 'collectedFeesToken1' | 'collectedFeesUSD' | 'createdAtTimestamp' | 'createdAtBlockNumber' | 'liquidityProviderCount' | 'feeGrowthOutside0X128' | 'feeGrowthOutside1X128'; }; + 'Timestamp': unknown; + 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistPools': { name: 'whitelistPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; }; }; + 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: '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'; }; + 'TokenHourData': { kind: 'OBJECT'; name: 'TokenHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenHourData_orderBy': { name: 'TokenHourData_orderBy'; enumValues: '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'; }; + 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'volume' | 'volumeUSD' | 'untrackedVolumeUSD' | 'feesUSD' | 'txCount' | 'poolCount' | 'totalValueLocked' | 'totalValueLockedUSD' | 'totalValueLockedUSDUntracked' | 'derivedETH' | 'whitelistPools' | 'tokenDayData'; }; + 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'flashed': { name: 'flashed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'flashed_'; type: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'gasUsed' | 'gasPrice' | 'mints' | 'burns' | 'swaps' | 'flashed' | 'collects'; }; + 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeETH': { name: 'volumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSDUntracked': { name: 'volumeUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'volumeETH' | 'volumeUSD' | 'volumeUSDUntracked' | 'feesUSD' | 'txCount' | 'tvlUSD'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json new file mode 100644 index 0000000000..ef91b628b4 --- /dev/null +++ b/packages/graph-client-new/tsconfig.json @@ -0,0 +1,37 @@ +{ + "extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/esm/tsconfig"], + "include": ["src"], + "compilerOptions": { + "baseUrl": ".", + "outDir": "./dist", + "rootDir": "./src", + "declaration": true, + "resolveJsonModule": true, + "target": "ES2020", + "plugins": [ + { + "name": "@0no-co/graphqlsp", + "schemas": [ + { + "name": "blocks", + "schema": "./src/subgraphs/blocks/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/blocks/blocks-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/blocks/blocks-cache.d.ts" + }, + { + "name": "sushi-v2", + "schema": "./src/subgraphs/sushi-v2/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/sushi-v2/sushi-v2-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/sushi-v2/sushi-v2-cache.d.ts" + }, + { + "name": "sushi-v3", + "schema": "./src/subgraphs/sushi-v3/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/sushi-v3/sushi-v3-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/sushi-v3/sushi-v3-cache.d.ts" + }, + ] + } + ] + } +} \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index f52b631010..a76e10e232 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1791,6 +1791,58 @@ importers: specifier: 5.2.2 version: 5.2.2 + packages/graph-client-new: + dependencies: + '@sushiswap/graph-config': + specifier: workspace:* + version: link:../../config/graph + '@wagmi/core': + specifier: 2.10.2 + version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) + gql.tada: + specifier: ^1.7.5 + version: 1.7.5(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2) + graphql-request: + specifier: ^7.0.1 + version: 7.0.1(graphql@16.6.0) + sushi: + specifier: workspace:* + version: link:../sushi + devDependencies: + '@0no-co/graphqlsp': + specifier: ^1.12.3 + version: 1.12.3(graphql@16.6.0)(typescript@5.2.2) + '@sushiswap/jest-config': + specifier: workspace:* + version: link:../../config/jest + '@tsconfig/esm': + specifier: 1.0.4 + version: 1.0.4 + '@tsconfig/strictest': + specifier: 2.0.2 + version: 2.0.2 + '@types/node': + specifier: '20' + version: 20.12.7 + eslint: + specifier: 8.43.0 + version: 8.43.0 + fetch-graphql-schema: + specifier: ^0.2.1 + version: 0.2.1 + graphql-fetch-schema: + specifier: ^1.1.0 + version: 1.1.0 + graphql-js-schema-fetch: + specifier: ^1.1.2 + version: 1.1.2 + tsx: + specifier: ^4.7.1 + version: 4.7.1 + typescript: + specifier: 5.2.2 + version: 5.2.2 + packages/hooks: dependencies: '@ethersproject/address': @@ -2546,6 +2598,26 @@ importers: packages: + /@0no-co/graphql.web@1.0.7(graphql@16.6.0): + resolution: {integrity: sha512-E3Qku4mTzdrlwVWGPxklDnME5ANrEGetvYw4i2GCRlppWXXE4QD66j7pwb8HelZwS6LnqEChhrSOGCXpbiu6MQ==} + peerDependencies: + graphql: 16.6.0 + peerDependenciesMeta: + graphql: + optional: true + dependencies: + graphql: 16.6.0 + + /@0no-co/graphqlsp@1.12.3(graphql@16.6.0)(typescript@5.2.2): + resolution: {integrity: sha512-U0hV/FmFgm2perV+mrXKe/7Z5F4/9rmOziHJYYQgKLwzUVuN5LQG0qs3cLBGxAqoosG0HfTi2cQkgMKY1CMbYQ==} + peerDependencies: + graphql: 16.6.0 + typescript: 5.2.2 + dependencies: + '@gql.tada/internal': 1.0.0(graphql@16.6.0)(typescript@5.2.2) + graphql: 16.6.0 + typescript: 5.2.2 + /@0xsquid/sdk@2.8.10: resolution: {integrity: sha512-0/H7SmhYW/EzXqu4Ao0WTTE1SJpEO8o4ddj7MC4TSJLQK64msakXAUXm6ez3rtleoqBrIpxookTfOOCgiYkvJg==} dependencies: @@ -3011,7 +3083,7 @@ packages: '@babel/core': 7.23.2 '@babel/generator': 7.23.0 '@babel/parser': 7.23.0 - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 '@babel/traverse': 7.22.10 '@babel/types': 7.23.0 babel-preset-fbjs: 3.4.0(@babel/core@7.23.2) @@ -3034,7 +3106,9 @@ packages: resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} engines: {node: '>=14'} dependencies: - node-fetch: 2.6.6 + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding /@artilleryio/int-commons@2.0.4: resolution: {integrity: sha512-pi4hkKhpT7pyydH7GxZGWnYM+a2fM1WysCDlKsH7UJTy2xqlqmujd5iY+G/74NHsxQUxd8osAHFu+bnkbjMinw==} @@ -6558,6 +6632,7 @@ packages: engines: {node: '>=6.9.0'} dependencies: regenerator-runtime: 0.14.1 + dev: false /@babel/runtime@7.24.5: resolution: {integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==} @@ -7383,6 +7458,70 @@ packages: resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} + /@dprint/darwin-arm64@0.45.1: + resolution: {integrity: sha512-pH0/uKLJ5SJPoHhOwLWFMhCmL0BY3FzWQbull8OGMK/FRkIPgOl2adZSovtUZpUMGWyDOzIWH1fW9X2DuMhnEg==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@dprint/darwin-x64@0.45.1: + resolution: {integrity: sha512-YUj421LmBLDlxpIER3pORKfQmpmXD50n5mClHjpZrnl17WTiHtQ+jHvDJdJoxH2eS66W0mQyxLoGo5SfFfiM7A==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: false + optional: true + + /@dprint/formatter@0.3.0: + resolution: {integrity: sha512-N9fxCxbaBOrDkteSOzaCqwWjso5iAe+WJPsHC021JfHNj2ThInPNEF13ORDKta3llq5D1TlclODCvOvipH7bWQ==} + dev: false + + /@dprint/linux-arm64-glibc@0.45.1: + resolution: {integrity: sha512-lJ7s/pOQWRJ0mstjZQnVyX2/3QRXZ9cpFHJDZ7e81Y8QSn/iqxTrnK0DPgxUrDG8hYKQmWQdQLU4sP5DKBz0Jg==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@dprint/linux-arm64-musl@0.45.1: + resolution: {integrity: sha512-un2awe1L1sAJLsCPSEUrE0/cgupdzbYFoyBOutyU1zHR9KQn47AtIDw+chvuinU4xleHDuEGyXGuJ6NE+Ky6vw==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@dprint/linux-x64-glibc@0.45.1: + resolution: {integrity: sha512-5Civht90S/g8zlyYB7n4oH78p+sLbNqeFCFuImJRK7uRxZwCRya7lji6RwlB6DQ7qngVqovTHj9RLOYfZzfVlg==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@dprint/linux-x64-musl@0.45.1: + resolution: {integrity: sha512-p2/gjnHDd8GRCvtey5HZO4o/He6pSmY/zpcCuIXprFW9P0vNlEj3DFhz4FPpOKXM+csrsVWWs2E0T/xr5QZtVg==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: false + optional: true + + /@dprint/typescript@0.90.5: + resolution: {integrity: sha512-/1aP6saonFvJyQN3l2is6eTOec3GnLGyW+opid/eDm8pnlhwzYl8A9p36pI6WO5jLl/a9Ghod+LWpvSOuXFGUw==} + dev: false + + /@dprint/win32-x64@0.45.1: + resolution: {integrity: sha512-2l78XM7KsW46P2Yv6uPB3fE+y92EsBlrCxi+RVQ0pbznPFdMdkLyGgaCuh683zdld14jHlaADpIQ7YchGAEMAg==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: false + optional: true + /@edge-runtime/cookies@3.4.1: resolution: {integrity: sha512-z27BvgPxI73CgSlxU/NAUf1Q/shnqi6cobHEowf6VuLdSjGR3NjI2Y5dZUIBbK2zOJVZbXcHsVzJjz8LklteFQ==} engines: {node: '>=16'} @@ -7580,7 +7719,6 @@ packages: cpu: [ppc64] os: [aix] requiresBuild: true - dev: false optional: true /@esbuild/android-arm64@0.17.19: @@ -7606,7 +7744,6 @@ packages: cpu: [arm64] os: [android] requiresBuild: true - dev: false optional: true /@esbuild/android-arm@0.17.19: @@ -7632,7 +7769,6 @@ packages: cpu: [arm] os: [android] requiresBuild: true - dev: false optional: true /@esbuild/android-x64@0.17.19: @@ -7658,7 +7794,6 @@ packages: cpu: [x64] os: [android] requiresBuild: true - dev: false optional: true /@esbuild/darwin-arm64@0.17.19: @@ -7684,7 +7819,6 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true - dev: false optional: true /@esbuild/darwin-x64@0.17.19: @@ -7710,7 +7844,6 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true - dev: false optional: true /@esbuild/freebsd-arm64@0.17.19: @@ -7736,7 +7869,6 @@ packages: cpu: [arm64] os: [freebsd] requiresBuild: true - dev: false optional: true /@esbuild/freebsd-x64@0.17.19: @@ -7762,7 +7894,6 @@ packages: cpu: [x64] os: [freebsd] requiresBuild: true - dev: false optional: true /@esbuild/linux-arm64@0.17.19: @@ -7788,7 +7919,6 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-arm@0.17.19: @@ -7814,7 +7944,6 @@ packages: cpu: [arm] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-ia32@0.17.19: @@ -7840,7 +7969,6 @@ packages: cpu: [ia32] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-loong64@0.17.19: @@ -7866,7 +7994,6 @@ packages: cpu: [loong64] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-mips64el@0.17.19: @@ -7892,7 +8019,6 @@ packages: cpu: [mips64el] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-ppc64@0.17.19: @@ -7918,7 +8044,6 @@ packages: cpu: [ppc64] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-riscv64@0.17.19: @@ -7944,7 +8069,6 @@ packages: cpu: [riscv64] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-s390x@0.17.19: @@ -7970,7 +8094,6 @@ packages: cpu: [s390x] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/linux-x64@0.17.19: @@ -7996,7 +8119,6 @@ packages: cpu: [x64] os: [linux] requiresBuild: true - dev: false optional: true /@esbuild/netbsd-x64@0.17.19: @@ -8022,7 +8144,6 @@ packages: cpu: [x64] os: [netbsd] requiresBuild: true - dev: false optional: true /@esbuild/openbsd-x64@0.17.19: @@ -8048,7 +8169,6 @@ packages: cpu: [x64] os: [openbsd] requiresBuild: true - dev: false optional: true /@esbuild/sunos-x64@0.17.19: @@ -8074,7 +8194,6 @@ packages: cpu: [x64] os: [sunos] requiresBuild: true - dev: false optional: true /@esbuild/win32-arm64@0.17.19: @@ -8100,7 +8219,6 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true - dev: false optional: true /@esbuild/win32-ia32@0.17.19: @@ -8126,7 +8244,6 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true - dev: false optional: true /@esbuild/win32-x64@0.17.19: @@ -8152,7 +8269,6 @@ packages: cpu: [x64] os: [win32] requiresBuild: true - dev: false optional: true /@eslint-community/eslint-utils@4.4.0(eslint@8.41.0): @@ -8191,23 +8307,7 @@ packages: /@eslint-community/regexpp@4.9.1: resolution: {integrity: sha512-Y27x+MBLjXa+0JWDhykM3+JE+il3kHKAEqabfEWq3SDhZjLYb6/BHL/JKFnH3fe207JaXkyDo685Oc2Glt6ifA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} - - /@eslint/eslintrc@2.1.2: - resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - dependencies: - ajv: 6.12.6 - debug: 4.3.4(supports-color@8.1.1) - espree: 9.6.1 - globals: 13.22.0 - ignore: 5.2.4 - import-fresh: 3.3.0 - js-yaml: 4.1.0 - minimatch: 3.1.2 - strip-json-comments: 3.1.1 - transitivePeerDependencies: - - supports-color - dev: true + dev: false /@eslint/eslintrc@2.1.4: resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} @@ -8720,6 +8820,33 @@ packages: resolution: {integrity: sha512-cqBEayOWZqERrWnwDUTyUsClZpN1Pv3w/1+NRxwKV4sRdy3RyyRL9DRIgauq8ySxNtJ5ZkNimxsZzCdoiR2Fcw==} dev: false + /@gql.tada/cli-utils@1.3.9(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2): + resolution: {integrity: sha512-oRb7SG/+csx9CiypSJTI21KaLfulOUnhX1vxg4FXi2snub9XShkGR2XnnlJVTAOZXY9Vcxti1NutAElxdDkycA==} + peerDependencies: + graphql: 16.6.0 + typescript: 5.2.2 + dependencies: + '@0no-co/graphqlsp': 1.12.3(graphql@16.6.0)(typescript@5.2.2) + '@gql.tada/internal': 1.0.0(graphql@16.6.0)(typescript@5.2.2) + '@vue/compiler-dom': 3.4.27 + '@vue/language-core': 2.0.19(typescript@5.2.2) + graphql: 16.6.0 + svelte2tsx: 0.7.8(svelte@4.2.17)(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - svelte + dev: false + + /@gql.tada/internal@1.0.0(graphql@16.6.0)(typescript@5.2.2): + resolution: {integrity: sha512-B55aIYyZn5ewdgMqoJciPAwF5DKYX6HBabTU+ap/dpNH3EgJrLomc8Y8w+MCxCyOx+dXL9OduT6eWnVr7J7Eyg==} + peerDependencies: + graphql: 16.6.0 + typescript: 5.2.2 + dependencies: + '@0no-co/graphql.web': 1.0.7(graphql@16.6.0) + graphql: 16.6.0 + typescript: 5.2.2 + /@graphprotocol/client-add-source-name@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0): resolution: {integrity: sha512-3vX8mVPIEJFwAoRhjTPd9IjQrBuE+Gv+JB7IEf8/9222qiU9EzHVFUekKxVtcxQXD40CfageS41CxOreWQ1enA==} engines: {node: '>=16.0.0'} @@ -9595,6 +9722,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -9624,6 +9752,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -9654,6 +9783,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -9684,6 +9814,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -9714,6 +9845,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: true @@ -11110,6 +11242,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -11135,6 +11268,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -11161,6 +11295,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate /@graphql-tools/url-loader@8.0.0(@types/node@20.12.7)(graphql@16.6.0): @@ -11186,6 +11321,7 @@ packages: transitivePeerDependencies: - '@types/node' - bufferutil + - encoding - utf-8-validate dev: false @@ -11436,17 +11572,6 @@ packages: react-hook-form: 7.41.2(react@18.2.0) dev: false - /@humanwhocodes/config-array@0.11.11: - resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} - engines: {node: '>=10.10.0'} - dependencies: - '@humanwhocodes/object-schema': 1.2.1 - debug: 4.3.4(supports-color@8.1.1) - minimatch: 3.1.2 - transitivePeerDependencies: - - supports-color - dev: true - /@humanwhocodes/config-array@0.11.14: resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} @@ -11461,10 +11586,6 @@ packages: resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} engines: {node: '>=12.22'} - /@humanwhocodes/object-schema@1.2.1: - resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} - dev: true - /@humanwhocodes/object-schema@2.0.3: resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} @@ -12134,7 +12255,7 @@ packages: detect-libc: 2.0.2 https-proxy-agent: 5.0.1 make-dir: 3.1.0 - node-fetch: 2.6.12 + node-fetch: 2.7.0 nopt: 5.0.0 npmlog: 5.0.1 rimraf: 3.0.2 @@ -12452,6 +12573,28 @@ packages: resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==} dev: false + /@molt/command@0.9.0: + resolution: {integrity: sha512-1JI8dAlpqlZoXyKWVQggX7geFNPxBpocHIXQCsnxDjKy+3WX4SGyZVJXuLlqRRrX7FmQCuuMAfx642ovXmPA9g==} + dependencies: + '@molt/types': 0.2.0 + alge: 0.8.1 + chalk: 5.3.0 + lodash.camelcase: 4.3.0 + lodash.snakecase: 4.1.1 + readline-sync: 1.4.10 + string-length: 6.0.0 + strip-ansi: 7.1.0 + ts-toolbelt: 9.6.0 + type-fest: 4.18.2 + zod: 3.23.8 + dev: false + + /@molt/types@0.2.0: + resolution: {integrity: sha512-p6ChnEZDGjg9PYPec9BK6Yp5/DdSrYQvXTBAtgrnqX6N36cZy37ql1c8Tc5LclfIYBNG7EZp8NBcRTYJwyi84g==} + dependencies: + ts-toolbelt: 9.6.0 + dev: false + /@motionone/animation@10.15.1: resolution: {integrity: sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==} dependencies: @@ -13090,7 +13233,7 @@ packages: dependencies: dockerode: 2.5.8 fs-extra: 7.0.1 - node-fetch: 2.6.12 + node-fetch: 2.7.0 transitivePeerDependencies: - encoding - supports-color @@ -13490,7 +13633,7 @@ packages: '@octokit/request-error': 3.0.3 '@octokit/types': 9.3.2 is-plain-object: 5.0.0 - node-fetch: 2.6.12 + node-fetch: 2.7.0 universal-user-agent: 6.0.0 transitivePeerDependencies: - encoding @@ -14244,7 +14387,7 @@ packages: /@radix-ui/primitive@1.0.0: resolution: {integrity: sha512-3e7rn8FDMin4CgeL7Z/49smCA3rFYY3Ha2rUQ7HRWFadS5iCRw08ZgVT1LaNTCNqgvrUiyczLflrVrF0SRQtNA==} dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 dev: false /@radix-ui/primitive@1.0.1: @@ -14294,7 +14437,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@types/react': 18.2.14 '@types/react-dom': 18.2.6 @@ -14409,7 +14552,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 react: 18.2.0 dev: false @@ -14457,7 +14600,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 react: 18.2.0 dev: false @@ -14554,7 +14697,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.0 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) @@ -14577,7 +14720,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) @@ -14620,7 +14763,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 react: 18.2.0 dev: false @@ -14643,7 +14786,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) @@ -14715,7 +14858,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -14875,7 +15018,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@floating-ui/react-dom': 2.0.1(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -14897,7 +15040,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-primitive': 1.0.0(react-dom@18.2.0)(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -14929,7 +15072,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) '@radix-ui/react-use-layout-effect': 1.0.0(react@18.2.0) react: 18.2.0 @@ -14964,7 +15107,7 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-slot': 1.0.0(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -15108,6 +15251,47 @@ packages: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) + dev: false + + /@radix-ui/react-select@1.2.2(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==} + peerDependencies: + '@types/react': 18.2.14 + '@types/react-dom': 18.2.6 + react: ^16.8 || ^17.0 || ^18.0 + react-dom: ^16.8 || ^17.0 || ^18.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + dependencies: + '@babel/runtime': 7.24.5 + '@radix-ui/number': 1.0.1 + '@radix-ui/primitive': 1.0.1 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.4(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-popper': 1.1.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.14)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.14 + aria-hidden: 1.2.3 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.14)(react@18.2.0) + dev: true /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} @@ -15165,7 +15349,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-compose-refs': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -15252,7 +15436,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -15300,7 +15484,7 @@ packages: '@types/react-dom': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 '@radix-ui/primitive': 1.0.1 '@radix-ui/react-context': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@radix-ui/react-direction': 1.0.1(@types/react@18.2.14)(react@18.2.0) @@ -15350,7 +15534,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 react: 18.2.0 dev: false @@ -15372,7 +15556,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -15396,7 +15580,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-use-callback-ref': 1.0.0(react@18.2.0) react: 18.2.0 dev: false @@ -15410,7 +15594,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.14)(react@18.2.0) '@types/react': 18.2.14 react: 18.2.0 @@ -15420,7 +15604,7 @@ packages: peerDependencies: react: ^16.8 || ^17.0 || ^18.0 dependencies: - '@babel/runtime': 7.24.1 + '@babel/runtime': 7.24.5 react: 18.2.0 dev: false @@ -15459,7 +15643,7 @@ packages: '@types/react': optional: true dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 '@radix-ui/rect': 1.0.1 '@types/react': 18.2.14 react: 18.2.0 @@ -15501,7 +15685,7 @@ packages: /@radix-ui/rect@1.0.1: resolution: {integrity: sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 /@rc-component/async-validator@5.0.3: resolution: {integrity: sha512-eN5chKrc0ANerXjLJuoqh/YJpor0u4T1bgaph5BPh42cJ2afDihaHJ2Mh3Up3XIFk05EfKG4nIQxbqC6y2eM4Q==} @@ -17470,6 +17654,7 @@ packages: transitivePeerDependencies: - '@types/react' - '@types/react-dom' + - encoding - supports-color dev: true @@ -17531,6 +17716,7 @@ packages: transitivePeerDependencies: - '@types/react' - '@types/react-dom' + - encoding - supports-color dev: true @@ -17559,6 +17745,7 @@ packages: transitivePeerDependencies: - '@types/react' - '@types/react-dom' + - encoding - supports-color dev: true @@ -17704,6 +17891,7 @@ packages: transitivePeerDependencies: - '@types/react' - '@types/react-dom' + - encoding - fibers - node-sass - sass @@ -17824,6 +18012,7 @@ packages: transitivePeerDependencies: - '@types/react' - '@types/react-dom' + - encoding - supports-color dev: true @@ -17847,6 +18036,7 @@ packages: process: 0.11.10 util: 0.12.5 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -17887,6 +18077,7 @@ packages: typescript: 5.2.2 vite: 4.3.9(@types/node@20.10.0)(less@4.2.0) transitivePeerDependencies: + - encoding - supports-color dev: true @@ -17970,6 +18161,7 @@ packages: util-deprecate: 1.0.2 transitivePeerDependencies: - bufferutil + - encoding - supports-color - utf-8-validate dev: true @@ -18019,7 +18211,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-select': 1.2.2(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@storybook/client-logger': 7.3.1 '@storybook/csf': 0.1.1 @@ -18043,7 +18235,7 @@ packages: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - '@radix-ui/react-select': 1.2.2(@types/react-dom@18.2.6)(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-select': 1.2.2(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toolbar': 1.0.4(@types/react@18.2.14)(react-dom@18.2.0)(react@18.2.0) '@storybook/client-logger': 7.4.6 '@storybook/csf': 0.1.1 @@ -18086,13 +18278,14 @@ packages: glob: 10.3.10 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 - node-fetch: 2.6.6 + node-fetch: 2.7.0 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 resolve-from: 5.0.0 ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -18116,13 +18309,14 @@ packages: glob: 10.3.10 handlebars: 4.7.8 lazy-universal-dotenv: 4.0.0 - node-fetch: 2.6.6 + node-fetch: 2.7.0 picomatch: 2.3.1 pkg-dir: 5.0.0 pretty-hrtime: 1.0.3 resolve-from: 5.0.0 ts-dedent: 2.2.0 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -18188,6 +18382,7 @@ packages: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) transitivePeerDependencies: - bufferutil + - encoding - supports-color - utf-8-validate dev: true @@ -18249,6 +18444,7 @@ packages: doctrine: 3.0.0 lodash: 4.17.21 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -18432,6 +18628,7 @@ packages: vite: 4.3.9(@types/node@20.10.0)(less@4.2.0) transitivePeerDependencies: - '@preact/preset-vite' + - encoding - rollup - supports-color - typescript @@ -18474,6 +18671,7 @@ packages: typescript: 5.2.2 util-deprecate: 1.0.2 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -18523,6 +18721,7 @@ packages: fs-extra: 11.1.1 read-pkg-up: 7.0.1 transitivePeerDependencies: + - encoding - supports-color dev: true @@ -19038,7 +19237,6 @@ packages: /@tsconfig/esm@1.0.4: resolution: {integrity: sha512-bix9CWljCxyD06nGQRDYdmTw0wevvEDyrLKjbDocGV31JQYbfqqgMV1yFeJ9aDgorKQ9yDLrak8poiggsB5Liw==} - deprecated: Use the tsconfig base for your runtime instead of general 'esm', e.g. 'node18' dev: true /@tsconfig/next@2.0.1: @@ -19267,7 +19465,7 @@ packages: /@types/cors@2.8.13: resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} dependencies: - '@types/node': 20.10.0 + '@types/node': 20.12.7 dev: true /@types/cross-spawn@6.0.2: @@ -20524,18 +20722,24 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@upstash/redis': 1.22.1 + transitivePeerDependencies: + - encoding dev: false /@upstash/ratelimit@0.4.4: resolution: {integrity: sha512-y3q6cNDdcRQ2MRPRf5UNWBN36IwnZ4kAEkGoH3i6OqdWwz4qlBxNsw4/Rpqn9h93+Nx1cqg5IOq7O2e2zMJY1w==} dependencies: '@upstash/core-analytics': 0.0.6 + transitivePeerDependencies: + - encoding dev: false /@upstash/redis@1.22.1: resolution: {integrity: sha512-7ec2eCMkVxZzuHNb+hPKonX4b/Pu0BdDeSBsEy+jKIqiweXzCs5Dpu9642vJgf57YnEsfwgXnQMVEataarvyeQ==} dependencies: isomorphic-fetch: 3.0.0 + transitivePeerDependencies: + - encoding /@vercel/analytics@0.1.5(react@18.2.0): resolution: {integrity: sha512-/k9N8Ea3Yc5A52GlkjzUEbi2vE/izClrOf++ryBkxEfrZM/OZwtHkdNw/QExZ1h/B67RCZLK7bCOnKKrhG7gTg==} @@ -20866,6 +21070,57 @@ packages: pretty-format: 29.7.0 dev: true + /@volar/language-core@2.2.5: + resolution: {integrity: sha512-2htyAuxRrAgETmFeUhT4XLELk3LiEcqoW/B8YUXMF6BrGWLMwIR09MFaZYvrA2UhbdAeSyeQ726HaWSWkexUcQ==} + dependencies: + '@volar/source-map': 2.2.5 + dev: false + + /@volar/source-map@2.2.5: + resolution: {integrity: sha512-wrOEIiZNf4E+PWB0AxyM4tfhkfldPsb3bxg8N6FHrxJH2ohar7aGu48e98bp3pR9HUA7P/pR9VrLmkTrgCCnWQ==} + dependencies: + muggle-string: 0.4.1 + dev: false + + /@vue/compiler-core@3.4.27: + resolution: {integrity: sha512-E+RyqY24KnyDXsCuQrI+mlcdW3ALND6U7Gqa/+bVwbcpcR3BRRIckFoz7Qyd4TTlnugtwuI7YgjbvsLmxb+yvg==} + dependencies: + '@babel/parser': 7.24.4 + '@vue/shared': 3.4.27 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.0 + dev: false + + /@vue/compiler-dom@3.4.27: + resolution: {integrity: sha512-kUTvochG/oVgE1w5ViSr3KUBh9X7CWirebA3bezTbB5ZKBQZwR2Mwj9uoSKRMFcz4gSMzzLXBPD6KpCLb9nvWw==} + dependencies: + '@vue/compiler-core': 3.4.27 + '@vue/shared': 3.4.27 + dev: false + + /@vue/language-core@2.0.19(typescript@5.2.2): + resolution: {integrity: sha512-A9EGOnvb51jOvnCYoRLnMP+CcoPlbZVxI9gZXE/y2GksRWM6j/PrLEIC++pnosWTN08tFpJgxhSS//E9v/Sg+Q==} + peerDependencies: + typescript: 5.2.2 + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@volar/language-core': 2.2.5 + '@vue/compiler-dom': 3.4.27 + '@vue/shared': 3.4.27 + computeds: 0.0.1 + minimatch: 9.0.3 + path-browserify: 1.0.1 + typescript: 5.2.2 + vue-template-compiler: 2.7.16 + dev: false + + /@vue/shared@3.4.27: + resolution: {integrity: sha512-DL3NmY2OFlqmYYrzp39yi3LDkKxa5vZVwxWdQ3rG0ekuWscHraeIbnI8t+aZK7qhYqEqWKTUdijadunb9pnrgA==} + dev: false + /@wagmi/connectors@5.0.2(@types/react@18.2.14)(@upstash/redis@1.22.1)(@wagmi/core@2.10.2)(react-dom@18.2.0)(react-i18next@13.5.0)(react-native@0.73.7)(react@18.2.0)(rollup@3.29.4)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4): resolution: {integrity: sha512-2YgcgVn6S8kuOe/PVweK0ucxNqO651VqlPWD+MrPxEVwcpEPLNKvtrYdLRDTSnwwUEqEzgnDwEAhcrniK76+Kw==} peerDependencies: @@ -21633,7 +21888,7 @@ packages: busboy: 1.6.0 form-data-encoder: 1.9.0 formdata-node: 4.4.1 - node-fetch: 2.6.12 + node-fetch: 2.7.0 undici: 5.26.5 web-streams-polyfill: 3.2.1 transitivePeerDependencies: @@ -21648,7 +21903,7 @@ packages: busboy: 1.6.0 form-data-encoder: 1.9.0 formdata-node: 4.4.1 - node-fetch: 2.6.12 + node-fetch: 2.7.0 undici: 5.26.5 web-streams-polyfill: 3.2.1 transitivePeerDependencies: @@ -21899,6 +22154,14 @@ packages: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 dependencies: acorn: 8.10.0 + dev: false + + /acorn-jsx@5.3.2(acorn@8.11.3): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.11.3 /acorn-node@1.8.2: resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==} @@ -22068,6 +22331,15 @@ packages: require-from-string: 2.0.2 uri-js: 4.4.1 + /alge@0.8.1: + resolution: {integrity: sha512-kiV9nTt+XIauAXsowVygDxMZLplZxDWt0W8plE/nB32/V2ziM/P/TxDbSVK7FYIUt2Xo16h3/htDh199LNPCKQ==} + dependencies: + lodash.ismatch: 4.4.0 + remeda: 1.56.0 + ts-toolbelt: 9.6.0 + zod: 3.21.4 + dev: false + /amdefine@1.0.1: resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} engines: {node: '>=0.4.2'} @@ -22386,6 +22658,11 @@ packages: call-bind: 1.0.7 is-array-buffer: 3.0.4 + /array-find-index@1.0.2: + resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} + engines: {node: '>=0.10.0'} + dev: true + /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -22944,6 +23221,12 @@ packages: dependencies: dequal: 2.0.3 + /axobject-query@4.0.0: + resolution: {integrity: sha512-+60uv1hiVFhHZeO+Lz0RYzsVHy5Wr1ayX0mwda9KPDVLNJgZ1T9Ny7VmFbLDzxsH0D87I86vgj3gFrjTJUYznw==} + dependencies: + dequal: 2.0.3 + dev: false + /b4a@1.6.4: resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==} dev: false @@ -23200,7 +23483,7 @@ packages: resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} engines: {node: '>=10', npm: '>=6'} dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 cosmiconfig: 7.1.0 resolve: 1.22.8 dev: false @@ -23666,7 +23949,7 @@ packages: '@babel/preset-env': 7.24.4(@babel/core@7.24.4) '@babel/preset-react': 7.24.1(@babel/core@7.24.4) '@babel/preset-typescript': 7.22.5(@babel/core@7.24.4) - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 babel-plugin-macros: 3.1.0 babel-plugin-transform-react-remove-prop-types: 0.4.24 transitivePeerDependencies: @@ -24421,6 +24704,14 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} + /camelcase-keys@2.1.0: + resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} + engines: {node: '>=0.10.0'} + dependencies: + camelcase: 2.1.1 + map-obj: 1.0.1 + dev: true + /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} @@ -24430,6 +24721,11 @@ packages: quick-lru: 4.0.1 dev: true + /camelcase@2.1.1: + resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} + engines: {node: '>=0.10.0'} + dev: true + /camelcase@3.0.0: resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==} engines: {node: '>=0.10.0'} @@ -24565,6 +24861,11 @@ packages: engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} dev: true + /chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + dev: false + /change-case-all@1.0.14: resolution: {integrity: sha512-CWVm2uT7dmSHdO/z1CXT/n47mWonyypzBbuCy5tN7uMg22BsfkhwT6oHmFCAk+gL1LOOxhdbB9SZz3J1KTY3gA==} dependencies: @@ -25047,6 +25348,16 @@ packages: resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==} engines: {node: '>=0.10.0'} + /code-red@1.0.4: + resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + '@types/estree': 1.0.5 + acorn: 8.11.3 + estree-walker: 3.0.3 + periscopic: 3.1.0 + dev: false + /collect-v8-coverage@1.0.2: resolution: {integrity: sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==} @@ -25234,6 +25545,10 @@ packages: resolution: {integrity: sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==} dev: false + /computeds@0.0.1: + resolution: {integrity: sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==} + dev: false + /concat-map@0.0.1: resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} @@ -25604,14 +25919,14 @@ packages: /cross-fetch@3.1.8: resolution: {integrity: sha512-cvA+JwZoU0Xq+h6WkMvAUqPEYy92Obet6UdKLfW60qn99ftItKjB5T+BkyWOFWe2pUyfQ+IJHmpOTznqk1M6Kg==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0 transitivePeerDependencies: - encoding /cross-fetch@4.0.0: resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0 transitivePeerDependencies: - encoding @@ -25810,6 +26125,14 @@ packages: source-map: 0.6.1 dev: false + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.2.0 + dev: false + /css-what@3.4.2: resolution: {integrity: sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==} engines: {node: '>= 6'} @@ -25938,6 +26261,13 @@ packages: stream-transform: 2.1.3 dev: true + /currently-unhandled@0.4.1: + resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} + engines: {node: '>=0.10.0'} + dependencies: + array-find-index: 1.0.2 + dev: true + /d3-array@3.2.4: resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} engines: {node: '>=12'} @@ -26292,6 +26622,10 @@ packages: /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + /de-indent@1.0.2: + resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} + dev: false + /death@1.1.0: resolution: {integrity: sha512-vsV6S4KVHvTGxbEcij7hkWRv0It+sGGWVOM67dQde/o5Xjnr+KmLjxWJii2uEObIrt1CcM9w0Yaovx+iOlIL+w==} dev: true @@ -26413,6 +26747,10 @@ packages: dependencies: mimic-response: 3.1.0 + /dedent-js@1.0.1: + resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} + dev: false + /dedent@0.7.0: resolution: {integrity: sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==} dev: false @@ -27140,6 +27478,20 @@ packages: dependencies: minimatch: 3.1.2 + /dprint@0.45.1: + resolution: {integrity: sha512-OYefcDgxd6jSdig/Cfkw1vdvyiOIRruCPnqGBbXpc95buDt9kvwL+Lic1OHc+SaQSsQub0BUZMd5+TNgy8Sh3A==} + hasBin: true + requiresBuild: true + optionalDependencies: + '@dprint/darwin-arm64': 0.45.1 + '@dprint/darwin-x64': 0.45.1 + '@dprint/linux-arm64-glibc': 0.45.1 + '@dprint/linux-arm64-musl': 0.45.1 + '@dprint/linux-x64-glibc': 0.45.1 + '@dprint/linux-x64-musl': 0.45.1 + '@dprint/win32-x64': 0.45.1 + dev: false + /driftless@2.0.3: resolution: {integrity: sha512-hSDKsQphnL4O0XLAiyWQ8EiM9suXH0Qd4gMtwF86b5wygGV8r95w0JcA38FOmx9N3LjFCIHLG2winLPNken4Tg==} dependencies: @@ -28013,7 +28365,6 @@ packages: '@esbuild/win32-arm64': 0.19.12 '@esbuild/win32-ia32': 0.19.12 '@esbuild/win32-x64': 0.19.12 - dev: false /escalade@3.1.1: resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} @@ -28953,10 +29304,10 @@ packages: hasBin: true dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.43.0) - '@eslint-community/regexpp': 4.9.1 - '@eslint/eslintrc': 2.1.2 + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 '@eslint/js': 8.43.0 - '@humanwhocodes/config-array': 0.11.11 + '@humanwhocodes/config-array': 0.11.14 '@humanwhocodes/module-importer': 1.0.1 '@nodelib/fs.walk': 1.2.8 ajv: 6.12.6 @@ -28976,7 +29327,7 @@ packages: glob-parent: 6.0.2 globals: 13.22.0 graphemer: 1.4.0 - ignore: 5.2.4 + ignore: 5.3.1 import-fresh: 3.3.0 imurmurhash: 0.1.4 is-glob: 4.0.3 @@ -29054,8 +29405,8 @@ packages: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dependencies: - acorn: 8.10.0 - acorn-jsx: 5.3.2(acorn@8.10.0) + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) eslint-visitor-keys: 3.4.3 /esprima@1.2.2: @@ -29127,6 +29478,12 @@ packages: /estree-walker@2.0.2: resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.5 + dev: false + /esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -30011,6 +30368,18 @@ packages: pend: 1.2.0 dev: true + /fetch-graphql-schema@0.2.1: + resolution: {integrity: sha512-XtP692mntCOZRVOnAkZcco3W+2LprOl5Jk3Y0lKG5PJfnnj5Ict/vhMevQT15Dfdt7SZMjLGdr4fD7PbDQXEoQ==} + engines: {node: '>=0.12.0'} + hasBin: true + dependencies: + chalk: 1.1.3 + graphql: 16.6.0 + meow: 3.7.0 + mkdirp: 0.5.6 + node-fetch: 1.7.3 + dev: true + /fetch-ponyfill@4.1.0: resolution: {integrity: sha512-knK9sGskIg2T7OnYLdZ2hZXn0CtDrAIBxYQLpmEf0BqfdWnwmM1weccUl5+4EdA44tzNSFAuxITPbXtPehUB3g==} dependencies: @@ -30806,6 +31175,11 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true + /get-stdin@4.0.1: + resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} + engines: {node: '>=0.10.0'} + dev: true + /get-stdin@9.0.0: resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} engines: {node: '>=12'} @@ -30852,7 +31226,6 @@ packages: resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} dependencies: resolve-pkg-maps: 1.0.0 - dev: false /get-uri@6.0.1: resolution: {integrity: sha512-7ZqONUVqaabogsYNWlYj0t3YZaL6dhuEueZXGF+/YVmf6dHmaFg8/6psJKqhx9QykIDKzpGcy2cn4oV4YC7V/Q==} @@ -31164,6 +31537,21 @@ packages: url-parse-lax: 3.0.0 optional: true + /gql.tada@1.7.5(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2): + resolution: {integrity: sha512-GepPTee+FWSVVZQ7GiJHzsGNo7gOb59kcn4mUPYLlkbpeJfOUwpuoB05ZNaXG0W4qZVPd1I7R2UgMHBjY1lGlQ==} + hasBin: true + peerDependencies: + typescript: 5.2.2 + dependencies: + '@0no-co/graphql.web': 1.0.7(graphql@16.6.0) + '@gql.tada/cli-utils': 1.3.9(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2) + '@gql.tada/internal': 1.0.0(graphql@16.6.0)(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - graphql + - svelte + dev: false + /graceful-fs@4.2.11: resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} @@ -31174,6 +31562,19 @@ packages: /graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + /graphql-fetch-schema@1.1.0: + resolution: {integrity: sha512-uBUq1hg5x9VHywd7C9a1J/CVR0C3CPxJljx4qeZMFrT/LT1MTuK74lQjDQVUwXxj8lcwSpnxkoYsEZairh8SoA==} + hasBin: true + dependencies: + '@babel/runtime': 7.24.5 + commander: 2.20.3 + graphql: 16.6.0 + node-fetch: 2.7.0 + ora: 3.4.0 + transitivePeerDependencies: + - encoding + dev: true + /graphql-import-node@0.0.5(graphql@16.6.0): resolution: {integrity: sha512-OXbou9fqh9/Lm7vwXT0XoRN9J5+WCYKnbiTalgFDvkQERITRmcfncZs6aVABedd5B85yQU5EULS4a5pnbpuI0Q==} peerDependencies: @@ -31181,6 +31582,30 @@ packages: dependencies: graphql: 16.6.0 + /graphql-js-schema-fetch@1.1.2: + resolution: {integrity: sha512-ra+Mkdj2+lrL4I6G93jA4Y0TSYyilokU5g79D9XRVr6cnNHfxgfPF+FFFOKc09E/izgmxYNAbtya7e/1luvngw==} + hasBin: true + dependencies: + graphql: 16.6.0 + minimist: 1.2.0 + node-fetch: 1.6.3 + dev: true + + /graphql-request@7.0.1(graphql@16.6.0): + resolution: {integrity: sha512-hfGBZF6o6lC3C0th+aTMOFP6p8Ev+ydXn4PUlT8rvqPDUFCbaynXszjBCyu0saZIP3VGbJ67GpxW8UGK+tphSw==} + hasBin: true + peerDependencies: + graphql: 16.6.0 + dependencies: + '@dprint/formatter': 0.3.0 + '@dprint/typescript': 0.90.5 + '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) + '@molt/command': 0.9.0 + dprint: 0.45.1 + graphql: 16.6.0 + zod: 3.23.8 + dev: false + /graphql-scalars@1.23.0(graphql@16.6.0): resolution: {integrity: sha512-YTRNcwitkn8CqYcleKOx9IvedA8JIERn8BRq21nlKgOr4NEcTaWEG0sT+H92eF3ALTFbPgsqfft4cw+MGgv0Gg==} engines: {node: '>=10'} @@ -32114,7 +32539,7 @@ packages: /i18next@22.5.1: resolution: {integrity: sha512-8TGPgM3pAD+VRsMtUMNknRz3kzqwp/gPALrWMsDnmC1mKqJwpWyooQRLMcbTwq8z8YwSmuj+ZYvc+xCuEpkssA==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 /iconv-lite@0.4.24: resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} @@ -32254,6 +32679,13 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} + /indent-string@2.1.0: + resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} + engines: {node: '>=0.10.0'} + dependencies: + repeating: 2.0.1 + dev: true + /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} @@ -32767,6 +33199,12 @@ packages: dependencies: '@types/estree': 1.0.5 + /is-reference@3.0.2: + resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} + dependencies: + '@types/estree': 1.0.5 + dev: false + /is-regex@1.1.4: resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} engines: {node: '>= 0.4'} @@ -32941,13 +33379,15 @@ packages: /isomorphic-fetch@3.0.0: resolution: {integrity: sha512-qvUtwJ3j6qwsF3jLxkZ72qCgjMysPzDfeV240JHiGZsANBYd+EEuu35v7dfrJ9Up0Ak07D7GGSkGhCHTqg/5wA==} dependencies: - node-fetch: 2.6.6 + node-fetch: 2.7.0 whatwg-fetch: 3.6.17 + transitivePeerDependencies: + - encoding /isomorphic-unfetch@3.1.0: resolution: {integrity: sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==} dependencies: - node-fetch: 2.6.12 + node-fetch: 2.7.0 unfetch: 4.2.0 transitivePeerDependencies: - encoding @@ -34479,7 +34919,7 @@ packages: resolution: {integrity: sha512-h9WqLkTVpBbiaPb5OmeUpz/FBLS/kvIJw4oRCPiEisIu2WjMh+aai0QIY2LoOhRFx5r92taGLcerIrzxKBAP6g==} engines: {node: '>=16'} dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@types/json-schema': 7.0.12 ts-algebra: 1.2.0 dev: false @@ -35051,6 +35491,10 @@ packages: dependencies: lie: 3.1.1 + /locate-character@3.0.0: + resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} + dev: false + /locate-path@2.0.0: resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==} engines: {node: '>=4'} @@ -35129,6 +35573,10 @@ packages: /lodash.isequal@4.5.0: resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==} + /lodash.ismatch@4.4.0: + resolution: {integrity: sha512-fPMfXjGQEV9Xsq/8MTSgUf255gawYRbjwMyDbcvDhXgV7enSZA0hynz6vMPnpAb5iONEzBHBPsT+0zes5Z301g==} + dev: false + /lodash.isplainobject@4.0.6: resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} @@ -35149,6 +35597,10 @@ packages: /lodash.set@4.3.2: resolution: {integrity: sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==} + /lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + dev: false + /lodash.sortby@4.7.0: resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} @@ -35187,6 +35639,13 @@ packages: /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + /log-symbols@2.2.0: + resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} + engines: {node: '>=4'} + dependencies: + chalk: 2.4.2 + dev: true + /log-symbols@3.0.0: resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} engines: {node: '>=8'} @@ -35234,6 +35693,14 @@ packages: resolution: {integrity: sha512-RicKUuLwZVNZ6ZdJHgIZnSeA05p8qWc5NW0uR96mpPIjN9WDLUg9+kj1esQU1GkPn9iLZVKatSQK5gyiaFHgJA==} dev: false + /loud-rejection@1.6.0: + resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} + engines: {node: '>=0.10.0'} + dependencies: + currently-unhandled: 0.4.1 + signal-exit: 3.0.7 + dev: true + /loupe@2.3.6: resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} dependencies: @@ -35656,6 +36123,10 @@ packages: resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==} dev: false + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + dev: false + /mdn-data@2.0.4: resolution: {integrity: sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==} dev: false @@ -35705,6 +36176,22 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} + /meow@3.7.0: + resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} + engines: {node: '>=0.10.0'} + dependencies: + camelcase-keys: 2.1.0 + decamelize: 1.2.0 + loud-rejection: 1.6.0 + map-obj: 1.0.1 + minimist: 1.2.8 + normalize-package-data: 2.5.0 + object-assign: 4.1.1 + read-pkg-up: 1.0.1 + redent: 1.0.0 + trim-newlines: 1.0.0 + dev: true + /meow@6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} @@ -36478,6 +36965,10 @@ packages: kind-of: 6.0.3 dev: true + /minimist@1.2.0: + resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==} + dev: true + /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -36735,6 +37226,10 @@ packages: /ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + /muggle-string@0.4.1: + resolution: {integrity: sha512-VNTrAak/KhO2i8dqqnqnAHOa3cYBwXEZe9h+D5h/1ZqFSTEFHdM65lR7RoIqq3tBBYavsOXV84NoHXZ0AkPyqQ==} + dev: false + /multibase@0.6.1: resolution: {integrity: sha512-pFfAwyTjbbQgNc3G7D48JkJxWtoJoBMaR4xQUOuB8RnCgRqaYmWNFeJTTvrJ2w51bjLq2zTby6Rqj9TQ9elSUw==} deprecated: This module has been superseded by the multiformats module @@ -37121,28 +37616,25 @@ packages: /node-fetch-native@1.6.1: resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} - /node-fetch@1.7.3: - resolution: {integrity: sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==} + /node-fetch@1.6.3: + resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==} dependencies: encoding: 0.1.13 is-stream: 1.1.0 + dev: true - /node-fetch@2.6.12: - resolution: {integrity: sha512-C/fGU2E8ToujUivIO0H+tpQ6HWo4eEmchoPIoXtxCrVghxdKq+QOHqEZW7tuP3KlV3bC8FRMO5nMCC7Zm1VP6g==} - engines: {node: 4.x || >=6.0.0} - peerDependencies: - encoding: ^0.1.0 - peerDependenciesMeta: - encoding: - optional: true + /node-fetch@1.7.3: + resolution: {integrity: sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==} dependencies: - whatwg-url: 5.0.0 + encoding: 0.1.13 + is-stream: 1.1.0 /node-fetch@2.6.6: resolution: {integrity: sha512-Z8/6vRlTUChSdIgMa51jxQ4lrw/Jy5SOW10ObaA47/RElsAN2c5Pn8bTgFGWn/ibwzXTE8qwr1Yzx28vsecXEA==} engines: {node: 4.x || >=6.0.0} dependencies: whatwg-url: 5.0.0 + dev: true /node-fetch@2.6.7: resolution: {integrity: sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ==} @@ -37639,6 +38131,18 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 + /ora@3.4.0: + resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} + engines: {node: '>=6'} + dependencies: + chalk: 2.4.2 + cli-cursor: 2.1.0 + cli-spinners: 2.9.0 + log-symbols: 2.2.0 + strip-ansi: 5.2.0 + wcwidth: 1.0.1 + dev: true + /ora@4.1.1: resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} engines: {node: '>=8'} @@ -38141,6 +38645,14 @@ packages: /performance-now@2.1.0: resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} + /periscopic@3.1.0: + resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} + dependencies: + '@types/estree': 1.0.5 + estree-walker: 3.0.3 + is-reference: 3.0.2 + dev: false + /petra-plugin-wallet-adapter@0.4.5(@aptos-labs/ts-sdk@1.14.0)(aptos@1.21.0): resolution: {integrity: sha512-x2S2xRAIz/5ytbB2wHCTJhqLBDsgWPEVmj7X2aril1BUplIGPJHTstgo8hqOngb2rtYbBY+wviyS9Di4IDCGRA==} peerDependencies: @@ -41162,6 +41674,11 @@ packages: dependencies: picomatch: 2.3.1 + /readline-sync@1.4.10: + resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==} + engines: {node: '>= 0.8.0'} + dev: false + /readline@1.3.0: resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==} @@ -41205,6 +41722,14 @@ packages: dependencies: minimatch: 3.1.2 + /redent@1.0.0: + resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} + engines: {node: '>=0.10.0'} + dependencies: + indent-string: 2.1.0 + strip-indent: 1.0.1 + dev: true + /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -41276,7 +41801,7 @@ packages: /regenerator-transform@0.15.2: resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==} dependencies: - '@babel/runtime': 7.22.10 + '@babel/runtime': 7.24.5 /regex-not@1.0.2: resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==} @@ -41380,7 +41905,7 @@ packages: /relay-runtime@12.0.0: resolution: {integrity: sha512-QU6JKr1tMsry22DXNy9Whsq5rmvwr3LSZiiWV/9+DFpuTWvp+WFhobWMc8TC4OjKFfNhEZy7mOiqUAn5atQtug==} dependencies: - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 fbjs: 3.0.5 invariant: 2.2.4 transitivePeerDependencies: @@ -42850,6 +43375,11 @@ packages: resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} engines: {node: '>=0.10.0'} + /source-map-js@1.2.0: + resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} + engines: {node: '>=0.10.0'} + dev: false + /source-map-loader@3.0.2(webpack@5.91.0): resolution: {integrity: sha512-BokxPoLjyl3iOrgkWaakaxqnelAJSS+0V+De0kKIq6lyWrXuiPgYTGp6z3iHmqljKAaLXwZa+ctD8GccRJeVvg==} engines: {node: '>= 12.13.0'} @@ -43160,6 +43690,7 @@ packages: '@storybook/cli': 7.4.6 transitivePeerDependencies: - bufferutil + - encoding - supports-color - utf-8-validate dev: true @@ -43236,6 +43767,13 @@ packages: strip-ansi: 7.1.0 dev: false + /string-length@6.0.0: + resolution: {integrity: sha512-1U361pxZHEQ+FeSjzqRpV+cu2vTzYeWeafXFLykiFlv4Vc0n3njgU8HrMbyik5uwm77naWMuVG8fhEF+Ovb1Kg==} + engines: {node: '>=16'} + dependencies: + strip-ansi: 7.1.0 + dev: false + /string-natural-compare@3.0.1: resolution: {integrity: sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==} dev: false @@ -43432,6 +43970,14 @@ packages: dependencies: is-hex-prefixed: 1.0.0 + /strip-indent@1.0.1: + resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} + engines: {node: '>=0.10.0'} + hasBin: true + dependencies: + get-stdin: 4.0.1 + dev: true + /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -43619,6 +44165,38 @@ packages: react: 18.2.0 dev: false + /svelte2tsx@0.7.8(svelte@4.2.17)(typescript@5.2.2): + resolution: {integrity: sha512-ABK3RDFcy59AqAiU1N5Kxu1RnKrb1GDMrQjLgNgJfE8Q+coCKpjCAPtUVKQM2HnmuqeNWcT3NqfXbE+ZmN5Pow==} + peerDependencies: + svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 + typescript: 5.2.2 + dependencies: + dedent-js: 1.0.1 + pascal-case: 3.1.2 + svelte: 4.2.17 + typescript: 5.2.2 + dev: false + + /svelte@4.2.17: + resolution: {integrity: sha512-N7m1YnoXtRf5wya5Gyx3TWuTddI4nAyayyIWFojiWV5IayDYNV5i2mRp/7qNGol4DtxEYxljmrbgp1HM6hUbmQ==} + engines: {node: '>=16'} + dependencies: + '@ampproject/remapping': 2.3.0 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.25 + '@types/estree': 1.0.5 + acorn: 8.11.3 + aria-query: 5.3.0 + axobject-query: 4.0.0 + code-red: 1.0.4 + css-tree: 2.3.1 + estree-walker: 3.0.3 + is-reference: 3.0.2 + locate-character: 3.0.0 + magic-string: 0.30.10 + periscopic: 3.1.0 + dev: false + /svg-parser@2.0.4: resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==} dev: false @@ -44393,6 +44971,11 @@ packages: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} dev: false + /trim-newlines@1.0.0: + resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} + engines: {node: '>=0.10.0'} + dev: true + /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} @@ -44638,6 +45221,10 @@ packages: /ts-toolbelt@6.15.5: resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} + /ts-toolbelt@9.6.0: + resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} + dev: false + /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: @@ -44783,7 +45370,6 @@ packages: get-tsconfig: 4.7.3 optionalDependencies: fsevents: 2.3.3 - dev: false /tty-table@4.2.1: resolution: {integrity: sha512-xz0uKo+KakCQ+Dxj1D/tKn2FSyreSYWzdkL/BYhgN6oMW808g8QRMuh1atAV9fjTPbWBjfbkKQpI/5rEcnAc7g==} @@ -44923,6 +45509,11 @@ packages: engines: {node: '>=12.20'} dev: true + /type-fest@4.18.2: + resolution: {integrity: sha512-+suCYpfJLAe4OXS6+PPXjW3urOS4IoP9waSiLuXfLgqZODKw/aWwASvzqE886wA0kQgGy0mIWyhd87VpqIy6Xg==} + engines: {node: '>=16'} + dev: false + /type-is@1.6.18: resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} engines: {node: '>= 0.6'} @@ -46075,6 +46666,13 @@ packages: resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==} engines: {node: '>=0.10.0'} + /vue-template-compiler@2.7.16: + resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==} + dependencies: + de-indent: 1.0.2 + he: 1.2.0 + dev: false + /w3c-hr-time@1.0.2: resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==} deprecated: Use your platform's native performance.now() and performance.timeOrigin. @@ -47415,7 +48013,7 @@ packages: '@apideck/better-ajv-errors': 0.3.6(ajv@8.12.0) '@babel/core': 7.24.4 '@babel/preset-env': 7.24.4(@babel/core@7.24.4) - '@babel/runtime': 7.24.4 + '@babel/runtime': 7.24.5 '@rollup/plugin-babel': 5.3.1(@babel/core@7.24.4)(rollup@2.78.0) '@rollup/plugin-node-resolve': 11.2.1(rollup@2.78.0) '@rollup/plugin-replace': 2.4.2(rollup@2.78.0) @@ -48096,6 +48694,10 @@ packages: /zod@3.21.4: resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} + /zod@3.23.8: + resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} + dev: false + /zrender@5.4.4: resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==} dependencies: From b33ad2390eba5e0127f64405a74fa1b2115c7696 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Thu, 23 May 2024 23:48:21 +0000 Subject: [PATCH 020/119] feat(pkgs/graph-client): add a couple more queries --- config/graph/src/index.ts | 3 + .../scripts/update-schemas.ts | 2 + .../src/subgraphs/blocks/graphql.ts | 8 + .../src/subgraphs/blocks/index.ts | 0 .../src/subgraphs/blocks/queries/blocks.ts | 34 + .../src/subgraphs/sushi-bar/graphql.ts | 8 + .../src/subgraphs/sushi-bar/index.ts | 2 + .../sushi-bar/queries/bar-history.ts | 51 + .../src/subgraphs/sushi-bar/queries/bar.ts | 39 + .../src/subgraphs/sushi-bar/schema.graphql | 1886 +++++++++++++++++ .../subgraphs/sushi-bar/sushi-bar-env.d.ts | 64 + .../sushi-v2/fragments/pool-fields.ts | 40 + .../src/subgraphs/sushi-v2/graphql.ts | 8 + .../src/subgraphs/sushi-v2/index.ts | 8 + .../src/subgraphs/sushi-v2/queries/burns.ts | 53 + .../sushi-v2/queries/liquidity-positions.ts | 51 + .../src/subgraphs/sushi-v2/queries/mints.ts | 53 + .../src/subgraphs/sushi-v2/queries/pool.ts | 39 + .../src/subgraphs/sushi-v2/queries/pools.ts | 46 + .../src/subgraphs/sushi-v2/queries/swaps.ts | 59 + .../src/subgraphs/sushi-v2/queries/tokens.ts | 51 + .../sushi-v2/queries/transactions.ts | 79 + .../src/subgraphs/sushi-v3/index.ts | 9 + .../sushi-v3/queries/pools-by-token-pair.ts | 4 +- packages/graph-client-new/tsconfig.json | 6 + packages/graph-client/queries/pairs.graphql | 16 - 26 files changed, 2601 insertions(+), 18 deletions(-) create mode 100644 packages/graph-client-new/src/subgraphs/blocks/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index 6b57aa9a3d..ab76d0d378 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -316,6 +316,9 @@ export const SECONDS_BETWEEN_BLOCKS: Record = { [ChainId.SCROLL]: 3, } as const +export const SUSHI_BAR_SUBGRAPH_URL = + 'api.thegraph.com/subgraphs/name/sushiswap/sushi-bar' as const + export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-ethereum`, [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/sushiswap-avalanche`, diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index 5c5e4982f9..12e8198666 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -2,6 +2,7 @@ import { BLOCKS_SUBGRAPH_URL, SUSHISWAP_SUBGRAPH_URL, SUSHISWAP_V3_SUBGRAPH_URL, + SUSHI_BAR_SUBGRAPH_URL, } from '@sushiswap/graph-config' import fs from 'fs' @@ -10,6 +11,7 @@ import fetchSchema from 'graphql-fetch-schema' const schemas = { blocks: BLOCKS_SUBGRAPH_URL[1], + 'sushi-bar': SUSHI_BAR_SUBGRAPH_URL, 'sushi-v2': SUSHISWAP_SUBGRAPH_URL[1], 'sushi-v3': SUSHISWAP_V3_SUBGRAPH_URL[1], } as const satisfies Record diff --git a/packages/graph-client-new/src/subgraphs/blocks/graphql.ts b/packages/graph-client-new/src/subgraphs/blocks/graphql.ts new file mode 100644 index 0000000000..26cc89b066 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/scalars.js' +import type { introspection } from './blocks-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/blocks/index.ts b/packages/graph-client-new/src/subgraphs/blocks/index.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts new file mode 100644 index 0000000000..c7b7518b16 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -0,0 +1,34 @@ +import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import type { ChainId } from 'sushi/chain' +import { graphql } from '../graphql' + +export const BlocksQuery = graphql( + ` + query Blocks($first: Int = 1000, $skip: Int = 0, $orderBy: Block_orderBy = number, $orderDirection: OrderDirection = desc, $where: Block_filter) { + blocks(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + number + timestamp + } + } +`, +) + +export type GetBlocks = VariablesOf + +export async function getBlocks(chainId: ChainId, variables: GetBlocks) { + const baseUrl = BLOCKS_SUBGRAPH_URL[chainId] + + if (!baseUrl) throw new Error(`No subgraph URL for chainId ${chainId}`) + + const url = `https://${baseUrl}` + + const result = await request(url, BlocksQuery, variables) + + return result +} + +export type Blocks = NonNullable> diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts new file mode 100644 index 0000000000..c8ac20af86 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/scalars.js' +import type { introspection } from './sushi-bar-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/index.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/index.ts new file mode 100644 index 0000000000..2848968ccc --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/index.ts @@ -0,0 +1,2 @@ +export * from './queries/bar-history' +export * from './queries/bar' diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts new file mode 100644 index 0000000000..f8d15f3a99 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts @@ -0,0 +1,51 @@ +import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { graphql } from '../graphql' + +export const SushiBarHistoryQuery = graphql( + ` + query Bar($hourCnt: Int = 24, $dayCnt: Int = 7, $weekCnt: Int = 1000) { + hourSnapshots(first: $hourCnt, orderBy: date, orderDirection: desc) { + id + date + xSushiSupply + apr1m + apr3m + apr6m + apr12m + } + daySnapshots(first: $dayCnt, orderBy: date, orderDirection: desc) { + id + date + xSushiSupply + apr1m + apr3m + apr6m + apr12m + } + weekSnapshots(first: $weekCnt, orderBy: date, orderDirection: desc) { + id + date + xSushiSupply + apr1m + apr3m + apr6m + apr12m + } + } +`, +) + +export type GetSushiBarHistory = VariablesOf + +export async function getSushiBarHistory(variables: GetSushiBarHistory) { + const url = `https://${SUSHI_BAR_SUBGRAPH_URL}` + + const result = await request(url, SushiBarHistoryQuery, variables) + + return result +} + +export type SushiBarHistory = NonNullable> diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts new file mode 100644 index 0000000000..ca3fc048c7 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts @@ -0,0 +1,39 @@ +import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { graphql } from '../graphql' + +export const SushiBarQuery = graphql( + ` + query Bar($block: Block_height) { + xsushi(id: "xSushi", block: $block) { + id + sushiXsushiRatio + xSushiSushiRatio + sushiSupply + xSushiSupply + apr1m + apr3m + apr6m + apr12m + } + } +`, +) + +export type GetSushiBar = VariablesOf + +export async function getSushiBar(variables: GetSushiBar) { + const url = `https://${SUSHI_BAR_SUBGRAPH_URL}` + + const result = await request(url, SushiBarQuery, variables) + + if (result) { + return result.xsushi + } + + throw new Error('No bar') +} + +export type SushiBar = NonNullable>['xsushi'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql b/packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql new file mode 100644 index 0000000000..2c6d936e75 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql @@ -0,0 +1,1886 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +type DaySnapshot { + """ {day}-{date} """ + id: ID! + date: Int! + userCount: BigInt! + transactionCount: BigInt! + sushiSupply: BigDecimal! + xSushiSupply: BigDecimal! + sushiStaked: BigDecimal! + sushiHarvested: BigDecimal! + totalFeeAmount: BigDecimal! + xSushiBurned: BigDecimal! + xSushiMinted: BigDecimal! + xSushiSushiRatio: BigDecimal! + sushiXsushiRatio: BigDecimal! + apr1m: BigDecimal! + apr3m: BigDecimal! + apr6m: BigDecimal! + apr12m: BigDecimal! + newTransactions: BigInt! + newSushiStaked: BigDecimal! + newSushiHarvested: BigDecimal! + newFeeAmount: BigDecimal! + newXSushiBurned: BigDecimal! + newXSushiMinted: BigDecimal! +} + +input DaySnapshot_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!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + sushiSupply: BigDecimal + sushiSupply_not: BigDecimal + sushiSupply_gt: BigDecimal + sushiSupply_lt: BigDecimal + sushiSupply_gte: BigDecimal + sushiSupply_lte: BigDecimal + sushiSupply_in: [BigDecimal!] + sushiSupply_not_in: [BigDecimal!] + xSushiSupply: BigDecimal + xSushiSupply_not: BigDecimal + xSushiSupply_gt: BigDecimal + xSushiSupply_lt: BigDecimal + xSushiSupply_gte: BigDecimal + xSushiSupply_lte: BigDecimal + xSushiSupply_in: [BigDecimal!] + xSushiSupply_not_in: [BigDecimal!] + sushiStaked: BigDecimal + sushiStaked_not: BigDecimal + sushiStaked_gt: BigDecimal + sushiStaked_lt: BigDecimal + sushiStaked_gte: BigDecimal + sushiStaked_lte: BigDecimal + sushiStaked_in: [BigDecimal!] + sushiStaked_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + totalFeeAmount: BigDecimal + totalFeeAmount_not: BigDecimal + totalFeeAmount_gt: BigDecimal + totalFeeAmount_lt: BigDecimal + totalFeeAmount_gte: BigDecimal + totalFeeAmount_lte: BigDecimal + totalFeeAmount_in: [BigDecimal!] + totalFeeAmount_not_in: [BigDecimal!] + xSushiBurned: BigDecimal + xSushiBurned_not: BigDecimal + xSushiBurned_gt: BigDecimal + xSushiBurned_lt: BigDecimal + xSushiBurned_gte: BigDecimal + xSushiBurned_lte: BigDecimal + xSushiBurned_in: [BigDecimal!] + xSushiBurned_not_in: [BigDecimal!] + xSushiMinted: BigDecimal + xSushiMinted_not: BigDecimal + xSushiMinted_gt: BigDecimal + xSushiMinted_lt: BigDecimal + xSushiMinted_gte: BigDecimal + xSushiMinted_lte: BigDecimal + xSushiMinted_in: [BigDecimal!] + xSushiMinted_not_in: [BigDecimal!] + xSushiSushiRatio: BigDecimal + xSushiSushiRatio_not: BigDecimal + xSushiSushiRatio_gt: BigDecimal + xSushiSushiRatio_lt: BigDecimal + xSushiSushiRatio_gte: BigDecimal + xSushiSushiRatio_lte: BigDecimal + xSushiSushiRatio_in: [BigDecimal!] + xSushiSushiRatio_not_in: [BigDecimal!] + sushiXsushiRatio: BigDecimal + sushiXsushiRatio_not: BigDecimal + sushiXsushiRatio_gt: BigDecimal + sushiXsushiRatio_lt: BigDecimal + sushiXsushiRatio_gte: BigDecimal + sushiXsushiRatio_lte: BigDecimal + sushiXsushiRatio_in: [BigDecimal!] + sushiXsushiRatio_not_in: [BigDecimal!] + apr1m: BigDecimal + apr1m_not: BigDecimal + apr1m_gt: BigDecimal + apr1m_lt: BigDecimal + apr1m_gte: BigDecimal + apr1m_lte: BigDecimal + apr1m_in: [BigDecimal!] + apr1m_not_in: [BigDecimal!] + apr3m: BigDecimal + apr3m_not: BigDecimal + apr3m_gt: BigDecimal + apr3m_lt: BigDecimal + apr3m_gte: BigDecimal + apr3m_lte: BigDecimal + apr3m_in: [BigDecimal!] + apr3m_not_in: [BigDecimal!] + apr6m: BigDecimal + apr6m_not: BigDecimal + apr6m_gt: BigDecimal + apr6m_lt: BigDecimal + apr6m_gte: BigDecimal + apr6m_lte: BigDecimal + apr6m_in: [BigDecimal!] + apr6m_not_in: [BigDecimal!] + apr12m: BigDecimal + apr12m_not: BigDecimal + apr12m_gt: BigDecimal + apr12m_lt: BigDecimal + apr12m_gte: BigDecimal + apr12m_lte: BigDecimal + apr12m_in: [BigDecimal!] + apr12m_not_in: [BigDecimal!] + newTransactions: BigInt + newTransactions_not: BigInt + newTransactions_gt: BigInt + newTransactions_lt: BigInt + newTransactions_gte: BigInt + newTransactions_lte: BigInt + newTransactions_in: [BigInt!] + newTransactions_not_in: [BigInt!] + newSushiStaked: BigDecimal + newSushiStaked_not: BigDecimal + newSushiStaked_gt: BigDecimal + newSushiStaked_lt: BigDecimal + newSushiStaked_gte: BigDecimal + newSushiStaked_lte: BigDecimal + newSushiStaked_in: [BigDecimal!] + newSushiStaked_not_in: [BigDecimal!] + newSushiHarvested: BigDecimal + newSushiHarvested_not: BigDecimal + newSushiHarvested_gt: BigDecimal + newSushiHarvested_lt: BigDecimal + newSushiHarvested_gte: BigDecimal + newSushiHarvested_lte: BigDecimal + newSushiHarvested_in: [BigDecimal!] + newSushiHarvested_not_in: [BigDecimal!] + newFeeAmount: BigDecimal + newFeeAmount_not: BigDecimal + newFeeAmount_gt: BigDecimal + newFeeAmount_lt: BigDecimal + newFeeAmount_gte: BigDecimal + newFeeAmount_lte: BigDecimal + newFeeAmount_in: [BigDecimal!] + newFeeAmount_not_in: [BigDecimal!] + newXSushiBurned: BigDecimal + newXSushiBurned_not: BigDecimal + newXSushiBurned_gt: BigDecimal + newXSushiBurned_lt: BigDecimal + newXSushiBurned_gte: BigDecimal + newXSushiBurned_lte: BigDecimal + newXSushiBurned_in: [BigDecimal!] + newXSushiBurned_not_in: [BigDecimal!] + newXSushiMinted: BigDecimal + newXSushiMinted_not: BigDecimal + newXSushiMinted_gt: BigDecimal + newXSushiMinted_lt: BigDecimal + newXSushiMinted_gte: BigDecimal + newXSushiMinted_lte: BigDecimal + newXSushiMinted_in: [BigDecimal!] + newXSushiMinted_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [DaySnapshot_filter] + or: [DaySnapshot_filter] +} + +enum DaySnapshot_orderBy { + id + date + userCount + transactionCount + sushiSupply + xSushiSupply + sushiStaked + sushiHarvested + totalFeeAmount + xSushiBurned + xSushiMinted + xSushiSushiRatio + sushiXsushiRatio + apr1m + apr3m + apr6m + apr12m + newTransactions + newSushiStaked + newSushiHarvested + newFeeAmount + newXSushiBurned + newXSushiMinted +} + +type Fee { + id: ID! + sender: FeeSender! + amount: BigInt! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +type FeeSender { + id: ID! + totalFeeSent: BigInt! + fees(skip: Int = 0, first: Int = 100, orderBy: Fee_orderBy, orderDirection: OrderDirection, where: Fee_filter): [Fee!]! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! + modifiedAtBlock: BigInt! + modifiedAtTimestamp: BigInt! +} + +input FeeSender_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!] + totalFeeSent: BigInt + totalFeeSent_not: BigInt + totalFeeSent_gt: BigInt + totalFeeSent_lt: BigInt + totalFeeSent_gte: BigInt + totalFeeSent_lte: BigInt + totalFeeSent_in: [BigInt!] + totalFeeSent_not_in: [BigInt!] + fees_: Fee_filter + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + modifiedAtBlock: BigInt + modifiedAtBlock_not: BigInt + modifiedAtBlock_gt: BigInt + modifiedAtBlock_lt: BigInt + modifiedAtBlock_gte: BigInt + modifiedAtBlock_lte: BigInt + modifiedAtBlock_in: [BigInt!] + modifiedAtBlock_not_in: [BigInt!] + modifiedAtTimestamp: BigInt + modifiedAtTimestamp_not: BigInt + modifiedAtTimestamp_gt: BigInt + modifiedAtTimestamp_lt: BigInt + modifiedAtTimestamp_gte: BigInt + modifiedAtTimestamp_lte: BigInt + modifiedAtTimestamp_in: [BigInt!] + modifiedAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [FeeSender_filter] + or: [FeeSender_filter] +} + +enum FeeSender_orderBy { + id + totalFeeSent + fees + createdAtBlock + createdAtTimestamp + modifiedAtBlock + modifiedAtTimestamp +} + +input Fee_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!] + sender: String + sender_not: String + sender_gt: String + sender_lt: String + sender_gte: String + sender_lte: String + sender_in: [String!] + sender_not_in: [String!] + sender_contains: String + sender_contains_nocase: String + sender_not_contains: String + sender_not_contains_nocase: String + sender_starts_with: String + sender_starts_with_nocase: String + sender_not_starts_with: String + sender_not_starts_with_nocase: String + sender_ends_with: String + sender_ends_with_nocase: String + sender_not_ends_with: String + sender_not_ends_with_nocase: String + sender_: FeeSender_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Fee_filter] + or: [Fee_filter] +} + +enum Fee_orderBy { + id + sender + sender__id + sender__totalFeeSent + sender__createdAtBlock + sender__createdAtTimestamp + sender__modifiedAtBlock + sender__modifiedAtTimestamp + amount + createdAtBlock + createdAtTimestamp +} + +type HourSnapshot { + """ {hour}-{date} """ + id: ID! + date: Int! + userCount: BigInt! + transactionCount: BigInt! + sushiSupply: BigDecimal! + xSushiSupply: BigDecimal! + sushiStaked: BigDecimal! + sushiHarvested: BigDecimal! + totalFeeAmount: BigDecimal! + xSushiBurned: BigDecimal! + xSushiMinted: BigDecimal! + xSushiSushiRatio: BigDecimal! + sushiXsushiRatio: BigDecimal! + apr1m: BigDecimal! + apr3m: BigDecimal! + apr6m: BigDecimal! + apr12m: BigDecimal! + newTransactions: BigInt! + newSushiStaked: BigDecimal! + newSushiHarvested: BigDecimal! + newFeeAmount: BigDecimal! + newXSushiBurned: BigDecimal! + newXSushiMinted: BigDecimal! +} + +input HourSnapshot_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!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + sushiSupply: BigDecimal + sushiSupply_not: BigDecimal + sushiSupply_gt: BigDecimal + sushiSupply_lt: BigDecimal + sushiSupply_gte: BigDecimal + sushiSupply_lte: BigDecimal + sushiSupply_in: [BigDecimal!] + sushiSupply_not_in: [BigDecimal!] + xSushiSupply: BigDecimal + xSushiSupply_not: BigDecimal + xSushiSupply_gt: BigDecimal + xSushiSupply_lt: BigDecimal + xSushiSupply_gte: BigDecimal + xSushiSupply_lte: BigDecimal + xSushiSupply_in: [BigDecimal!] + xSushiSupply_not_in: [BigDecimal!] + sushiStaked: BigDecimal + sushiStaked_not: BigDecimal + sushiStaked_gt: BigDecimal + sushiStaked_lt: BigDecimal + sushiStaked_gte: BigDecimal + sushiStaked_lte: BigDecimal + sushiStaked_in: [BigDecimal!] + sushiStaked_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + totalFeeAmount: BigDecimal + totalFeeAmount_not: BigDecimal + totalFeeAmount_gt: BigDecimal + totalFeeAmount_lt: BigDecimal + totalFeeAmount_gte: BigDecimal + totalFeeAmount_lte: BigDecimal + totalFeeAmount_in: [BigDecimal!] + totalFeeAmount_not_in: [BigDecimal!] + xSushiBurned: BigDecimal + xSushiBurned_not: BigDecimal + xSushiBurned_gt: BigDecimal + xSushiBurned_lt: BigDecimal + xSushiBurned_gte: BigDecimal + xSushiBurned_lte: BigDecimal + xSushiBurned_in: [BigDecimal!] + xSushiBurned_not_in: [BigDecimal!] + xSushiMinted: BigDecimal + xSushiMinted_not: BigDecimal + xSushiMinted_gt: BigDecimal + xSushiMinted_lt: BigDecimal + xSushiMinted_gte: BigDecimal + xSushiMinted_lte: BigDecimal + xSushiMinted_in: [BigDecimal!] + xSushiMinted_not_in: [BigDecimal!] + xSushiSushiRatio: BigDecimal + xSushiSushiRatio_not: BigDecimal + xSushiSushiRatio_gt: BigDecimal + xSushiSushiRatio_lt: BigDecimal + xSushiSushiRatio_gte: BigDecimal + xSushiSushiRatio_lte: BigDecimal + xSushiSushiRatio_in: [BigDecimal!] + xSushiSushiRatio_not_in: [BigDecimal!] + sushiXsushiRatio: BigDecimal + sushiXsushiRatio_not: BigDecimal + sushiXsushiRatio_gt: BigDecimal + sushiXsushiRatio_lt: BigDecimal + sushiXsushiRatio_gte: BigDecimal + sushiXsushiRatio_lte: BigDecimal + sushiXsushiRatio_in: [BigDecimal!] + sushiXsushiRatio_not_in: [BigDecimal!] + apr1m: BigDecimal + apr1m_not: BigDecimal + apr1m_gt: BigDecimal + apr1m_lt: BigDecimal + apr1m_gte: BigDecimal + apr1m_lte: BigDecimal + apr1m_in: [BigDecimal!] + apr1m_not_in: [BigDecimal!] + apr3m: BigDecimal + apr3m_not: BigDecimal + apr3m_gt: BigDecimal + apr3m_lt: BigDecimal + apr3m_gte: BigDecimal + apr3m_lte: BigDecimal + apr3m_in: [BigDecimal!] + apr3m_not_in: [BigDecimal!] + apr6m: BigDecimal + apr6m_not: BigDecimal + apr6m_gt: BigDecimal + apr6m_lt: BigDecimal + apr6m_gte: BigDecimal + apr6m_lte: BigDecimal + apr6m_in: [BigDecimal!] + apr6m_not_in: [BigDecimal!] + apr12m: BigDecimal + apr12m_not: BigDecimal + apr12m_gt: BigDecimal + apr12m_lt: BigDecimal + apr12m_gte: BigDecimal + apr12m_lte: BigDecimal + apr12m_in: [BigDecimal!] + apr12m_not_in: [BigDecimal!] + newTransactions: BigInt + newTransactions_not: BigInt + newTransactions_gt: BigInt + newTransactions_lt: BigInt + newTransactions_gte: BigInt + newTransactions_lte: BigInt + newTransactions_in: [BigInt!] + newTransactions_not_in: [BigInt!] + newSushiStaked: BigDecimal + newSushiStaked_not: BigDecimal + newSushiStaked_gt: BigDecimal + newSushiStaked_lt: BigDecimal + newSushiStaked_gte: BigDecimal + newSushiStaked_lte: BigDecimal + newSushiStaked_in: [BigDecimal!] + newSushiStaked_not_in: [BigDecimal!] + newSushiHarvested: BigDecimal + newSushiHarvested_not: BigDecimal + newSushiHarvested_gt: BigDecimal + newSushiHarvested_lt: BigDecimal + newSushiHarvested_gte: BigDecimal + newSushiHarvested_lte: BigDecimal + newSushiHarvested_in: [BigDecimal!] + newSushiHarvested_not_in: [BigDecimal!] + newFeeAmount: BigDecimal + newFeeAmount_not: BigDecimal + newFeeAmount_gt: BigDecimal + newFeeAmount_lt: BigDecimal + newFeeAmount_gte: BigDecimal + newFeeAmount_lte: BigDecimal + newFeeAmount_in: [BigDecimal!] + newFeeAmount_not_in: [BigDecimal!] + newXSushiBurned: BigDecimal + newXSushiBurned_not: BigDecimal + newXSushiBurned_gt: BigDecimal + newXSushiBurned_lt: BigDecimal + newXSushiBurned_gte: BigDecimal + newXSushiBurned_lte: BigDecimal + newXSushiBurned_in: [BigDecimal!] + newXSushiBurned_not_in: [BigDecimal!] + newXSushiMinted: BigDecimal + newXSushiMinted_not: BigDecimal + newXSushiMinted_gt: BigDecimal + newXSushiMinted_lt: BigDecimal + newXSushiMinted_gte: BigDecimal + newXSushiMinted_lte: BigDecimal + newXSushiMinted_in: [BigDecimal!] + newXSushiMinted_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [HourSnapshot_filter] + or: [HourSnapshot_filter] +} + +enum HourSnapshot_orderBy { + id + date + userCount + transactionCount + sushiSupply + xSushiSupply + sushiStaked + sushiHarvested + totalFeeAmount + xSushiBurned + xSushiMinted + xSushiSushiRatio + sushiXsushiRatio + apr1m + apr3m + apr6m + apr12m + newTransactions + newSushiStaked + newSushiHarvested + newFeeAmount + newXSushiBurned + newXSushiMinted +} + +"8 bytes signed integer\n" +scalar Int8 + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Query { + xsushi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): XSushi + xsushis( + skip: Int = 0 + first: Int = 100 + orderBy: XSushi_orderBy + orderDirection: OrderDirection + where: XSushi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [XSushi!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + feeSender( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FeeSender + feeSenders( + skip: Int = 0 + first: Int = 100 + orderBy: FeeSender_orderBy + orderDirection: OrderDirection + where: FeeSender_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FeeSender!]! + fee( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Fee + fees( + skip: Int = 0 + first: Int = 100 + orderBy: Fee_orderBy + orderDirection: OrderDirection + where: Fee_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Fee!]! + hourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): HourSnapshot + hourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: HourSnapshot_orderBy + orderDirection: OrderDirection + where: HourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [HourSnapshot!]! + daySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DaySnapshot + daySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: DaySnapshot_orderBy + orderDirection: OrderDirection + where: DaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DaySnapshot!]! + weekSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): WeekSnapshot + weekSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: WeekSnapshot_orderBy + orderDirection: OrderDirection + where: WeekSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [WeekSnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + xsushi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): XSushi + xsushis( + skip: Int = 0 + first: Int = 100 + orderBy: XSushi_orderBy + orderDirection: OrderDirection + where: XSushi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [XSushi!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + feeSender( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FeeSender + feeSenders( + skip: Int = 0 + first: Int = 100 + orderBy: FeeSender_orderBy + orderDirection: OrderDirection + where: FeeSender_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FeeSender!]! + fee( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Fee + fees( + skip: Int = 0 + first: Int = 100 + orderBy: Fee_orderBy + orderDirection: OrderDirection + where: Fee_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Fee!]! + hourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): HourSnapshot + hourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: HourSnapshot_orderBy + orderDirection: OrderDirection + where: HourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [HourSnapshot!]! + daySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): DaySnapshot + daySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: DaySnapshot_orderBy + orderDirection: OrderDirection + where: DaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [DaySnapshot!]! + weekSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): WeekSnapshot + weekSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: WeekSnapshot_orderBy + orderDirection: OrderDirection + where: WeekSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [WeekSnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type Transaction { + id: ID! + from: User! + to: User! + amount: BigDecimal! + type: TransactionType! + gasUsed: BigInt! + gasLimit: BigInt! + gasPrice: BigInt! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +enum TransactionType { + TRANSFER + MINT + BURN +} + +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!] + from: String + from_not: String + from_gt: String + from_lt: String + from_gte: String + from_lte: String + from_in: [String!] + from_not_in: [String!] + from_contains: String + from_contains_nocase: String + from_not_contains: String + from_not_contains_nocase: String + from_starts_with: String + from_starts_with_nocase: String + from_not_starts_with: String + from_not_starts_with_nocase: String + from_ends_with: String + from_ends_with_nocase: String + from_not_ends_with: String + from_not_ends_with_nocase: String + from_: User_filter + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + to_: User_filter + amount: BigDecimal + amount_not: BigDecimal + amount_gt: BigDecimal + amount_lt: BigDecimal + amount_gte: BigDecimal + amount_lte: BigDecimal + amount_in: [BigDecimal!] + amount_not_in: [BigDecimal!] + type: TransactionType + type_not: TransactionType + type_in: [TransactionType!] + type_not_in: [TransactionType!] + gasUsed: BigInt + gasUsed_not: BigInt + gasUsed_gt: BigInt + gasUsed_lt: BigInt + gasUsed_gte: BigInt + gasUsed_lte: BigInt + gasUsed_in: [BigInt!] + gasUsed_not_in: [BigInt!] + gasLimit: BigInt + gasLimit_not: BigInt + gasLimit_gt: BigInt + gasLimit_lt: BigInt + gasLimit_gte: BigInt + gasLimit_lte: BigInt + gasLimit_in: [BigInt!] + gasLimit_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!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + from + from__id + from__balance + from__createdAtBlock + from__createdAtTimestamp + from__modifiedAtBlock + from__modifiedAtTimestamp + to + to__id + to__balance + to__createdAtBlock + to__createdAtTimestamp + to__modifiedAtBlock + to__modifiedAtTimestamp + amount + type + gasUsed + gasLimit + gasPrice + createdAtBlock + createdAtTimestamp +} + +type User { + id: ID! + balance: BigInt! + withdrawals(skip: Int = 0, first: Int = 100, orderBy: Transaction_orderBy, orderDirection: OrderDirection, where: Transaction_filter): [Transaction!]! + deposits(skip: Int = 0, first: Int = 100, orderBy: Transaction_orderBy, orderDirection: OrderDirection, where: Transaction_filter): [Transaction!]! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! + modifiedAtBlock: BigInt! + modifiedAtTimestamp: BigInt! +} + +input User_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!] + balance: BigInt + balance_not: BigInt + balance_gt: BigInt + balance_lt: BigInt + balance_gte: BigInt + balance_lte: BigInt + balance_in: [BigInt!] + balance_not_in: [BigInt!] + withdrawals_: Transaction_filter + deposits_: Transaction_filter + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + modifiedAtBlock: BigInt + modifiedAtBlock_not: BigInt + modifiedAtBlock_gt: BigInt + modifiedAtBlock_lt: BigInt + modifiedAtBlock_gte: BigInt + modifiedAtBlock_lte: BigInt + modifiedAtBlock_in: [BigInt!] + modifiedAtBlock_not_in: [BigInt!] + modifiedAtTimestamp: BigInt + modifiedAtTimestamp_not: BigInt + modifiedAtTimestamp_gt: BigInt + modifiedAtTimestamp_lt: BigInt + modifiedAtTimestamp_gte: BigInt + modifiedAtTimestamp_lte: BigInt + modifiedAtTimestamp_in: [BigInt!] + modifiedAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + balance + withdrawals + deposits + createdAtBlock + createdAtTimestamp + modifiedAtBlock + modifiedAtTimestamp +} + +type WeekSnapshot { + """ {week}-{date} """ + id: ID! + date: Int! + userCount: BigInt! + transactionCount: BigInt! + sushiSupply: BigDecimal! + xSushiSupply: BigDecimal! + sushiStaked: BigDecimal! + sushiHarvested: BigDecimal! + totalFeeAmount: BigDecimal! + xSushiBurned: BigDecimal! + xSushiMinted: BigDecimal! + xSushiSushiRatio: BigDecimal! + sushiXsushiRatio: BigDecimal! + apr1m: BigDecimal! + apr3m: BigDecimal! + apr6m: BigDecimal! + apr12m: BigDecimal! + newTransactions: BigInt! + newSushiStaked: BigDecimal! + newSushiHarvested: BigDecimal! + newFeeAmount: BigDecimal! + newXSushiBurned: BigDecimal! + newXSushiMinted: BigDecimal! +} + +input WeekSnapshot_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!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + sushiSupply: BigDecimal + sushiSupply_not: BigDecimal + sushiSupply_gt: BigDecimal + sushiSupply_lt: BigDecimal + sushiSupply_gte: BigDecimal + sushiSupply_lte: BigDecimal + sushiSupply_in: [BigDecimal!] + sushiSupply_not_in: [BigDecimal!] + xSushiSupply: BigDecimal + xSushiSupply_not: BigDecimal + xSushiSupply_gt: BigDecimal + xSushiSupply_lt: BigDecimal + xSushiSupply_gte: BigDecimal + xSushiSupply_lte: BigDecimal + xSushiSupply_in: [BigDecimal!] + xSushiSupply_not_in: [BigDecimal!] + sushiStaked: BigDecimal + sushiStaked_not: BigDecimal + sushiStaked_gt: BigDecimal + sushiStaked_lt: BigDecimal + sushiStaked_gte: BigDecimal + sushiStaked_lte: BigDecimal + sushiStaked_in: [BigDecimal!] + sushiStaked_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + totalFeeAmount: BigDecimal + totalFeeAmount_not: BigDecimal + totalFeeAmount_gt: BigDecimal + totalFeeAmount_lt: BigDecimal + totalFeeAmount_gte: BigDecimal + totalFeeAmount_lte: BigDecimal + totalFeeAmount_in: [BigDecimal!] + totalFeeAmount_not_in: [BigDecimal!] + xSushiBurned: BigDecimal + xSushiBurned_not: BigDecimal + xSushiBurned_gt: BigDecimal + xSushiBurned_lt: BigDecimal + xSushiBurned_gte: BigDecimal + xSushiBurned_lte: BigDecimal + xSushiBurned_in: [BigDecimal!] + xSushiBurned_not_in: [BigDecimal!] + xSushiMinted: BigDecimal + xSushiMinted_not: BigDecimal + xSushiMinted_gt: BigDecimal + xSushiMinted_lt: BigDecimal + xSushiMinted_gte: BigDecimal + xSushiMinted_lte: BigDecimal + xSushiMinted_in: [BigDecimal!] + xSushiMinted_not_in: [BigDecimal!] + xSushiSushiRatio: BigDecimal + xSushiSushiRatio_not: BigDecimal + xSushiSushiRatio_gt: BigDecimal + xSushiSushiRatio_lt: BigDecimal + xSushiSushiRatio_gte: BigDecimal + xSushiSushiRatio_lte: BigDecimal + xSushiSushiRatio_in: [BigDecimal!] + xSushiSushiRatio_not_in: [BigDecimal!] + sushiXsushiRatio: BigDecimal + sushiXsushiRatio_not: BigDecimal + sushiXsushiRatio_gt: BigDecimal + sushiXsushiRatio_lt: BigDecimal + sushiXsushiRatio_gte: BigDecimal + sushiXsushiRatio_lte: BigDecimal + sushiXsushiRatio_in: [BigDecimal!] + sushiXsushiRatio_not_in: [BigDecimal!] + apr1m: BigDecimal + apr1m_not: BigDecimal + apr1m_gt: BigDecimal + apr1m_lt: BigDecimal + apr1m_gte: BigDecimal + apr1m_lte: BigDecimal + apr1m_in: [BigDecimal!] + apr1m_not_in: [BigDecimal!] + apr3m: BigDecimal + apr3m_not: BigDecimal + apr3m_gt: BigDecimal + apr3m_lt: BigDecimal + apr3m_gte: BigDecimal + apr3m_lte: BigDecimal + apr3m_in: [BigDecimal!] + apr3m_not_in: [BigDecimal!] + apr6m: BigDecimal + apr6m_not: BigDecimal + apr6m_gt: BigDecimal + apr6m_lt: BigDecimal + apr6m_gte: BigDecimal + apr6m_lte: BigDecimal + apr6m_in: [BigDecimal!] + apr6m_not_in: [BigDecimal!] + apr12m: BigDecimal + apr12m_not: BigDecimal + apr12m_gt: BigDecimal + apr12m_lt: BigDecimal + apr12m_gte: BigDecimal + apr12m_lte: BigDecimal + apr12m_in: [BigDecimal!] + apr12m_not_in: [BigDecimal!] + newTransactions: BigInt + newTransactions_not: BigInt + newTransactions_gt: BigInt + newTransactions_lt: BigInt + newTransactions_gte: BigInt + newTransactions_lte: BigInt + newTransactions_in: [BigInt!] + newTransactions_not_in: [BigInt!] + newSushiStaked: BigDecimal + newSushiStaked_not: BigDecimal + newSushiStaked_gt: BigDecimal + newSushiStaked_lt: BigDecimal + newSushiStaked_gte: BigDecimal + newSushiStaked_lte: BigDecimal + newSushiStaked_in: [BigDecimal!] + newSushiStaked_not_in: [BigDecimal!] + newSushiHarvested: BigDecimal + newSushiHarvested_not: BigDecimal + newSushiHarvested_gt: BigDecimal + newSushiHarvested_lt: BigDecimal + newSushiHarvested_gte: BigDecimal + newSushiHarvested_lte: BigDecimal + newSushiHarvested_in: [BigDecimal!] + newSushiHarvested_not_in: [BigDecimal!] + newFeeAmount: BigDecimal + newFeeAmount_not: BigDecimal + newFeeAmount_gt: BigDecimal + newFeeAmount_lt: BigDecimal + newFeeAmount_gte: BigDecimal + newFeeAmount_lte: BigDecimal + newFeeAmount_in: [BigDecimal!] + newFeeAmount_not_in: [BigDecimal!] + newXSushiBurned: BigDecimal + newXSushiBurned_not: BigDecimal + newXSushiBurned_gt: BigDecimal + newXSushiBurned_lt: BigDecimal + newXSushiBurned_gte: BigDecimal + newXSushiBurned_lte: BigDecimal + newXSushiBurned_in: [BigDecimal!] + newXSushiBurned_not_in: [BigDecimal!] + newXSushiMinted: BigDecimal + newXSushiMinted_not: BigDecimal + newXSushiMinted_gt: BigDecimal + newXSushiMinted_lt: BigDecimal + newXSushiMinted_gte: BigDecimal + newXSushiMinted_lte: BigDecimal + newXSushiMinted_in: [BigDecimal!] + newXSushiMinted_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [WeekSnapshot_filter] + or: [WeekSnapshot_filter] +} + +enum WeekSnapshot_orderBy { + id + date + userCount + transactionCount + sushiSupply + xSushiSupply + sushiStaked + sushiHarvested + totalFeeAmount + xSushiBurned + xSushiMinted + xSushiSushiRatio + sushiXsushiRatio + apr1m + apr3m + apr6m + apr12m + newTransactions + newSushiStaked + newSushiHarvested + newFeeAmount + newXSushiBurned + newXSushiMinted +} + +type XSushi { + id: ID! + userCount: BigInt! + transactionCount: BigInt! + sushiSupply: BigDecimal! + xSushiSupply: BigDecimal! + sushiStaked: BigDecimal! + sushiHarvested: BigDecimal! + totalFeeAmount: BigDecimal! + xSushiBurned: BigDecimal! + xSushiMinted: BigDecimal! + xSushiSushiRatio: BigDecimal! + sushiXsushiRatio: BigDecimal! + apr1m: BigDecimal! + apr3m: BigDecimal! + apr6m: BigDecimal! + apr12m: BigDecimal! + aprUpdatedAtTimestamp: BigInt! +} + +input XSushi_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!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + sushiSupply: BigDecimal + sushiSupply_not: BigDecimal + sushiSupply_gt: BigDecimal + sushiSupply_lt: BigDecimal + sushiSupply_gte: BigDecimal + sushiSupply_lte: BigDecimal + sushiSupply_in: [BigDecimal!] + sushiSupply_not_in: [BigDecimal!] + xSushiSupply: BigDecimal + xSushiSupply_not: BigDecimal + xSushiSupply_gt: BigDecimal + xSushiSupply_lt: BigDecimal + xSushiSupply_gte: BigDecimal + xSushiSupply_lte: BigDecimal + xSushiSupply_in: [BigDecimal!] + xSushiSupply_not_in: [BigDecimal!] + sushiStaked: BigDecimal + sushiStaked_not: BigDecimal + sushiStaked_gt: BigDecimal + sushiStaked_lt: BigDecimal + sushiStaked_gte: BigDecimal + sushiStaked_lte: BigDecimal + sushiStaked_in: [BigDecimal!] + sushiStaked_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + totalFeeAmount: BigDecimal + totalFeeAmount_not: BigDecimal + totalFeeAmount_gt: BigDecimal + totalFeeAmount_lt: BigDecimal + totalFeeAmount_gte: BigDecimal + totalFeeAmount_lte: BigDecimal + totalFeeAmount_in: [BigDecimal!] + totalFeeAmount_not_in: [BigDecimal!] + xSushiBurned: BigDecimal + xSushiBurned_not: BigDecimal + xSushiBurned_gt: BigDecimal + xSushiBurned_lt: BigDecimal + xSushiBurned_gte: BigDecimal + xSushiBurned_lte: BigDecimal + xSushiBurned_in: [BigDecimal!] + xSushiBurned_not_in: [BigDecimal!] + xSushiMinted: BigDecimal + xSushiMinted_not: BigDecimal + xSushiMinted_gt: BigDecimal + xSushiMinted_lt: BigDecimal + xSushiMinted_gte: BigDecimal + xSushiMinted_lte: BigDecimal + xSushiMinted_in: [BigDecimal!] + xSushiMinted_not_in: [BigDecimal!] + xSushiSushiRatio: BigDecimal + xSushiSushiRatio_not: BigDecimal + xSushiSushiRatio_gt: BigDecimal + xSushiSushiRatio_lt: BigDecimal + xSushiSushiRatio_gte: BigDecimal + xSushiSushiRatio_lte: BigDecimal + xSushiSushiRatio_in: [BigDecimal!] + xSushiSushiRatio_not_in: [BigDecimal!] + sushiXsushiRatio: BigDecimal + sushiXsushiRatio_not: BigDecimal + sushiXsushiRatio_gt: BigDecimal + sushiXsushiRatio_lt: BigDecimal + sushiXsushiRatio_gte: BigDecimal + sushiXsushiRatio_lte: BigDecimal + sushiXsushiRatio_in: [BigDecimal!] + sushiXsushiRatio_not_in: [BigDecimal!] + apr1m: BigDecimal + apr1m_not: BigDecimal + apr1m_gt: BigDecimal + apr1m_lt: BigDecimal + apr1m_gte: BigDecimal + apr1m_lte: BigDecimal + apr1m_in: [BigDecimal!] + apr1m_not_in: [BigDecimal!] + apr3m: BigDecimal + apr3m_not: BigDecimal + apr3m_gt: BigDecimal + apr3m_lt: BigDecimal + apr3m_gte: BigDecimal + apr3m_lte: BigDecimal + apr3m_in: [BigDecimal!] + apr3m_not_in: [BigDecimal!] + apr6m: BigDecimal + apr6m_not: BigDecimal + apr6m_gt: BigDecimal + apr6m_lt: BigDecimal + apr6m_gte: BigDecimal + apr6m_lte: BigDecimal + apr6m_in: [BigDecimal!] + apr6m_not_in: [BigDecimal!] + apr12m: BigDecimal + apr12m_not: BigDecimal + apr12m_gt: BigDecimal + apr12m_lt: BigDecimal + apr12m_gte: BigDecimal + apr12m_lte: BigDecimal + apr12m_in: [BigDecimal!] + apr12m_not_in: [BigDecimal!] + aprUpdatedAtTimestamp: BigInt + aprUpdatedAtTimestamp_not: BigInt + aprUpdatedAtTimestamp_gt: BigInt + aprUpdatedAtTimestamp_lt: BigInt + aprUpdatedAtTimestamp_gte: BigInt + aprUpdatedAtTimestamp_lte: BigInt + aprUpdatedAtTimestamp_in: [BigInt!] + aprUpdatedAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [XSushi_filter] + or: [XSushi_filter] +} + +enum XSushi_orderBy { + id + userCount + transactionCount + sushiSupply + xSushiSupply + sushiStaked + sushiHarvested + totalFeeAmount + xSushiBurned + xSushiMinted + xSushiSushiRatio + sushiXsushiRatio + apr1m + apr3m + apr6m + apr12m + aprUpdatedAtTimestamp +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts new file mode 100644 index 0000000000..f9a797a4c8 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts @@ -0,0 +1,64 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'sushi-bar'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'DaySnapshot': { kind: 'OBJECT'; name: 'DaySnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'DaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'DaySnapshot_orderBy': { name: 'DaySnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; + 'Fee': { kind: 'OBJECT'; name: 'Fee'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; } }; }; }; + 'FeeSender': { kind: 'OBJECT'; name: 'FeeSender'; fields: { 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeeSent': { name: 'totalFeeSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'FeeSender_filter': { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'fees_'; type: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'FeeSender_orderBy': { name: 'FeeSender_orderBy'; enumValues: 'id' | 'totalFeeSent' | 'fees' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; + 'Fee_filter': { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_'; type: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Fee_orderBy': { name: 'Fee_orderBy'; enumValues: 'id' | 'sender' | 'sender__id' | 'sender__totalFeeSent' | 'sender__createdAtBlock' | 'sender__createdAtTimestamp' | 'sender__modifiedAtBlock' | 'sender__modifiedAtTimestamp' | 'amount' | 'createdAtBlock' | 'createdAtTimestamp'; }; + 'HourSnapshot': { kind: 'OBJECT'; name: 'HourSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'HourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'HourSnapshot_orderBy': { name: 'HourSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; } }; }; }; + 'TransactionType': { name: 'TransactionType'; enumValues: 'TRANSFER' | 'MINT' | 'BURN'; }; + 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'from' | 'from__id' | 'from__balance' | 'from__createdAtBlock' | 'from__createdAtTimestamp' | 'from__modifiedAtBlock' | 'from__modifiedAtTimestamp' | 'to' | 'to__id' | 'to__balance' | 'to__createdAtBlock' | 'to__createdAtTimestamp' | 'to__modifiedAtBlock' | 'to__modifiedAtTimestamp' | 'amount' | 'type' | 'gasUsed' | 'gasLimit' | 'gasPrice' | 'createdAtBlock' | 'createdAtTimestamp'; }; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'deposits': { name: 'deposits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'withdrawals': { name: 'withdrawals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawals_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'deposits_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'balance' | 'withdrawals' | 'deposits' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; + 'WeekSnapshot': { kind: 'OBJECT'; name: 'WeekSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'WeekSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'WeekSnapshot_orderBy': { name: 'WeekSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; + 'XSushi': { kind: 'OBJECT'; name: 'XSushi'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'aprUpdatedAtTimestamp': { name: 'aprUpdatedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'XSushi_filter': { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'XSushi_orderBy': { name: 'XSushi_orderBy'; enumValues: 'id' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'aprUpdatedAtTimestamp'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts new file mode 100644 index 0000000000..47bf4fd576 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -0,0 +1,40 @@ +import { graphql } from '../graphql' + +export const PoolFieldsFragment = graphql(` + fragment PoolFields on Pair { + id + type + swapFee + twapEnabled + name + token0 { + name + id + decimals + symbol + } + token1 { + name + id + decimals + symbol + } + source + createdAtBlock + createdAtTimestamp + reserve0 + reserve1 + liquidity + liquidityUSD + liquidityNative + volumeUSD + volumeNative + volumeToken0 + volumeToken1 + feesNative + feesUSD + txCount + apr + aprUpdatedAtTimestamp + } +`) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts new file mode 100644 index 0000000000..637b762778 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/scalars.js' +import type { introspection } from './sushi-v2-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts index e69de29bb2..36c86ccd7c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts @@ -0,0 +1,8 @@ +export * from './queries/burns' +export * from './queries/liquidity-positions' +export * from './queries/mints' +export * from './queries/pool' +export * from './queries/pools' +export * from './queries/swaps' +export * from './queries/tokens' +export * from './queries/transactions' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts new file mode 100644 index 0000000000..8fa1f2a68a --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -0,0 +1,53 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2BurnsQuery = graphql(` + query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) { + burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + sender + liquidity + amount0 + amount1 + amountUSD + logIndex + transaction { + id + createdAtTimestamp + createdAtBlock + } + } + } +`) + +export type GetSushiV2Burns = VariablesOf + +export async function getSushiV2Burns( + chainId: SushiSwapChainId, + variables: GetSushiV2Burns, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2BurnsQuery, + variables, + }) + + if (result) { + return result.burns + } + + return [] +} + +export type SushiV2Burns = NonNullable< + ResultOf +>['burns'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts new file mode 100644 index 0000000000..9e2d5872fc --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -0,0 +1,51 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2LiquidityPositionsQuery = graphql(` + query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) { + liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + balance + pair { + id + } + user { + id + } + } + } +`) + +export type GetSushiV2LiquidityPositions = VariablesOf< + typeof SushiV2LiquidityPositionsQuery +> + +export async function getSushiV2LiquidityPositions( + chainId: SushiSwapChainId, + variables: GetSushiV2LiquidityPositions, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2LiquidityPositionsQuery, + variables, + }) + + if (result) { + return result.liquidityPositions + } + + return [] +} + +export type SushiV2LiquidityPositions = NonNullable< + ResultOf +>['liquidityPositions'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts new file mode 100644 index 0000000000..01e1e55c57 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -0,0 +1,53 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2MintsQuery = graphql(` + query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) { + mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + sender + liquidity + amount0 + amount1 + amountUSD + logIndex + transaction { + id + createdAtTimestamp + createdAtBlock + } + } + } +`) + +export type GetSushiV2Mints = VariablesOf + +export async function getSushiV2Mints( + chainId: SushiSwapChainId, + variables: GetSushiV2Mints, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2MintsQuery, + variables, + }) + + if (result) { + return result.mints + } + + return [] +} + +export type SushiV2Mints = NonNullable< + ResultOf +>['mints'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts new file mode 100644 index 0000000000..8d6f13b425 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -0,0 +1,39 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { PoolFieldsFragment } from '../fragments/pool-fields' +import { graphql } from '../graphql' + +export const SushiV2PoolQuery = graphql( + ` + query Pool($id: ID!, $block: Block_height) { + pool: pair(id: $id, block: $block) { + ...PoolFields + } + } +`, + [PoolFieldsFragment], +) + +export type GetSushiV2Pool = VariablesOf + +export async function getSushiV2Pool( + chainId: SushiSwapChainId, + variables: GetSushiV2Pool, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await request(url, SushiV2PoolQuery, variables) + + if (result) { + return result.pool + } + + throw new Error('No pool found') +} + +export type SushiV2Pool = NonNullable>['pool'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts new file mode 100644 index 0000000000..163e3fb0de --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -0,0 +1,46 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { PoolFieldsFragment } from '../fragments/pool-fields' +import { graphql } from '../graphql' + +export const SushiV2PoolsQuery = graphql( + ` + query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) { + pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + ...PoolFields + } + } +`, + [PoolFieldsFragment], +) + +export type GetSushiV2Pools = VariablesOf + +export async function getSushiV2Pools( + chainId: SushiSwapChainId, + variables: GetSushiV2Pools, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2PoolsQuery, + variables, + }) + + if (result) { + return result.pools + } + + return [] +} + +export type SushiV2Pools = NonNullable< + ResultOf +>['pools'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts new file mode 100644 index 0000000000..d3313276f6 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -0,0 +1,59 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2SwapsQuery = graphql(` + query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) { + swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + sender + to + amountIn + tokenIn { + symbol + } + amountOut + tokenOut { + symbol + } + amountUSD + logIndex + transaction { + id + createdAtTimestamp + createdAtBlock + } + } + } +`) + +export type GetSushiV2Swaps = VariablesOf + +export async function getSushiV2Swaps( + chainId: SushiSwapChainId, + variables: GetSushiV2Swaps, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2SwapsQuery, + variables, + }) + + if (result) { + return result.swaps + } + + return [] +} + +export type SushiV2Swaps = NonNullable< + ResultOf +>['swaps'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts new file mode 100644 index 0000000000..f54fc5a2a3 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -0,0 +1,51 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2TokensQuery = graphql(` + query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) { + tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + name + liquidityUSD + symbol + decimals + volumeUSD + feesUSD + price { + derivedNative + } + } + } +`) + +export type GetSushiV2Tokens = VariablesOf + +export async function getSushiV2Tokens( + chainId: SushiSwapChainId, + variables: GetSushiV2Tokens, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2TokensQuery, + variables, + }) + + if (result) { + return result.tokens + } + + return [] +} + +export type SushiV2Tokens = NonNullable< + ResultOf +>['tokens'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts new file mode 100644 index 0000000000..98222569ef --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -0,0 +1,79 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { ResultOf, VariablesOf } from 'gql.tada' + +import { requestPaged } from 'src/lib/request-paged' +import { graphql } from '../graphql' + +export const SushiV2TransactionsQuery = graphql(` + query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) { + transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + createdAtTimestamp + createdAtBlock + mints { + id + sender + liquidity + amount0 + amount1 + amountUSD + logIndex + } + burns { + id + sender + liquidity + amount0 + amount1 + amountUSD + logIndex + } + swaps { + id + sender + to + amountIn + tokenIn { + symbol + } + amountOut + tokenOut { + symbol + } + amountUSD + logIndex + } + } + } +`) + +export type GetSushiV2Transactions = VariablesOf< + typeof SushiV2TransactionsQuery +> + +export async function getSushiV2Transactions( + chainId: SushiSwapChainId, + variables: GetSushiV2Transactions, +) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2TransactionsQuery, + variables, + }) + + if (result) { + return result.transactions + } + + return [] +} + +export type SushiV2Transactions = NonNullable< + ResultOf +>['transactions'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts index e69de29bb2..7c3d0135ba 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts @@ -0,0 +1,9 @@ +export * from './queries/burns' +export * from './queries/collects' +export * from './queries/day-datas' +export * from './queries/factory' +export * from './queries/mints' +export * from './queries/pool' +export * from './queries/pools-by-token-pair' +export * from './queries/swaps' +export * from './queries/transactions' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index ecd57c97f3..a21a332a6b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -43,7 +43,7 @@ export type GetSushiV3PoolsByTokenPair = { token1: `0x${string}` } -export async function getSushiV3DayDatas( +export async function getSushiV3PoolsByTokenPair( chainId: SushiSwapV3ChainId, _variables: GetSushiV3PoolsByTokenPair, ) { @@ -74,6 +74,6 @@ export async function getSushiV3DayDatas( return [] } -export type SushiV3DayDatas = NonNullable< +export type SushiV3PoolsByTokenPair = NonNullable< ResultOf >['pools'] diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index ef91b628b4..adf39c168a 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -18,6 +18,12 @@ "tadaOutputLocation": "./src/subgraphs/blocks/blocks-env.d.ts", "tadaTurboLocation": "./src/subgraphs/blocks/blocks-cache.d.ts" }, + { + "name": "sushi-bar", + "schema": "./src/subgraphs/sushi-bar/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/sushi-bar/sushi-bar-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/sushi-bar/sushi-bar-cache.d.ts" + }, { "name": "sushi-v2", "schema": "./src/subgraphs/sushi-v2/schema.graphql", diff --git a/packages/graph-client/queries/pairs.graphql b/packages/graph-client/queries/pairs.graphql index 185a58a148..cacb2bc571 100644 --- a/packages/graph-client/queries/pairs.graphql +++ b/packages/graph-client/queries/pairs.graphql @@ -39,22 +39,6 @@ fragment PairFields on Pair { aprUpdatedAtTimestamp } -fragment TimeTravelPairFields on Pair { - id - reserve0 - reserve1 - liquidity - liquidityUSD - liquidityNative - volumeUSD - volumeNative - volumeToken0 - volumeToken1 - feesNative - feesUSD - apr -} - query PairsByChainId( $first: Int $skip: Int From 7462059f5f266a513be4789984334e20184cb62f Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Fri, 24 May 2024 10:09:17 +0200 Subject: [PATCH 021/119] fix: add missing resolver --- apps/evm/src/lib/graph.ts | 2 +- packages/graph-client/queries/bundles.graphql | 2 +- packages/graph-client/resolvers/index.ts | 2 ++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 9e80bf77d6..4bce199f33 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -80,7 +80,7 @@ export const getBundles = async () => { chainIds: SUPPORTED_CHAIN_IDS, }) - return bundles.reduce>>( + return bundles.reduce>>( (acc, cur) => { acc[cur.chainId] = cur return acc diff --git a/packages/graph-client/queries/bundles.graphql b/packages/graph-client/queries/bundles.graphql index 3975ab1e1f..774952c0ce 100644 --- a/packages/graph-client/queries/bundles.graphql +++ b/packages/graph-client/queries/bundles.graphql @@ -2,6 +2,6 @@ query Bundles($chainIds: [BigInt!]!) { bundles: bundlesByChainIds(chainIds: $chainIds) { id chainId - nativePrice: ethPrice + ethPrice } } diff --git a/packages/graph-client/resolvers/index.ts b/packages/graph-client/resolvers/index.ts index be31925f90..b727f2de08 100644 --- a/packages/graph-client/resolvers/index.ts +++ b/packages/graph-client/resolvers/index.ts @@ -13,6 +13,7 @@ import { resolvers as masterchef } from './masterchef/index.js' import { resolvers as pairs } from './pairs/index.js' import { resolvers as tokens } from './tokens/index.js' import { resolvers as user } from './user/index.js' +import { resolvers as v3 } from './v3/index.js' // export const resolvers: Resolvers = mergeResolvers([ export const resolvers: Resolvers = mergeResolvers([ @@ -28,4 +29,5 @@ export const resolvers: Resolvers = mergeResolvers([ user, furo, graphnode, + v3 ]) From 9e378ef8d5da38e758deed3a403eeec57fabe0f0 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Fri, 24 May 2024 08:10:37 +0000 Subject: [PATCH 022/119] chore: format --- apps/evm/src/lib/graph.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 4bce199f33..9e80bf77d6 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -80,7 +80,7 @@ export const getBundles = async () => { chainIds: SUPPORTED_CHAIN_IDS, }) - return bundles.reduce>>( + return bundles.reduce>>( (acc, cur) => { acc[cur.chainId] = cur return acc From ffb4e2be6348cd218ce01990a3b3142e37f191fb Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 24 May 2024 16:08:18 +0000 Subject: [PATCH 023/119] chore(pkgs/graph-client): move chainid to variables --- packages/graph-client-new/src/chainId.ts | 5 +++++ .../src/subgraphs/blocks/queries/blocks.ts | 6 ++++-- .../src/subgraphs/sushi-v2/multichain/m-pools.ts | 0 .../src/subgraphs/sushi-v2/queries/burns.ts | 12 +++++++----- .../sushi-v2/queries/liquidity-positions.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/mints.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/pool.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/pools.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/swaps.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/tokens.ts | 12 +++++++----- .../src/subgraphs/sushi-v2/queries/transactions.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/burns.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/collects.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/day-datas.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/factory.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/mints.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/pool.ts | 12 +++++++----- .../sushi-v3/queries/pools-by-token-pair.ts | 11 ++++++----- .../src/subgraphs/sushi-v3/queries/swaps.ts | 12 +++++++----- .../src/subgraphs/sushi-v3/queries/transactions.ts | 12 +++++++----- 20 files changed, 127 insertions(+), 87 deletions(-) create mode 100644 packages/graph-client-new/src/chainId.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts diff --git a/packages/graph-client-new/src/chainId.ts b/packages/graph-client-new/src/chainId.ts new file mode 100644 index 0000000000..2e8db8dd94 --- /dev/null +++ b/packages/graph-client-new/src/chainId.ts @@ -0,0 +1,5 @@ +import type { ChainId } from 'sushi/chain' + +export type ChainIdVariable = { chainId: T } + +export type ChainIdsVariable = { chainIds?: T[] } diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index c7b7518b16..1cdbbc4561 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -2,6 +2,7 @@ import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { ChainIdVariable } from 'src/chainId' import type { ChainId } from 'sushi/chain' import { graphql } from '../graphql' @@ -17,9 +18,10 @@ export const BlocksQuery = graphql( `, ) -export type GetBlocks = VariablesOf +export type GetBlocks = VariablesOf & + ChainIdVariable -export async function getBlocks(chainId: ChainId, variables: GetBlocks) { +export async function getBlocks({ chainId, ...variables }: GetBlocks) { const baseUrl = BLOCKS_SUBGRAPH_URL[chainId] if (!baseUrl) throw new Error(`No subgraph URL for chainId ${chainId}`) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index 8fa1f2a68a..f634202089 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -26,12 +27,13 @@ export const SushiV2BurnsQuery = graphql(` } `) -export type GetSushiV2Burns = VariablesOf +export type GetSushiV2Burns = VariablesOf & + ChainIdVariable -export async function getSushiV2Burns( - chainId: SushiSwapChainId, - variables: GetSushiV2Burns, -) { +export async function getSushiV2Burns({ + chainId, + ...variables +}: GetSushiV2Burns) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 9e2d5872fc..5e684a94da 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -24,12 +25,13 @@ export const SushiV2LiquidityPositionsQuery = graphql(` export type GetSushiV2LiquidityPositions = VariablesOf< typeof SushiV2LiquidityPositionsQuery -> +> & + ChainIdVariable -export async function getSushiV2LiquidityPositions( - chainId: SushiSwapChainId, - variables: GetSushiV2LiquidityPositions, -) { +export async function getSushiV2LiquidityPositions({ + chainId, + ...variables +}: GetSushiV2LiquidityPositions) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 01e1e55c57..95b06baec0 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -26,12 +27,13 @@ export const SushiV2MintsQuery = graphql(` } `) -export type GetSushiV2Mints = VariablesOf +export type GetSushiV2Mints = VariablesOf & + ChainIdVariable -export async function getSushiV2Mints( - chainId: SushiSwapChainId, - variables: GetSushiV2Mints, -) { +export async function getSushiV2Mints({ + chainId, + ...variables +}: GetSushiV2Mints) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 8d6f13b425..02bccf043c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -5,6 +5,7 @@ import { import type { ResultOf, VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { ChainIdVariable } from 'src/chainId' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -19,12 +20,13 @@ export const SushiV2PoolQuery = graphql( [PoolFieldsFragment], ) -export type GetSushiV2Pool = VariablesOf +export type GetSushiV2Pool = VariablesOf & + ChainIdVariable -export async function getSushiV2Pool( - chainId: SushiSwapChainId, - variables: GetSushiV2Pool, -) { +export async function getSushiV2Pool({ + chainId, + ...variables +}: GetSushiV2Pool) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV2PoolQuery, variables) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 163e3fb0de..b5647cd373 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -19,12 +20,13 @@ export const SushiV2PoolsQuery = graphql( [PoolFieldsFragment], ) -export type GetSushiV2Pools = VariablesOf +export type GetSushiV2Pools = VariablesOf & + ChainIdVariable -export async function getSushiV2Pools( - chainId: SushiSwapChainId, - variables: GetSushiV2Pools, -) { +export async function getSushiV2Pools({ + chainId, + ...variables +}: GetSushiV2Pools) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index d3313276f6..078f64056e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -32,12 +33,13 @@ export const SushiV2SwapsQuery = graphql(` } `) -export type GetSushiV2Swaps = VariablesOf +export type GetSushiV2Swaps = VariablesOf & + ChainIdVariable -export async function getSushiV2Swaps( - chainId: SushiSwapChainId, - variables: GetSushiV2Swaps, -) { +export async function getSushiV2Swaps({ + chainId, + ...variables +}: GetSushiV2Swaps) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index f54fc5a2a3..529a09e272 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -24,12 +25,13 @@ export const SushiV2TokensQuery = graphql(` } `) -export type GetSushiV2Tokens = VariablesOf +export type GetSushiV2Tokens = VariablesOf & + ChainIdVariable -export async function getSushiV2Tokens( - chainId: SushiSwapChainId, - variables: GetSushiV2Tokens, -) { +export async function getSushiV2Tokens({ + chainId, + ...variables +}: GetSushiV2Tokens) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 98222569ef..059ab47409 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -52,12 +53,13 @@ export const SushiV2TransactionsQuery = graphql(` export type GetSushiV2Transactions = VariablesOf< typeof SushiV2TransactionsQuery -> +> & + ChainIdVariable -export async function getSushiV2Transactions( - chainId: SushiSwapChainId, - variables: GetSushiV2Transactions, -) { +export async function getSushiV2Transactions({ + chainId, + ...variables +}: GetSushiV2Transactions) { const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index bf3ede1899..ed7ec4beec 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -27,12 +28,13 @@ export const SushiV3BurnsQuery = graphql(` } `) -export type GetSushiV3Burns = VariablesOf +export type GetSushiV3Burns = VariablesOf & + ChainIdVariable -export async function getSushiV3Burns( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Burns, -) { +export async function getSushiV3Burns({ + chainId, + ...variables +}: GetSushiV3Burns) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index 1b1b593055..1e58093505 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -25,12 +26,13 @@ export const SushiV3CollectsQuery = graphql(` } `) -export type GetSushiV3Collects = VariablesOf +export type GetSushiV3Collects = VariablesOf & + ChainIdVariable -export async function getSushiV3Collects( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Collects, -) { +export async function getSushiV3Collects({ + chainId, + ...variables +}: GetSushiV3Collects) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index b7645a2472..2da7de29a1 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -22,12 +23,13 @@ export const SushiV3DayDatasQuery = graphql(` } `) -export type GetSushiV3DayDatas = VariablesOf +export type GetSushiV3DayDatas = VariablesOf & + ChainIdVariable -export async function getSushiV3DayDatas( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3DayDatas, -) { +export async function getSushiV3DayDatas({ + chainId, + ...variables +}: GetSushiV3DayDatas) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index 3d642a2b53..a26fb7aff8 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -5,6 +5,7 @@ import { import type { ResultOf, VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { ChainIdVariable } from 'src/chainId' import { graphql } from '../graphql' export const SushiV3FactoriesQuery = graphql(` @@ -18,12 +19,13 @@ export const SushiV3FactoriesQuery = graphql(` } `) -export type GetSushiV3Factory = VariablesOf +export type GetSushiV3Factory = VariablesOf & + ChainIdVariable -export async function getSushiV3Factory( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Factory, -) { +export async function getSushiV3Factory({ + chainId, + ...variables +}: GetSushiV3Factory) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await request({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index 3164da5793..ecdc1919c1 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -28,12 +29,13 @@ export const SushiV3MintsQuery = graphql(` } `) -export type GetSushiV3Mints = VariablesOf +export type GetSushiV3Mints = VariablesOf & + ChainIdVariable -export async function getSushiV3Mints( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Mints, -) { +export async function getSushiV3Mints({ + chainId, + ...variables +}: GetSushiV3Mints) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index a986831ac1..6ee177765f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -5,6 +5,7 @@ import { import type { ResultOf, VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { ChainIdVariable } from 'src/chainId' import { graphql } from '../graphql' export const SushiV3PoolQuery = graphql(` @@ -59,12 +60,13 @@ export const SushiV3PoolQuery = graphql(` } `) -export type GetSushiV3Pool = VariablesOf +export type GetSushiV3Pool = VariablesOf & + ChainIdVariable -export async function getSushiV3Pool( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Pool, -) { +export async function getSushiV3Pool({ + chainId, + ...variables +}: GetSushiV3Pool) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV3PoolQuery, variables) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index a21a332a6b..bb741f557d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -5,6 +5,7 @@ import { import type { ResultOf, VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { ChainIdVariable } from 'src/chainId' import { graphql } from '../graphql' export const SushiV3PoolsByTokenPairQuery = graphql(` @@ -41,12 +42,12 @@ export const SushiV3PoolsByTokenPairQuery = graphql(` export type GetSushiV3PoolsByTokenPair = { token0: `0x${string}` token1: `0x${string}` -} +} & ChainIdVariable -export async function getSushiV3PoolsByTokenPair( - chainId: SushiSwapV3ChainId, - _variables: GetSushiV3PoolsByTokenPair, -) { +export async function getSushiV3PoolsByTokenPair({ + chainId, + ..._variables +}: GetSushiV3PoolsByTokenPair) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const tokens = [_variables.token0, _variables.token1].sort() as [ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index 4247f34ecd..0cf0753078 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -27,12 +28,13 @@ export const SushiV3SwapsQuery = graphql(` } `) -export type GetSushiV3Swaps = VariablesOf +export type GetSushiV3Swaps = VariablesOf & + ChainIdVariable -export async function getSushiV3Swaps( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Swaps, -) { +export async function getSushiV3Swaps({ + chainId, + ...variables +}: GetSushiV3Swaps) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index f36f5c3d95..d75082e5e6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { ResultOf, VariablesOf } from 'gql.tada' +import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -58,12 +59,13 @@ export const SushiV3TransactionsQuery = graphql(` export type GetSushiV3Transactions = VariablesOf< typeof SushiV3TransactionsQuery -> +> & + ChainIdVariable -export async function getSushiV3Transactions( - chainId: SushiSwapV3ChainId, - variables: GetSushiV3Transactions, -) { +export async function getSushiV3Transactions({ + chainId, + ...variables +}: GetSushiV3Transactions) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ From 7ce39eecd67be55a26d93299d2fa1cb7ab514eff Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 24 May 2024 18:42:36 +0000 Subject: [PATCH 024/119] chore(pkgs/graph-client): adjust returns --- packages/graph-client-new/src/chainId.ts | 6 +++ .../src/lib/fetch-multichain.ts | 44 +++++++++++++++++++ .../subgraphs/sushi-v2/multichain/m-pools.ts | 17 +++++++ .../src/subgraphs/sushi-v2/queries/burns.ts | 2 +- .../sushi-v2/queries/liquidity-positions.ts | 2 +- .../src/subgraphs/sushi-v2/queries/mints.ts | 2 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 2 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 2 +- .../src/subgraphs/sushi-v2/queries/swaps.ts | 2 +- .../src/subgraphs/sushi-v2/queries/tokens.ts | 2 +- .../sushi-v2/queries/transactions.ts | 2 +- .../src/subgraphs/sushi-v3/queries/burns.ts | 2 +- .../subgraphs/sushi-v3/queries/collects.ts | 2 +- .../subgraphs/sushi-v3/queries/day-datas.ts | 2 +- .../src/subgraphs/sushi-v3/queries/factory.ts | 2 +- .../src/subgraphs/sushi-v3/queries/mints.ts | 2 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 2 +- .../sushi-v3/queries/pools-by-token-pair.ts | 2 +- .../src/subgraphs/sushi-v3/queries/swaps.ts | 2 +- .../sushi-v3/queries/transactions.ts | 2 +- 20 files changed, 84 insertions(+), 17 deletions(-) create mode 100644 packages/graph-client-new/src/lib/fetch-multichain.ts diff --git a/packages/graph-client-new/src/chainId.ts b/packages/graph-client-new/src/chainId.ts index 2e8db8dd94..5b606df2f6 100644 --- a/packages/graph-client-new/src/chainId.ts +++ b/packages/graph-client-new/src/chainId.ts @@ -3,3 +3,9 @@ import type { ChainId } from 'sushi/chain' export type ChainIdVariable = { chainId: T } export type ChainIdsVariable = { chainIds?: T[] } + +export type ChainIdsInsteadOfChainId> = Omit< + T, + 'chainId' +> & + ChainIdsVariable diff --git a/packages/graph-client-new/src/lib/fetch-multichain.ts b/packages/graph-client-new/src/lib/fetch-multichain.ts new file mode 100644 index 0000000000..1f7c91c145 --- /dev/null +++ b/packages/graph-client-new/src/lib/fetch-multichain.ts @@ -0,0 +1,44 @@ +import type { ChainIdVariable } from 'src/chainId' +import type { ChainId } from 'sushi/chain' + +type FetchMultichain< + C extends ChainId, + A extends { [key: string]: any } & ChainIdVariable, + RET extends Promise, +> = { + chainIds: C[] + fetch: (variables: A) => RET + variables: Omit +} + +export async function fetchMultichain< + C extends ChainId, + A extends { [key: string]: any } & ChainIdVariable, + RET extends Promise, +>({ + chainIds, + fetch, + variables, +}: FetchMultichain): Promise<{ + data: Awaited + errors: any[] +}> { + const promises = await Promise.allSettled( + chainIds.map((chainId) => { + return fetch({ ...(variables as A), chainId }) + }), + ) + + const data = [] as Awaited + const errors = [] + + for (const promise of promises) { + if (promise.status === 'fulfilled') { + data.push(...promise.value) + } else { + errors.push(promise.reason) + } + } + + return { data, errors } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts index e69de29bb2..6cc7143441 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts @@ -0,0 +1,17 @@ +import { SUSHISWAP_ENABLED_NETWORKS } from '@sushiswap/graph-config' +import type { ChainIdsInsteadOfChainId } from 'src/chainId' +import { fetchMultichain } from 'src/lib/fetch-multichain' +import { type GetSushiV2Pools, getSushiV2Pools } from '..' + +export type GetSushiV2MPools = ChainIdsInsteadOfChainId + +export async function getSushiV2MPools({ + chainIds = [...SUSHISWAP_ENABLED_NETWORKS], + ...variables +}: GetSushiV2MPools) { + return fetchMultichain({ + chainIds, + fetch: getSushiV2Pools, + variables, + }) +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index f634202089..a9ee6299ed 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -47,7 +47,7 @@ export async function getSushiV2Burns({ return result.burns } - return [] + throw new Error('Failed to fetch burns') } export type SushiV2Burns = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 5e684a94da..d28159ba4c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -45,7 +45,7 @@ export async function getSushiV2LiquidityPositions({ return result.liquidityPositions } - return [] + throw new Error('Failed to fetch liquidity positions') } export type SushiV2LiquidityPositions = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 95b06baec0..17b0de782e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -47,7 +47,7 @@ export async function getSushiV2Mints({ return result.mints } - return [] + throw new Error('Failed to fetch mints') } export type SushiV2Mints = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 02bccf043c..380fdd89ae 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -35,7 +35,7 @@ export async function getSushiV2Pool({ return result.pool } - throw new Error('No pool found') + throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) } export type SushiV2Pool = NonNullable>['pool'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index b5647cd373..5d68f553e7 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -40,7 +40,7 @@ export async function getSushiV2Pools({ return result.pools } - return [] + throw new Error('Failed to fetch pools') } export type SushiV2Pools = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index 078f64056e..dd11b491d3 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -53,7 +53,7 @@ export async function getSushiV2Swaps({ return result.swaps } - return [] + throw new Error('Failed to fetch swaps') } export type SushiV2Swaps = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 529a09e272..f997047553 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -45,7 +45,7 @@ export async function getSushiV2Tokens({ return result.tokens } - return [] + throw new Error('Failed to fetch tokens') } export type SushiV2Tokens = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 059ab47409..261a22ca58 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -73,7 +73,7 @@ export async function getSushiV2Transactions({ return result.transactions } - return [] + throw new Error('Failed to fetch transactions') } export type SushiV2Transactions = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index ed7ec4beec..7d05aed643 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -48,7 +48,7 @@ export async function getSushiV3Burns({ return result.burns } - return [] + throw new Error('Failed to fetch burns') } export type SushiV3Burns = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index 1e58093505..fd0994cb0a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -46,7 +46,7 @@ export async function getSushiV3Collects({ return result.collects } - return [] + throw new Error('Failed to fetch collects') } export type SushiV3Collects = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index 2da7de29a1..0b6a4067db 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -43,7 +43,7 @@ export async function getSushiV3DayDatas({ return result.uniswapDayDatas } - return [] + throw new Error('Failed to fetch day datas') } export type SushiV3DayDatas = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index a26fb7aff8..3fe329c265 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -38,7 +38,7 @@ export async function getSushiV3Factory({ return result.factories[0]! } - throw new Error('No factory found') + throw new Error('Failed to fetch factory') } export type SushiV3Factory = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index ecdc1919c1..00883fdd5e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -49,7 +49,7 @@ export async function getSushiV3Mints({ return result.mints } - return [] + throw new Error('Failed to fetch mints') } export type SushiV3Mints = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 6ee177765f..7f380f9088 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -75,7 +75,7 @@ export async function getSushiV3Pool({ return result.pool } - throw new Error('No pool found') + throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) } export type SushiV3Pool = NonNullable>['pool'] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index bb741f557d..a7fd9f4133 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -72,7 +72,7 @@ export async function getSushiV3PoolsByTokenPair({ return result.pools } - return [] + throw new Error('Failed to fetch pools') } export type SushiV3PoolsByTokenPair = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index 0cf0753078..cff554a05a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -48,7 +48,7 @@ export async function getSushiV3Swaps({ return result.swaps } - return [] + throw new Error('Failed to fetch swaps') } export type SushiV3Swaps = NonNullable< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index d75082e5e6..2eed2ef294 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -79,7 +79,7 @@ export async function getSushiV3Transactions({ return result.transactions } - return [] + throw new Error('Failed to fetch transactions') } export type SushiV3Transactions = NonNullable< From d38121c35c298769ba1a1bcc68211c1dd274164c Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 24 May 2024 18:54:03 +0000 Subject: [PATCH 025/119] chore(pkgs/graph-client): move to ReturnType --- .../src/subgraphs/blocks/queries/blocks.ts | 4 ++-- .../src/subgraphs/sushi-bar/queries/bar-history.ts | 4 ++-- .../src/subgraphs/sushi-bar/queries/bar.ts | 4 ++-- .../src/subgraphs/sushi-v2/fragments/pool-fields.ts | 2 +- .../src/subgraphs/sushi-v2/queries/burns.ts | 6 ++---- .../src/subgraphs/sushi-v2/queries/liquidity-positions.ts | 8 ++++---- .../src/subgraphs/sushi-v2/queries/mints.ts | 6 ++---- .../src/subgraphs/sushi-v2/queries/pool.ts | 6 +++--- .../src/subgraphs/sushi-v2/queries/pools.ts | 6 ++---- .../src/subgraphs/sushi-v2/queries/swaps.ts | 6 ++---- .../src/subgraphs/sushi-v2/queries/tokens.ts | 6 ++---- .../src/subgraphs/sushi-v2/queries/transactions.ts | 8 ++++---- .../src/subgraphs/sushi-v3/queries/burns.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/collects.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/day-datas.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/factory.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/mints.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/pool.ts | 4 ++-- .../src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts | 8 ++++---- .../src/subgraphs/sushi-v3/queries/swaps.ts | 6 ++---- .../src/subgraphs/sushi-v3/queries/transactions.ts | 8 ++++---- 21 files changed, 50 insertions(+), 72 deletions(-) diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index 1cdbbc4561..e6a09da977 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -1,5 +1,5 @@ import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { ChainIdVariable } from 'src/chainId' @@ -33,4 +33,4 @@ export async function getBlocks({ chainId, ...variables }: GetBlocks) { return result } -export type Blocks = NonNullable> +export type Blocks = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts index f8d15f3a99..005d718465 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts @@ -1,5 +1,5 @@ import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import { graphql } from '../graphql' @@ -48,4 +48,4 @@ export async function getSushiBarHistory(variables: GetSushiBarHistory) { return result } -export type SushiBarHistory = NonNullable> +export type SushiBarHistory = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts index ca3fc048c7..a02b09457c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts @@ -1,5 +1,5 @@ import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import { graphql } from '../graphql' @@ -36,4 +36,4 @@ export async function getSushiBar(variables: GetSushiBar) { throw new Error('No bar') } -export type SushiBar = NonNullable>['xsushi'] +export type SushiBar = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts index 47bf4fd576..559b92fc08 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -1,7 +1,7 @@ import { graphql } from '../graphql' export const PoolFieldsFragment = graphql(` - fragment PoolFields on Pair { + fragment PoolFields on Pair @_unmask { id type swapFee diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index a9ee6299ed..41223ddf1e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -50,6 +50,4 @@ export async function getSushiV2Burns({ throw new Error('Failed to fetch burns') } -export type SushiV2Burns = NonNullable< - ResultOf ->['burns'] +export type SushiV2Burns = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index d28159ba4c..de22a9efa8 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -48,6 +48,6 @@ export async function getSushiV2LiquidityPositions({ throw new Error('Failed to fetch liquidity positions') } -export type SushiV2LiquidityPositions = NonNullable< - ResultOf ->['liquidityPositions'] +export type SushiV2LiquidityPositions = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 17b0de782e..2135eaad64 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -50,6 +50,4 @@ export async function getSushiV2Mints({ throw new Error('Failed to fetch mints') } -export type SushiV2Mints = NonNullable< - ResultOf ->['mints'] +export type SushiV2Mints = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 380fdd89ae..4e2451ad21 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { ChainIdVariable } from 'src/chainId' @@ -31,11 +31,11 @@ export async function getSushiV2Pool({ const result = await request(url, SushiV2PoolQuery, variables) - if (result) { + if (result.pool) { return result.pool } throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) } -export type SushiV2Pool = NonNullable>['pool'] +export type SushiV2Pool = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 5d68f553e7..227710082b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -43,6 +43,4 @@ export async function getSushiV2Pools({ throw new Error('Failed to fetch pools') } -export type SushiV2Pools = NonNullable< - ResultOf ->['pools'] +export type SushiV2Pools = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index dd11b491d3..3976585ae8 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -56,6 +56,4 @@ export async function getSushiV2Swaps({ throw new Error('Failed to fetch swaps') } -export type SushiV2Swaps = NonNullable< - ResultOf ->['swaps'] +export type SushiV2Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index f997047553..5078257d16 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -48,6 +48,4 @@ export async function getSushiV2Tokens({ throw new Error('Failed to fetch tokens') } -export type SushiV2Tokens = NonNullable< - ResultOf ->['tokens'] +export type SushiV2Tokens = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 261a22ca58..773cfb9868 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -76,6 +76,6 @@ export async function getSushiV2Transactions({ throw new Error('Failed to fetch transactions') } -export type SushiV2Transactions = NonNullable< - ResultOf ->['transactions'] +export type SushiV2Transactions = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index 7d05aed643..bfb49d8f9c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -51,6 +51,4 @@ export async function getSushiV3Burns({ throw new Error('Failed to fetch burns') } -export type SushiV3Burns = NonNullable< - ResultOf ->['burns'] +export type SushiV3Burns = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index fd0994cb0a..8730d92c00 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -49,6 +49,4 @@ export async function getSushiV3Collects({ throw new Error('Failed to fetch collects') } -export type SushiV3Collects = NonNullable< - ResultOf ->['collects'] +export type SushiV3Collects = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index 0b6a4067db..4b7baa84a5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -46,6 +46,4 @@ export async function getSushiV3DayDatas({ throw new Error('Failed to fetch day datas') } -export type SushiV3DayDatas = NonNullable< - ResultOf ->['uniswapDayDatas'] +export type SushiV3DayDatas = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index 3fe329c265..3dd6cd65a8 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { ChainIdVariable } from 'src/chainId' @@ -41,6 +41,4 @@ export async function getSushiV3Factory({ throw new Error('Failed to fetch factory') } -export type SushiV3Factory = NonNullable< - ResultOf ->['factories'][number] +export type SushiV3Factory = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index 00883fdd5e..ab120df59e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -52,6 +52,4 @@ export async function getSushiV3Mints({ throw new Error('Failed to fetch mints') } -export type SushiV3Mints = NonNullable< - ResultOf ->['mints'] +export type SushiV3Mints = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 7f380f9088..64e11f7996 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { ChainIdVariable } from 'src/chainId' @@ -78,4 +78,4 @@ export async function getSushiV3Pool({ throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) } -export type SushiV3Pool = NonNullable>['pool'] +export type SushiV3Pool = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index a7fd9f4133..358d005c45 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { ChainIdVariable } from 'src/chainId' @@ -75,6 +75,6 @@ export async function getSushiV3PoolsByTokenPair({ throw new Error('Failed to fetch pools') } -export type SushiV3PoolsByTokenPair = NonNullable< - ResultOf ->['pools'] +export type SushiV3PoolsByTokenPair = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index cff554a05a..d9f6b82ddf 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -51,6 +51,4 @@ export async function getSushiV3Swaps({ throw new Error('Failed to fetch swaps') } -export type SushiV3Swaps = NonNullable< - ResultOf ->['swaps'] +export type SushiV3Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index 2eed2ef294..597daa3050 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -2,7 +2,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL, type SushiSwapV3ChainId, } from '@sushiswap/graph-config' -import type { ResultOf, VariablesOf } from 'gql.tada' +import type { VariablesOf } from 'gql.tada' import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' @@ -82,6 +82,6 @@ export async function getSushiV3Transactions({ throw new Error('Failed to fetch transactions') } -export type SushiV3Transactions = NonNullable< - ResultOf ->['transactions'] +export type SushiV3Transactions = Awaited< + ReturnType +> From 89d8e96265c1f12959b8680605baea522faa4889 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 24 May 2024 19:47:30 +0000 Subject: [PATCH 026/119] feat(pkgs/graph-client): add transformations --- .../src/lib/fetch-multichain.ts | 2 +- .../src/lib/modifiers/add-chain-id.ts | 15 +++++++++++++++ .../modifiers/convert-id-to-multichain-id.ts | 12 ++++++++++++ .../src/lib/modifiers/copy-id-to-address.ts | 12 ++++++++++++ .../src/{ => lib/types}/chainId.ts | 0 .../graph-client-new/src/lib/types/hex.ts | 1 + .../src/{ => lib/types}/scalars.ts | 0 .../src/subgraphs/blocks/graphql.ts | 2 +- .../src/subgraphs/blocks/queries/blocks.ts | 2 +- .../src/subgraphs/sushi-bar/graphql.ts | 2 +- .../src/subgraphs/sushi-v2/graphql.ts | 2 +- .../subgraphs/sushi-v2/multichain/m-pools.ts | 2 +- .../src/subgraphs/sushi-v2/queries/burns.ts | 2 +- .../sushi-v2/queries/liquidity-positions.ts | 19 +++++++++++++++++-- .../src/subgraphs/sushi-v2/queries/mints.ts | 2 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 9 +++++++-- .../src/subgraphs/sushi-v2/queries/pools.ts | 9 +++++++-- .../src/subgraphs/sushi-v2/queries/swaps.ts | 2 +- .../src/subgraphs/sushi-v2/queries/tokens.ts | 9 +++++++-- .../sushi-v2/queries/transactions.ts | 2 +- .../src/subgraphs/sushi-v3/graphql.ts | 2 +- .../src/subgraphs/sushi-v3/queries/burns.ts | 2 +- .../subgraphs/sushi-v3/queries/collects.ts | 2 +- .../subgraphs/sushi-v3/queries/day-datas.ts | 2 +- .../src/subgraphs/sushi-v3/queries/factory.ts | 11 ++++++++--- .../src/subgraphs/sushi-v3/queries/mints.ts | 5 +++-- .../src/subgraphs/sushi-v3/queries/pool.ts | 11 ++++++++--- .../sushi-v3/queries/pools-by-token-pair.ts | 9 +++++++-- .../src/subgraphs/sushi-v3/queries/swaps.ts | 2 +- .../sushi-v3/queries/transactions.ts | 3 ++- 30 files changed, 121 insertions(+), 34 deletions(-) create mode 100644 packages/graph-client-new/src/lib/modifiers/add-chain-id.ts create mode 100644 packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts create mode 100644 packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts rename packages/graph-client-new/src/{ => lib/types}/chainId.ts (100%) create mode 100644 packages/graph-client-new/src/lib/types/hex.ts rename packages/graph-client-new/src/{ => lib/types}/scalars.ts (100%) diff --git a/packages/graph-client-new/src/lib/fetch-multichain.ts b/packages/graph-client-new/src/lib/fetch-multichain.ts index 1f7c91c145..6e4728f2c9 100644 --- a/packages/graph-client-new/src/lib/fetch-multichain.ts +++ b/packages/graph-client-new/src/lib/fetch-multichain.ts @@ -1,4 +1,4 @@ -import type { ChainIdVariable } from 'src/chainId' +import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' type FetchMultichain< diff --git a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts new file mode 100644 index 0000000000..d6e4c146a6 --- /dev/null +++ b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts @@ -0,0 +1,15 @@ +import type { ChainId } from 'sushi/chain' +import type { ChainIdVariable } from '../types/chainId' + +type ReturnType> = T & + ChainIdVariable + +export function addChainId>( + chainId: C, + object: T, +): ReturnType { + Object.defineProperty(object, 'chainId', { + value: chainId, + }) + return object as ReturnType +} diff --git a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts new file mode 100644 index 0000000000..48709d7bf6 --- /dev/null +++ b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts @@ -0,0 +1,12 @@ +import type { ChainId } from 'sushi/chain' + +type ReturnType = T & { + id: `${T['chainId']}:${string}` +} + +export function convertIdToMultichainId< + T extends { id: string; chainId: ChainId }, +>(object: T): ReturnType { + object.id = `${object.chainId}:${object.id}` + return object as ReturnType +} diff --git a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts new file mode 100644 index 0000000000..f4a94eea06 --- /dev/null +++ b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts @@ -0,0 +1,12 @@ +type ReturnType = T & { + address: `0x${string}` +} + +export function copyIdToAddress( + object: T, +): ReturnType { + Object.defineProperty(object, 'address', { + value: object.id, + }) + return object as ReturnType +} diff --git a/packages/graph-client-new/src/chainId.ts b/packages/graph-client-new/src/lib/types/chainId.ts similarity index 100% rename from packages/graph-client-new/src/chainId.ts rename to packages/graph-client-new/src/lib/types/chainId.ts diff --git a/packages/graph-client-new/src/lib/types/hex.ts b/packages/graph-client-new/src/lib/types/hex.ts new file mode 100644 index 0000000000..0a1099279c --- /dev/null +++ b/packages/graph-client-new/src/lib/types/hex.ts @@ -0,0 +1 @@ +export type Hex = `0x${string}` diff --git a/packages/graph-client-new/src/scalars.ts b/packages/graph-client-new/src/lib/types/scalars.ts similarity index 100% rename from packages/graph-client-new/src/scalars.ts rename to packages/graph-client-new/src/lib/types/scalars.ts diff --git a/packages/graph-client-new/src/subgraphs/blocks/graphql.ts b/packages/graph-client-new/src/subgraphs/blocks/graphql.ts index 26cc89b066..f6de3c9c20 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/graphql.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/graphql.ts @@ -1,5 +1,5 @@ import { initGraphQLTada } from 'gql.tada' -import type { Scalars } from 'src/scalars.js' +import type { Scalars } from 'src/lib/types/scalars.js' import type { introspection } from './blocks-env.js' export const graphql = initGraphQLTada<{ diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index e6a09da977..0bbb8db4dd 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -2,7 +2,7 @@ import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' -import type { ChainIdVariable } from 'src/chainId' +import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' import { graphql } from '../graphql' diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts index c8ac20af86..ecbcd48bcf 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts @@ -1,5 +1,5 @@ import { initGraphQLTada } from 'gql.tada' -import type { Scalars } from 'src/scalars.js' +import type { Scalars } from 'src/lib/types/scalars.js' import type { introspection } from './sushi-bar-env.js' export const graphql = initGraphQLTada<{ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts index 637b762778..f63cba0e01 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts @@ -1,5 +1,5 @@ import { initGraphQLTada } from 'gql.tada' -import type { Scalars } from 'src/scalars.js' +import type { Scalars } from 'src/lib/types/scalars.js' import type { introspection } from './sushi-v2-env.js' export const graphql = initGraphQLTada<{ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts index 6cc7143441..81f0e44cba 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts @@ -1,6 +1,6 @@ import { SUSHISWAP_ENABLED_NETWORKS } from '@sushiswap/graph-config' -import type { ChainIdsInsteadOfChainId } from 'src/chainId' import { fetchMultichain } from 'src/lib/fetch-multichain' +import type { ChainIdsInsteadOfChainId } from 'src/lib/types/chainId' import { type GetSushiV2Pools, getSushiV2Pools } from '..' export type GetSushiV2MPools = ChainIdsInsteadOfChainId diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index 41223ddf1e..a0e4bffe7c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV2BurnsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index de22a9efa8..69d18a85f3 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -4,8 +4,12 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const SushiV2LiquidityPositionsQuery = graphql(` @@ -42,7 +46,18 @@ export async function getSushiV2LiquidityPositions({ }) if (result) { - return result.liquidityPositions + return result.liquidityPositions.map((position) => { + const pool = convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, position.pair)), + ) + + return { + id: position.id, + balance: position.balance, + pool, + user: position.user.id as Hex, + } + }) } throw new Error('Failed to fetch liquidity positions') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 2135eaad64..104039af1e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV2MintsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 4e2451ad21..31e8672f0d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -5,7 +5,10 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -32,7 +35,9 @@ export async function getSushiV2Pool({ const result = await request(url, SushiV2PoolQuery, variables) if (result.pool) { - return result.pool + return convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, result.pool)), + ) } throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 227710082b..61796071c6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -4,8 +4,11 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -37,7 +40,9 @@ export async function getSushiV2Pools({ }) if (result) { - return result.pools + return result.pools.map((pool) => + convertIdToMultichainId(copyIdToAddress(addChainId(chainId, pool))), + ) } throw new Error('Failed to fetch pools') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index 3976585ae8..8a6bd7da4f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV2SwapsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 5078257d16..f0e930b1ee 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -4,8 +4,11 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV2TokensQuery = graphql(` @@ -42,7 +45,9 @@ export async function getSushiV2Tokens({ }) if (result) { - return result.tokens + return result.tokens.map((token) => + convertIdToMultichainId(copyIdToAddress(addChainId(chainId, token))), + ) } throw new Error('Failed to fetch tokens') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 773cfb9868..047c107f54 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV2TransactionsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts index dca1aafa7f..09d313d696 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts @@ -1,5 +1,5 @@ import { initGraphQLTada } from 'gql.tada' -import type { Scalars } from 'src/scalars.js' +import type { Scalars } from 'src/lib/types/scalars.js' import type { introspection } from './sushi-v3-env.js' export const graphql = initGraphQLTada<{ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index bfb49d8f9c..84abb130f9 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3BurnsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index 8730d92c00..6721fe7475 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3CollectsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index 4b7baa84a5..bd805db145 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3DayDatasQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index 3dd6cd65a8..bd9f835296 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -5,7 +5,10 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3FactoriesQuery = graphql(` @@ -34,8 +37,10 @@ export async function getSushiV3Factory({ variables, }) - if (result) { - return result.factories[0]! + if (result.factories[0]) { + return convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, result.factories[0])), + ) } throw new Error('Failed to fetch factory') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index ab120df59e..e1fd33c8b5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -4,8 +4,9 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3MintsQuery = graphql(` @@ -46,7 +47,7 @@ export async function getSushiV3Mints({ }) if (result) { - return result.mints + return result.mints.map((mint) => addChainId(chainId, mint)) } throw new Error('Failed to fetch mints') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 64e11f7996..edd53e572a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -5,7 +5,10 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3PoolQuery = graphql(` @@ -71,8 +74,10 @@ export async function getSushiV3Pool({ const result = await request(url, SushiV3PoolQuery, variables) - if (result) { - return result.pool + if (result.pool) { + return convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, result.pool)), + ) } throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index 358d005c45..ed63520d62 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -5,7 +5,10 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' -import type { ChainIdVariable } from 'src/chainId' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3PoolsByTokenPairQuery = graphql(` @@ -69,7 +72,9 @@ export async function getSushiV3PoolsByTokenPair({ }) if (result) { - return result.pools + return result.pools.map((pool) => + convertIdToMultichainId(copyIdToAddress(addChainId(chainId, pool))), + ) } throw new Error('Failed to fetch pools') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index d9f6b82ddf..afb30e1d1b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -4,8 +4,8 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3SwapsQuery = graphql(` diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index 597daa3050..1a7616990a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -4,8 +4,9 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import type { ChainIdVariable } from 'src/chainId' + import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' export const SushiV3TransactionsQuery = graphql(` From d1fc56d8677292658be13399b25bf47cf202c0d1 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sat, 25 May 2024 11:38:32 +0000 Subject: [PATCH 027/119] feat(pkgs/graph-client): more stuff --- config/graph/src/index.ts | 35 +- packages/graph-client-new/schema.graphql | 6326 --- packages/graph-client-new/schema.json | 43738 ---------------- .../scripts/update-schemas.ts | 8 + .../src/composite/chef-user-positions.ts | 76 + .../src/composite/combined-user-positions.ts | 91 + .../graph-client-new/src/lib/fetch-error.ts | 13 + .../src/lib/fetch-multichain.ts | 23 +- .../graph-client-new/src/lib/request-paged.ts | 14 +- .../src/subgraphs/blocks/blocks-cache.d.ts | 3 +- .../src/subgraphs/blocks/queries/blocks.ts | 5 +- .../src/subgraphs/master-chef-v1/graphql.ts | 8 + .../src/subgraphs/master-chef-v1/index.ts | 1 + .../master-chef-v1/master-chef-v1-cache.d.ts | 10 + .../master-chef-v1/master-chef-v1-env.d.ts | 54 + .../master-chef-v1/queries/user-positions.ts | 62 + .../subgraphs/master-chef-v1/schema.graphql | 1318 + .../src/subgraphs/master-chef-v2/graphql.ts | 8 + .../src/subgraphs/master-chef-v2/index.ts | 1 + .../master-chef-v2/master-chef-v2-cache.d.ts | 10 + .../master-chef-v2/master-chef-v2-env.d.ts | 51 + .../master-chef-v2/queries/user-positions.ts | 62 + .../subgraphs/master-chef-v2/schema.graphql | 749 + .../src/subgraphs/mini-chef/graphql.ts | 8 + .../src/subgraphs/mini-chef/index.ts | 1 + .../subgraphs/mini-chef/mini-chef-cache.d.ts | 10 + .../subgraphs/mini-chef/mini-chef-env.d.ts | 54 + .../mini-chef/queries/user-positions.ts | 67 + .../src/subgraphs/mini-chef/schema.graphql | 878 + .../src/subgraphs/sushi-bar/queries/bar.ts | 3 +- .../subgraphs/sushi-bar/sushi-bar-cache.d.ts | 12 + .../src/subgraphs/sushi-v2/queries/burns.ts | 3 +- .../sushi-v2/queries/liquidity-positions.ts | 3 +- .../src/subgraphs/sushi-v2/queries/mints.ts | 3 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 6 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 3 +- .../src/subgraphs/sushi-v2/queries/swaps.ts | 3 +- .../src/subgraphs/sushi-v2/queries/tokens.ts | 3 +- .../sushi-v2/queries/transactions.ts | 3 +- .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 19 +- .../src/subgraphs/sushi-v3/queries/burns.ts | 3 +- .../subgraphs/sushi-v3/queries/collects.ts | 3 +- .../subgraphs/sushi-v3/queries/day-datas.ts | 3 +- .../src/subgraphs/sushi-v3/queries/factory.ts | 3 +- .../src/subgraphs/sushi-v3/queries/mints.ts | 3 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 6 +- .../sushi-v3/queries/pools-by-token-pair.ts | 3 +- .../src/subgraphs/sushi-v3/queries/swaps.ts | 3 +- .../sushi-v3/queries/transactions.ts | 4 +- .../subgraphs/sushi-v3/sushi-v3-cache.d.ts | 26 + packages/graph-client-new/tsconfig.json | 18 + 51 files changed, 3712 insertions(+), 50108 deletions(-) delete mode 100644 packages/graph-client-new/schema.graphql delete mode 100644 packages/graph-client-new/schema.json create mode 100644 packages/graph-client-new/src/composite/chef-user-positions.ts create mode 100644 packages/graph-client-new/src/composite/combined-user-positions.ts create mode 100644 packages/graph-client-new/src/lib/fetch-error.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts create mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts create mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql create mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts index ab76d0d378..01099bfe73 100644 --- a/config/graph/src/index.ts +++ b/config/graph/src/index.ts @@ -317,7 +317,7 @@ export const SECONDS_BETWEEN_BLOCKS: Record = { } as const export const SUSHI_BAR_SUBGRAPH_URL = - 'api.thegraph.com/subgraphs/name/sushiswap/sushi-bar' as const + 'api.thegraph.com/subgraphs/name/sushi-labs/xsushi' as const export const SUSHISWAP_SUBGRAPH_URL: Record = { [ChainId.ETHEREUM]: `${GRAPH_HOST}/sushi-v2/sushiswap-ethereum`, @@ -392,7 +392,34 @@ export const TRIDENT_SUBGRAPH_URL: Record = { [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/trident-avalanche`, } as const -export const MINICHEF_SUBGRAPH_URL = { +export const MINICHEF_ENABLED_NETWORKS = [ + ChainId.POLYGON, + ChainId.GNOSIS, + // ChainId.HARMONY, + ChainId.ARBITRUM, + ChainId.CELO, + ChainId.MOONRIVER, + ChainId.FUSE, + ChainId.FANTOM, + ChainId.MOONBEAM, + ChainId.KAVA, + ChainId.METIS, + ChainId.BOBA, + ChainId.ARBITRUM_NOVA, + ChainId.BTTC, + ChainId.OPTIMISM, + ChainId.AVALANCHE, + ChainId.BSC, +] as const + +export type MiniChefChainId = (typeof MINICHEF_ENABLED_NETWORKS)[number] + +export const isMiniChefChainId = ( + chainId: ChainId, +): chainId is MiniChefChainId => + MINICHEF_ENABLED_NETWORKS.includes(chainId as MiniChefChainId) + +export const MINICHEF_SUBGRAPH_URL: Record = { [ChainId.POLYGON]: `${GRAPH_HOST}/jiro-ono/minichef-staging-updates`, // new trident subgraph not synced yet [ChainId.GNOSIS]: `${GRAPH_HOST}/jiro-ono/gnosis-minichef-staging`, // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // subgraph broken @@ -410,7 +437,7 @@ export const MINICHEF_SUBGRAPH_URL = { [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushiswap/minichef-optimism`, [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushiswap/minichef-avalanche`, [ChainId.BSC]: `${GRAPH_HOST}/sushiswap/minichef-bsc`, -} as const +} export const MASTERCHEF_V1_SUBGRAPH_NAME = 'jiro-ono/masterchef-staging' as const @@ -419,7 +446,7 @@ export const MASTERCHEF_V2_SUBGRAPH_NAME = 'sushiswap/master-chefv2' as const export const MASTERCHEF_V1_SUBGRAPH_URL = `${GRAPH_HOST}/jiro-ono/masterchef-staging` as const export const MASTERCHEF_V2_SUBGRAPH_URL = - `${GRAPH_HOST}sushiswap/master-chefv2` as const + `${GRAPH_HOST}/sushiswap/master-chefv2` as const export const FURO_ENABLED_NETWORKS = [ ChainId.ETHEREUM, diff --git a/packages/graph-client-new/schema.graphql b/packages/graph-client-new/schema.graphql deleted file mode 100644 index 766d37e403..0000000000 --- a/packages/graph-client-new/schema.graphql +++ /dev/null @@ -1,6326 +0,0 @@ -""" -Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. -""" -directive @entity on OBJECT - -"""Defined a Subgraph ID for an object type""" -directive @subgraphId(id: String!) on OBJECT - -""" -creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. -""" -directive @derivedFrom(field: String!) on FIELD_DEFINITION - -enum Aggregation_interval { - hour - day -} - -scalar BigDecimal - -scalar BigInt - -input BlockChangedFilter { - number_gte: Int! -} - -input Block_height { - hash: Bytes - number: Int - number_gte: Int -} - -type Bundle { - id: ID! - ethPriceUSD: BigDecimal! -} - -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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Bundle_filter] - or: [Bundle_filter] -} - -enum Bundle_orderBy { - id - ethPriceUSD -} - -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 -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - token0: String - token0_not: String - token0_gt: String - token0_lt: String - token0_gte: String - token0_lte: String - token0_in: [String!] - token0_not_in: [String!] - token0_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Burn_filter] - or: [Burn_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__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 -} - -scalar Bytes - -type Collect { - id: ID! - transaction: Transaction! - timestamp: BigInt! - pool: Pool! - owner: Bytes - amount0: BigDecimal! - amount1: BigDecimal! - amountUSD: BigDecimal - tickLower: BigInt! - tickUpper: BigInt! - logIndex: BigInt -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - owner: 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Collect_filter] - or: [Collect_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__liquidityProviderCount - owner - amount0 - amount1 - amountUSD - tickLower - tickUpper - logIndex -} - -type DecreaseEvent { - id: ID! - pool: Pool! - tokenID: BigInt! - position: Position! - amount0: BigInt! - amount1: BigInt! - token0: Token! - token1: Token! - timeStamp: BigInt! - transaction: Transaction! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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_contains: String - position_contains_nocase: String - position_not_contains: String - position_not_contains_nocase: 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_: 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_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: Transaction_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [DecreaseEvent_filter] - or: [DecreaseEvent_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__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 -} - -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! -} - -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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Factory_filter] - or: [Factory_filter] -} - -enum Factory_orderBy { - id - poolCount - txCount - totalVolumeUSD - totalVolumeETH - totalFeesUSD - totalFeesETH - untrackedVolumeUSD - totalValueLockedUSD - totalValueLockedETH - totalValueLockedUSDUntracked - totalValueLockedETHUntracked - owner -} - -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 -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - sender: 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Flash_filter] - or: [Flash_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__liquidityProviderCount - sender - recipient - amount0 - amount1 - amountUSD - amount0Paid - amount1Paid - logIndex -} - -type IncreaseEvent { - id: ID! - pool: Pool! - tokenID: BigInt! - position: Position! - amount0: BigInt! - amount1: BigInt! - token0: Token! - token1: Token! - timeStamp: BigInt! - transaction: Transaction! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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_contains: String - position_contains_nocase: String - position_not_contains: String - position_not_contains_nocase: 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_: 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_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: Transaction_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [IncreaseEvent_filter] - or: [IncreaseEvent_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__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 -} - -"8 bytes signed integer\n" -scalar Int8 - -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 -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - token0: String - token0_not: String - token0_gt: String - token0_lt: String - token0_gte: String - token0_lte: String - token0_in: [String!] - token0_not_in: [String!] - token0_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Mint_filter] - or: [Mint_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__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 -} - -"""Defines the order direction, either ascending or descending""" -enum OrderDirection { - asc - desc -} - -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! - liquidityProviderCount: BigInt! - poolHourData(skip: Int = 0, first: Int = 100, orderBy: PoolHourData_orderBy, orderDirection: OrderDirection, where: PoolHourData_filter): [PoolHourData!]! - poolDayData(skip: Int = 0, first: Int = 100, orderBy: PoolDayData_orderBy, orderDirection: OrderDirection, where: PoolDayData_filter): [PoolDayData!]! - mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! - burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! - swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! - collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! - ticks(skip: Int = 0, first: Int = 100, orderBy: Tick_orderBy, orderDirection: OrderDirection, where: Tick_filter): [Tick!]! -} - -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! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [PoolDayData_filter] - or: [PoolDayData_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__liquidityProviderCount - liquidity - sqrtPrice - token0Price - token1Price - tick - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - tvlUSD - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - open - high - low - close -} - -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! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [PoolHourData_filter] - or: [PoolHourData_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__liquidityProviderCount - liquidity - sqrtPrice - token0Price - token1Price - tick - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - tvlUSD - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - open - high - low - close -} - -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_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - feeTier: BigInt - feeTier_not: BigInt - feeTier_gt: BigInt - feeTier_lt: BigInt - feeTier_gte: BigInt - feeTier_lte: BigInt - feeTier_in: [BigInt!] - feeTier_not_in: [BigInt!] - 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!] - 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 - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Pool_filter] - or: [Pool_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 - liquidityProviderCount - poolHourData - poolDayData - mints - burns - swaps - collects - ticks -} - -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(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! - decreaseEvents(skip: Int = 0, first: Int = 100, orderBy: IncreaseEvent_orderBy, orderDirection: OrderDirection, where: IncreaseEvent_filter): [IncreaseEvent!]! -} - -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! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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_contains: String - position_contains_nocase: String - position_not_contains: String - position_not_contains_nocase: 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_: 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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [PositionSnapshot_filter] - or: [PositionSnapshot_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__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 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - token0: String - token0_not: String - token0_gt: String - token0_lt: String - token0_gte: String - token0_lte: String - token0_in: [String!] - token0_not_in: [String!] - token0_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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_contains: String - tickLower_contains_nocase: String - tickLower_not_contains: String - tickLower_not_contains_nocase: 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_: 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_contains: String - tickUpper_contains_nocase: String - tickUpper_not_contains: String - tickUpper_not_contains_nocase: 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_: 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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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 - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Position_filter] - or: [Position_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__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 -} - -type Query { - factory( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Factory - factories( - skip: Int = 0 - first: Int = 100 - orderBy: Factory_orderBy - orderDirection: OrderDirection - where: Factory_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Factory!]! - bundle( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Bundle - bundles( - skip: Int = 0 - first: Int = 100 - orderBy: Bundle_orderBy - orderDirection: OrderDirection - where: Bundle_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Bundle!]! - token( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Token - tokens( - skip: Int = 0 - first: Int = 100 - orderBy: Token_orderBy - orderDirection: OrderDirection - where: Token_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Token!]! - pool( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Pool - pools( - skip: Int = 0 - first: Int = 100 - orderBy: Pool_orderBy - orderDirection: OrderDirection - where: Pool_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Pool!]! - tick( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Tick - ticks( - skip: Int = 0 - first: Int = 100 - orderBy: Tick_orderBy - orderDirection: OrderDirection - where: Tick_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Tick!]! - position( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Position - positions( - skip: Int = 0 - first: Int = 100 - orderBy: Position_orderBy - orderDirection: OrderDirection - where: Position_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Position!]! - positionSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PositionSnapshot - positionSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: PositionSnapshot_orderBy - orderDirection: OrderDirection - where: PositionSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PositionSnapshot!]! - transaction( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Transaction - transactions( - skip: Int = 0 - first: Int = 100 - orderBy: Transaction_orderBy - orderDirection: OrderDirection - where: Transaction_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Transaction!]! - mint( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Mint - mints( - skip: Int = 0 - first: Int = 100 - orderBy: Mint_orderBy - orderDirection: OrderDirection - where: Mint_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Mint!]! - burn( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Burn - burns( - skip: Int = 0 - first: Int = 100 - orderBy: Burn_orderBy - orderDirection: OrderDirection - where: Burn_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Burn!]! - swap( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Swap - swaps( - skip: Int = 0 - first: Int = 100 - orderBy: Swap_orderBy - orderDirection: OrderDirection - where: Swap_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Swap!]! - collect( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Collect - collects( - skip: Int = 0 - first: Int = 100 - orderBy: Collect_orderBy - orderDirection: OrderDirection - where: Collect_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Collect!]! - flash( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Flash - flashes( - skip: Int = 0 - first: Int = 100 - orderBy: Flash_orderBy - orderDirection: OrderDirection - where: Flash_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Flash!]! - uniswapDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): UniswapDayData - uniswapDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: UniswapDayData_orderBy - orderDirection: OrderDirection - where: UniswapDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [UniswapDayData!]! - poolDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PoolDayData - poolDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: PoolDayData_orderBy - orderDirection: OrderDirection - where: PoolDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PoolDayData!]! - poolHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PoolHourData - poolHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: PoolHourData_orderBy - orderDirection: OrderDirection - where: PoolHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PoolHourData!]! - tickHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TickHourData - tickHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TickHourData_orderBy - orderDirection: OrderDirection - where: TickHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TickHourData!]! - tickDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TickDayData - tickDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TickDayData_orderBy - orderDirection: OrderDirection - where: TickDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TickDayData!]! - tokenDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenDayData - tokenDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TokenDayData_orderBy - orderDirection: OrderDirection - where: TokenDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenDayData!]! - tokenHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenHourData - tokenHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TokenHourData_orderBy - orderDirection: OrderDirection - where: TokenHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenHourData!]! - increaseEvent( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): IncreaseEvent - increaseEvents( - skip: Int = 0 - first: Int = 100 - orderBy: IncreaseEvent_orderBy - orderDirection: OrderDirection - where: IncreaseEvent_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [IncreaseEvent!]! - decreaseEvent( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): DecreaseEvent - decreaseEvents( - skip: Int = 0 - first: Int = 100 - orderBy: DecreaseEvent_orderBy - orderDirection: OrderDirection - where: DecreaseEvent_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [DecreaseEvent!]! - - """Access to subgraph metadata""" - _meta(block: Block_height): _Meta_ -} - -type Subscription { - factory( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Factory - factories( - skip: Int = 0 - first: Int = 100 - orderBy: Factory_orderBy - orderDirection: OrderDirection - where: Factory_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Factory!]! - bundle( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Bundle - bundles( - skip: Int = 0 - first: Int = 100 - orderBy: Bundle_orderBy - orderDirection: OrderDirection - where: Bundle_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Bundle!]! - token( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Token - tokens( - skip: Int = 0 - first: Int = 100 - orderBy: Token_orderBy - orderDirection: OrderDirection - where: Token_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Token!]! - pool( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Pool - pools( - skip: Int = 0 - first: Int = 100 - orderBy: Pool_orderBy - orderDirection: OrderDirection - where: Pool_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Pool!]! - tick( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Tick - ticks( - skip: Int = 0 - first: Int = 100 - orderBy: Tick_orderBy - orderDirection: OrderDirection - where: Tick_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Tick!]! - position( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Position - positions( - skip: Int = 0 - first: Int = 100 - orderBy: Position_orderBy - orderDirection: OrderDirection - where: Position_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Position!]! - positionSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PositionSnapshot - positionSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: PositionSnapshot_orderBy - orderDirection: OrderDirection - where: PositionSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PositionSnapshot!]! - transaction( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Transaction - transactions( - skip: Int = 0 - first: Int = 100 - orderBy: Transaction_orderBy - orderDirection: OrderDirection - where: Transaction_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Transaction!]! - mint( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Mint - mints( - skip: Int = 0 - first: Int = 100 - orderBy: Mint_orderBy - orderDirection: OrderDirection - where: Mint_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Mint!]! - burn( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Burn - burns( - skip: Int = 0 - first: Int = 100 - orderBy: Burn_orderBy - orderDirection: OrderDirection - where: Burn_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Burn!]! - swap( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Swap - swaps( - skip: Int = 0 - first: Int = 100 - orderBy: Swap_orderBy - orderDirection: OrderDirection - where: Swap_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Swap!]! - collect( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Collect - collects( - skip: Int = 0 - first: Int = 100 - orderBy: Collect_orderBy - orderDirection: OrderDirection - where: Collect_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Collect!]! - flash( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Flash - flashes( - skip: Int = 0 - first: Int = 100 - orderBy: Flash_orderBy - orderDirection: OrderDirection - where: Flash_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Flash!]! - uniswapDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): UniswapDayData - uniswapDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: UniswapDayData_orderBy - orderDirection: OrderDirection - where: UniswapDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [UniswapDayData!]! - poolDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PoolDayData - poolDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: PoolDayData_orderBy - orderDirection: OrderDirection - where: PoolDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PoolDayData!]! - poolHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PoolHourData - poolHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: PoolHourData_orderBy - orderDirection: OrderDirection - where: PoolHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PoolHourData!]! - tickHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TickHourData - tickHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TickHourData_orderBy - orderDirection: OrderDirection - where: TickHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TickHourData!]! - tickDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TickDayData - tickDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TickDayData_orderBy - orderDirection: OrderDirection - where: TickDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TickDayData!]! - tokenDayData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenDayData - tokenDayDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TokenDayData_orderBy - orderDirection: OrderDirection - where: TokenDayData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenDayData!]! - tokenHourData( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenHourData - tokenHourDatas( - skip: Int = 0 - first: Int = 100 - orderBy: TokenHourData_orderBy - orderDirection: OrderDirection - where: TokenHourData_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenHourData!]! - increaseEvent( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): IncreaseEvent - increaseEvents( - skip: Int = 0 - first: Int = 100 - orderBy: IncreaseEvent_orderBy - orderDirection: OrderDirection - where: IncreaseEvent_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [IncreaseEvent!]! - decreaseEvent( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): DecreaseEvent - decreaseEvents( - skip: Int = 0 - first: Int = 100 - orderBy: DecreaseEvent_orderBy - orderDirection: OrderDirection - where: DecreaseEvent_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [DecreaseEvent!]! - - """Access to subgraph metadata""" - _meta(block: Block_height): _Meta_ -} - -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 -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - token0: String - token0_not: String - token0_gt: String - token0_lt: String - token0_gte: String - token0_lte: String - token0_in: [String!] - token0_not_in: [String!] - token0_contains: String - token0_contains_nocase: String - token0_not_contains: String - token0_not_contains_nocase: String - token0_starts_with: String - token0_starts_with_nocase: String - token0_not_starts_with: String - token0_not_starts_with_nocase: String - token0_ends_with: String - token0_ends_with_nocase: String - token0_not_ends_with: String - token0_not_ends_with_nocase: String - token0_: Token_filter - token1: String - token1_not: String - token1_gt: String - token1_lt: String - token1_gte: String - token1_lte: String - token1_in: [String!] - token1_not_in: [String!] - token1_contains: String - token1_contains_nocase: String - token1_not_contains: String - token1_not_contains_nocase: String - token1_starts_with: String - token1_starts_with_nocase: String - token1_not_starts_with: String - token1_not_starts_with_nocase: String - token1_ends_with: String - token1_ends_with_nocase: String - token1_not_ends_with: String - token1_not_ends_with_nocase: String - token1_: Token_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Swap_filter] - or: [Swap_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__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 -} - -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 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! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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_contains: String - tick_contains_nocase: String - tick_not_contains: String - tick_not_contains_nocase: 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_: 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TickDayData_filter] - or: [TickDayData_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__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 -} - -type TickHourData { - id: ID! - periodStartUnix: Int! - pool: Pool! - tick: Tick! - liquidityGross: BigInt! - liquidityNet: BigInt! - volumeToken0: BigDecimal! - volumeToken1: BigDecimal! - volumeUSD: BigDecimal! - feesUSD: BigDecimal! -} - -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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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_contains: String - tick_contains_nocase: String - tick_not_contains: String - tick_not_contains_nocase: 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_: 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TickHourData_filter] - or: [TickHourData_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__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 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_contains: String - poolAddress_contains_nocase: String - poolAddress_not_contains: String - poolAddress_not_contains_nocase: 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 - 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_contains: String - pool_contains_nocase: String - pool_not_contains: String - pool_not_contains_nocase: String - pool_starts_with: String - pool_starts_with_nocase: String - pool_not_starts_with: String - pool_not_starts_with_nocase: String - pool_ends_with: String - pool_ends_with_nocase: String - pool_not_ends_with: String - pool_not_ends_with_nocase: String - pool_: Pool_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Tick_filter] - or: [Tick_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__liquidityProviderCount - liquidityGross - liquidityNet - price0 - price1 - volumeToken0 - volumeToken1 - volumeUSD - untrackedVolumeUSD - feesUSD - collectedFeesToken0 - collectedFeesToken1 - collectedFeesUSD - createdAtTimestamp - createdAtBlockNumber - liquidityProviderCount - feeGrowthOutside0X128 - feeGrowthOutside1X128 -} - -"A string representation of microseconds UNIX timestamp (16 digits)\n" -scalar Timestamp - -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(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!]! - tokenDayData(skip: Int = 0, first: Int = 100, orderBy: TokenDayData_orderBy, orderDirection: OrderDirection, where: TokenDayData_filter): [TokenDayData!]! -} - -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! -} - -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_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TokenDayData_filter] - or: [TokenDayData_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 -} - -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! -} - -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_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - 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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TokenHourData_filter] - or: [TokenHourData_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 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_contains: String - symbol_contains_nocase: String - symbol_not_contains: String - symbol_not_contains_nocase: String - symbol_starts_with: String - symbol_starts_with_nocase: String - symbol_not_starts_with: String - symbol_not_starts_with_nocase: String - symbol_ends_with: String - symbol_ends_with_nocase: String - symbol_not_ends_with: String - symbol_not_ends_with_nocase: String - name: String - name_not: String - name_gt: String - name_lt: String - name_gte: String - name_lte: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_contains_nocase: String - name_not_contains: String - name_not_contains_nocase: String - name_starts_with: String - name_starts_with_nocase: String - name_not_starts_with: String - name_not_starts_with_nocase: String - name_ends_with: String - name_ends_with_nocase: String - name_not_ends_with: String - name_not_ends_with_nocase: String - 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_contains_nocase: [String!] - whitelistPools_not_contains: [String!] - whitelistPools_not_contains_nocase: [String!] - whitelistPools_: Pool_filter - tokenDayData_: TokenDayData_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Token_filter] - or: [Token_filter] -} - -enum Token_orderBy { - id - symbol - name - decimals - totalSupply - volume - volumeUSD - untrackedVolumeUSD - feesUSD - txCount - poolCount - totalValueLocked - totalValueLockedUSD - totalValueLockedUSDUntracked - derivedETH - whitelistPools - tokenDayData -} - -type Transaction { - id: ID! - blockNumber: BigInt! - timestamp: BigInt! - gasUsed: BigInt! - gasPrice: BigInt! - mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! - burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! - swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! - flashed(skip: Int = 0, first: Int = 100, orderBy: Flash_orderBy, orderDirection: OrderDirection, where: Flash_filter): [Flash!]! - collects(skip: Int = 0, first: Int = 100, orderBy: Collect_orderBy, orderDirection: OrderDirection, where: Collect_filter): [Collect!]! -} - -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 - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Transaction_filter] - or: [Transaction_filter] -} - -enum Transaction_orderBy { - id - blockNumber - timestamp - gasUsed - gasPrice - mints - burns - swaps - flashed - collects -} - -type UniswapDayData { - id: ID! - date: Int! - volumeETH: BigDecimal! - volumeUSD: BigDecimal! - volumeUSDUntracked: BigDecimal! - feesUSD: BigDecimal! - txCount: BigInt! - tvlUSD: BigDecimal! -} - -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!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [UniswapDayData_filter] - or: [UniswapDayData_filter] -} - -enum UniswapDayData_orderBy { - id - date - volumeETH - volumeUSD - volumeUSDUntracked - feesUSD - txCount - tvlUSD -} - -type _Block_ { - """The hash of the block""" - hash: Bytes - - """The block number""" - number: Int! - - """Integer representation of the timestamp stored in blocks for the chain""" - timestamp: Int - - """The hash of the parent block""" - parentHash: Bytes -} - -"""The type for the top-level _meta field""" -type _Meta_ { - "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" - block: _Block_! - - """The deployment ID""" - deployment: String! - - """If `true`, the subgraph encountered indexing errors at some past block""" - hasIndexingErrors: Boolean! -} - -enum _SubgraphErrorPolicy_ { - """Data will be returned even if the subgraph has indexing errors""" - allow - - """ - If the subgraph has indexing errors, data will be omitted. The default. - """ - deny -} \ No newline at end of file diff --git a/packages/graph-client-new/schema.json b/packages/graph-client-new/schema.json deleted file mode 100644 index b6c1131522..0000000000 --- a/packages/graph-client-new/schema.json +++ /dev/null @@ -1,43738 +0,0 @@ -{ - "data": { - "__schema": { - "queryType": { - "name": "Query" - }, - "mutationType": null, - "subscriptionType": { - "name": "Subscription" - }, - "types": [ - { - "kind": "ENUM", - "name": "Aggregation_interval", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "hour", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "day", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigDecimal", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "BigInt", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "number_gte", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "hash", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "number_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Boolean", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Bundle", - "description": " Bundle - should only ever be one created", - "fields": [ - { - "name": "id", - "description": " hardcoded to '1'", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nativePrice", - "description": " Price of native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Bundle_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "nativePrice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nativePrice_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "nativePrice_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Bundle_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Bundle_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Bundle_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nativePrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Burn", - "description": null, - "fields": [ - { - "name": "id", - "description": " transaction.id:transaction.burns.length ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount0", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount1", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "complete", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeTo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeLiquidity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "logIndex_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "complete", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "complete_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "complete_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "complete_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Burn_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasLimit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "complete", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeTo", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeLiquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Bytes", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Factory", - "description": null, - "fields": [ - { - "name": "id", - "description": " Contract address ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": " Factory type ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": " Volume USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": " Volume Native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": " Liquidity USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": " Liquidity NATIVE ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": " Fees USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": " Fees NATIVE ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairCount", - "description": " Pair count ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": " Transaction count ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenCount", - "description": " Token count ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userCount", - "description": " User count ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FactoryDaySnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {factoryId}-day-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FactoryDaySnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FactoryDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FactoryDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FactoryDaySnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__tokenCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__userCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "FactoryHourSnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {factoryId}-hour-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "FactoryHourSnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "factory_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "factory_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FactoryHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "FactoryHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "FactoryHourSnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__tokenCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory__userCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pairCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pairCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "userCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "userCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "userCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Factory_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "userCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Float", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "ID", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int", - "description": "4 bytes signed integer\n", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Int8", - "description": "8 bytes signed integer\n", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LiquidityPosition", - "description": null, - "fields": [ - { - "name": "id", - "description": "pair.id:user.id", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "balance", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {lp.id}-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": " saved for fast historical lookups ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": " saved for fast historical lookups ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": " reference to user ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": " reference to pair ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0PriceUSD", - "description": " snapshot of token0 price ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1PriceUSD", - "description": " snapshot of token1 price ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve0", - "description": " snapshot of pair token0 reserves ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve1", - "description": " snapshot of pair token1 reserves ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserveUSD", - "description": " snapshot of pair reserves in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityTokenTotalSupply", - "description": " snapshot of pool token supply ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityTokenBalance", - "description": " snapshot of users pool token balance ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityPosition", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPosition_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "block_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token0PriceUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1PriceUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserveUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserveUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserveUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityTokenTotalSupply_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityTokenBalance_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LiquidityPositionSnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition__balance", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "block", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user__lpSnapshotsCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0PriceUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1PriceUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserveUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityTokenTotalSupply", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityTokenBalance", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "user_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "user_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "balance_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "balance_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtBlock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "LiquidityPosition_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user__lpSnapshotsCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "balance", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Mint", - "description": null, - "fields": [ - { - "name": "id", - "description": " transaction.id:transaction.mints.length ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount0", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount1", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeTo", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeLiquidity", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amount1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amount1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "logIndex", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "logIndex_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeTo_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeTo_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feeLiquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Mint_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasLimit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amount1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeTo", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feeLiquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "OrderDirection", - "description": "Defines the order direction, either ascending or descending", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "asc", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "desc", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Pair", - "description": null, - "fields": [ - { - "name": "id", - "description": " Pair address (contract address) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": " Pair type ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swapFee", - "description": " Swap fee ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twapEnabled", - "description": " TWAP - time weighted average price ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": " name of the pair, this combines symbol of both tokens, e.g. WETH/SUSHI ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0", - "description": " First Token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1", - "description": " Second Token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": " Which source this pair comes from, in this case it will always be 'LEGACY' ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": " Which block this pair was created on ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": " When this pair was created ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve0", - "description": " Liquidity of first token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve1", - "description": " Liquidity of second token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cacheUpdatedAtBlock", - "description": " which block _k was saved ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_reserve0", - "description": " Liquidity of first token, this is only updated for the first transaction in a block ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_reserve1", - "description": " Liquidity of second token, this is only updated for the first transaction in a block ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_token0Price", - "description": " Price of the first token in this pair, this is only updated for the first transaction in a block ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_token1Price", - "description": " Price of the second token in this pair, this is only updated for the first transaction in a block ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": " Liquidity, Total supply of all LP in this pool ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": " USD liquidity", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": " Native Liquidity ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trackedLiquidityNative", - "description": " Tracked Liquidity native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0Price", - "description": " Price of the first token in this pair, not to be confused with TokenPrice entity ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1Price", - "description": " Price of the second token in this pair, not to be confused with TokenPrice entity ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": " Fee in Native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": " Fee in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": " APR ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aprUpdatedAtTimestamp", - "description": " When APR was last updated ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txCount", - "description": " Transaction count ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": " Liquidity Positions ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPosition_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshots", - "description": " Liquidity position snapshots ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPositionSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourSnapshots", - "description": " Pair Hour Snapshot ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daySnapshots", - "description": " Pair Day Snapshot ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {pairId}-day-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cumulativeVolumeUSD", - "description": " Used to calculate apr ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PairDaySnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cumulativeVolumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {pairId}-hour-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cumulativeVolumeUSD", - "description": " Used to calculate apr ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "cumulativeVolumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PairHourSnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "cumulativeVolumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "PairType", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "CONSTANT_PRODUCT_POOL", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_not", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "type_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "type_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "PairType", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swapFee", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swapFee_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swapFee_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "twapEnabled", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "twapEnabled_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "twapEnabled_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "twapEnabled_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token0_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "source_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "source_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "reserve1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "reserve1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cacheUpdatedAtBlock_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_reserve0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_reserve1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_token0Price_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_cache_token1Price_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "trackedLiquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token0Price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token0Price_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token0Price_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1Price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token1Price_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token1Price_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken0_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken0_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeToken1_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeToken1_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "apr_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "apr_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "aprUpdatedAtTimestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "txCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "txCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityPositions_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityPositionSnapshots_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "hourSnapshots_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "daySnapshots_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Pair_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshots", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hourSnapshots", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "daySnapshots", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Query", - "description": null, - "fields": [ - { - "name": "version", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_Version_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_Version_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_Version", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factories", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Factory_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bundle", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Bundle", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bundles", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Bundle_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Bundle_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bundle", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokens", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Token_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPrice", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenPrice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPrices", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenPrice_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrice", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_TokenPair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_TokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_TokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedTokenPair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedTokenPairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_WhitelistedTokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Pair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "User_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPosition_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mint", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Mint", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mints", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Mint_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Mint", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burn", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Burn", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burns", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Burn_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Burn", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swap", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Swap", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swaps", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Swap_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Swap", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Transaction_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPositionSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "FactoryHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FactoryHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FactoryHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FactoryHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "FactoryDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FactoryDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FactoryDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FactoryDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_meta", - "description": "Access to subgraph metadata", - "args": [ - { - "name": "block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "String", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Subscription", - "description": null, - "fields": [ - { - "name": "version", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_Version", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "versions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_Version_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_Version_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_Version", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factory", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factories", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Factory_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Factory_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Factory", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bundle", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Bundle", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "bundles", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Bundle_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Bundle_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Bundle", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokens", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Token_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPrice", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenPrice", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPrices", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenPrice_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrice", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_TokenPair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenPairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_TokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_TokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedTokenPair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedTokenPairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_WhitelistedTokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairs", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Pair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "user", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "User", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "users", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "User_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "User", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPosition", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPosition_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mint", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Mint", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mints", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Mint_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Mint", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burn", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Burn", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burns", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Burn_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Burn", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swap", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Swap", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swaps", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Swap_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Swap", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Transaction_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositionSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPositionSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPositionSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPositionSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "PairDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "PairDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PairDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "TokenDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "TokenDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryHourSnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "FactoryHourSnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryHourSnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FactoryHourSnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FactoryHourSnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FactoryHourSnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryDaySnapshot", - "description": null, - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "OBJECT", - "name": "FactoryDaySnapshot", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "factoryDaySnapshots", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "FactoryDaySnapshot_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "FactoryDaySnapshot_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "block", - "description": "The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted.", - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "subgraphError", - "description": "Set to `allow` to receive data even if the subgraph has skipped over errors while syncing.", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "ofType": null - } - }, - "defaultValue": "deny" - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "FactoryDaySnapshot", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "_meta", - "description": "Access to subgraph metadata", - "args": [ - { - "name": "block", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Block_height", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "OBJECT", - "name": "_Meta_", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Swap", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transaction", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountIn", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountOut", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "args": [], - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transaction_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transaction_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "timestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "timestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "sender_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "sender_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenIn_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenIn_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "tokenOut_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "tokenOut_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountIn_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountIn_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountOut", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountOut_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountOut_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "to_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "to_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "logIndex_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "logIndex_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "amountUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "amountUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Swap_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasLimit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__gasPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transaction__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "sender", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenIn__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "tokenOut__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountIn", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountOut", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "to", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "logIndex", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "amountUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "SCALAR", - "name": "Timestamp", - "description": "A string representation of microseconds UNIX timestamp (16 digits)\n", - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Token", - "description": null, - "fields": [ - { - "name": "id", - "description": " Token address ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price", - "description": " Token Price ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "TokenPrice", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "symbol", - "description": " Symbol of the token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "symbolSuccess", - "description": " if symbol was successfully retrieved ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": " Name of the token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameSuccess", - "description": " if name was successfully retrieved ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "decimals", - "description": " Decimals of the token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "decimalsSuccess", - "description": " if decimals were successfully retrieved ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": " Liquidity ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": " Liquidity in native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": " Liquidity in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": " Volume ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": " Volume in native ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": " Volume in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": " Fee in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": " Volume in USD ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txCount", - "description": " Count of all the transactions ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairCount", - "description": " Count of all the pairs ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedPairCount", - "description": " Count of all the whitelisted pairs ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairs", - "description": " All pairs where this token is involved in ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_TokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_TokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedPairs", - "description": " All whitelisted pairs where this token is involved in ", - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "_WhitelistedTokenPair_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenDaySnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {tokenId}-day-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TokenDaySnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenDaySnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TokenDaySnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenHourSnapshot", - "description": null, - "fields": [ - { - "name": "id", - "description": " {tokenId}-hour-{timestamp} ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TokenHourSnapshot_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "date_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "date_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "priceUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "priceUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "transactionCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "transactionCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenHourSnapshot_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TokenHourSnapshot_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "date", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "priceUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "transactionCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "TokenPrice", - "description": null, - "fields": [ - { - "name": "id", - "description": " same as token entity id, address of token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": " Token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "derivedNative", - "description": " derived native, this is useful for calculating price. (derivedNative * bundle.nativePrice = USD price) ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUsdPrice", - "description": " price in USD. NOTE: this will not always be up to date, it only updates when onSync event is emitted, bundle.nativePrice could have changed. ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken", - "description": " Which token this price is based on ", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair", - "description": " Which pair this price is based on ", - "args": [], - "type": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "derivedNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "derivedNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lastUsdPrice_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pricedOffToken", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffToken_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pricedOffPair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "TokenPrice_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "derivedNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lastUsdPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffToken__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pricedOffPair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "price", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "price_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "price_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "price_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "TokenPrice_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "symbol_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "symbol_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbol_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbolSuccess", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbolSuccess_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "symbolSuccess_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "symbolSuccess_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "name_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "name_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nameSuccess", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nameSuccess_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "nameSuccess_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "nameSuccess_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "decimals", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimals_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "decimals_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "decimalsSuccess", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimalsSuccess_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "decimalsSuccess_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "decimalsSuccess_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidity_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidity_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volume_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volume_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "volumeUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "volumeUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesNative_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesNative_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "feesUSD_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "feesUSD_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigDecimal", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "txCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "txCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "txCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pairCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pairCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pairCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "whitelistedPairCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pairs_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "whitelistedPairs_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Token_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price__derivedNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "price__lastUsdPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pairs", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "whitelistedPairs", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "Transaction", - "description": null, - "fields": [ - { - "name": "id", - "description": " Tx hash ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasLimit", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasPrice", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mints", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Mint_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Mint", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burns", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Burn_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Burn", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swaps", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "Swap_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Swap", - "ofType": null - } - } - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasLimit", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasLimit_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasLimit_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasPrice", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "gasPrice_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "gasPrice_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_not_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_not_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "mints_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Mint_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "burns", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_not_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_not_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "burns_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Burn_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "swaps", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_not", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_not_contains", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_not_contains_nocase", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "swaps_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Swap_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtBlock_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "createdAtTimestamp_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "Transaction_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "Transaction_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasLimit", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "gasPrice", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "mints", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "burns", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "swaps", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "User", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lpSnapshotsCount", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": null, - "args": [ - { - "name": "skip", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "0" - }, - { - "name": "first", - "description": null, - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "defaultValue": "100" - }, - { - "name": "orderBy", - "description": null, - "type": { - "kind": "ENUM", - "name": "LiquidityPosition_orderBy", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "orderDirection", - "description": null, - "type": { - "kind": "ENUM", - "name": "OrderDirection", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "where", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - } - ], - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "LiquidityPosition", - "ofType": null - } - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "lpSnapshotsCount_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "liquidityPositions_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "LiquidityPosition_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "User_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "User_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "lpSnapshotsCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "liquidityPositions", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_Block_", - "description": null, - "fields": [ - { - "name": "hash", - "description": "The hash of the block", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "number", - "description": "The block number", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "timestamp", - "description": "Integer representation of the timestamp stored in blocks for the chain", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "parentHash", - "description": "The hash of the parent block", - "args": [], - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_Meta_", - "description": "The type for the top-level _meta field", - "fields": [ - { - "name": "block", - "description": "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "_Block_", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deployment", - "description": "The deployment ID", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "hasIndexingErrors", - "description": "If `true`, the subgraph encountered indexing errors at some past block", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_SubgraphErrorPolicy_", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "allow", - "description": "Data will be returned even if the subgraph has indexing errors", - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "deny", - "description": "If the subgraph has indexing errors, data will be omitted. The default.", - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_TokenPair", - "description": null, - "fields": [ - { - "name": "id", - "description": " id is created by combining token.id and count, e.g. 0x00x00:1 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": " Pair ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": " Token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_TokenPair_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_TokenPair_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_Version", - "description": null, - "fields": [ - { - "name": "id", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_Version_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "version", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "version_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "version_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "version_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_Version_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_Version_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_Version_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "version", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - }, - { - "kind": "OBJECT", - "name": "_WhitelistedTokenPair", - "description": null, - "fields": [ - { - "name": "id", - "description": " id is created by combining token.id and count, e.g. 0x00x00:1 ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": " Pair ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Pair", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": " Token ", - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Token", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - } - ], - "inputFields": null, - "interfaces": [], - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "description": null, - "fields": null, - "inputFields": [ - { - "name": "id", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "id_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "id_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "ID", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "pair_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "pair_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Pair_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lt", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_gte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_lte", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_not_in", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - "defaultValue": null - }, - { - "name": "token_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_contains_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_starts_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_not_ends_with_nocase", - "description": null, - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "token_", - "description": null, - "type": { - "kind": "INPUT_OBJECT", - "name": "Token_filter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "_change_block", - "description": "Filter for the block changed event.", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockChangedFilter", - "ofType": null - }, - "defaultValue": null - }, - { - "name": "and", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - } - }, - "defaultValue": null - }, - { - "name": "or", - "description": null, - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "_WhitelistedTokenPair_filter", - "ofType": null - } - }, - "defaultValue": null - } - ], - "interfaces": null, - "enumValues": null, - "possibleTypes": null - }, - { - "kind": "ENUM", - "name": "_WhitelistedTokenPair_orderBy", - "description": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "enumValues": [ - { - "name": "id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__type", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__swapFee", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__twapEnabled", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__source", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__createdAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cacheUpdatedAtBlock", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_reserve1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair___cache_token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__trackedLiquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token0Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__token1Price", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken0", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__volumeToken1", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__apr", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__aprUpdatedAtTimestamp", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "pair__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__id", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbol", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__symbolSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__name", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__nameSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimals", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__decimalsSuccess", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidity", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__liquidityUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volume", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__volumeUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesNative", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__feesUSD", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__txCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__pairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - }, - { - "name": "token__whitelistedPairCount", - "description": null, - "isDeprecated": false, - "deprecationReason": null - } - ], - "possibleTypes": null - } - ], - "directives": [ - { - "name": "skip", - "description": null, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "include", - "description": null, - "locations": [ - "FIELD", - "FRAGMENT_SPREAD", - "INLINE_FRAGMENT" - ], - "args": [ - { - "name": "if", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "entity", - "description": "Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive.", - "locations": [ - "OBJECT" - ], - "args": [] - }, - { - "name": "subgraphId", - "description": "Defined a Subgraph ID for an object type", - "locations": [ - "OBJECT" - ], - "args": [ - { - "name": "id", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ] - }, - { - "name": "derivedFrom", - "description": "creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API.", - "locations": [ - "FIELD_DEFINITION" - ], - "args": [ - { - "name": "field", - "description": null, - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - "defaultValue": null - } - ] - } - ] - } - } -} \ No newline at end of file diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index 12e8198666..81245002cb 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -1,5 +1,8 @@ import { BLOCKS_SUBGRAPH_URL, + MASTERCHEF_V1_SUBGRAPH_URL, + MASTERCHEF_V2_SUBGRAPH_URL, + MINICHEF_SUBGRAPH_URL, SUSHISWAP_SUBGRAPH_URL, SUSHISWAP_V3_SUBGRAPH_URL, SUSHI_BAR_SUBGRAPH_URL, @@ -11,6 +14,9 @@ import fetchSchema from 'graphql-fetch-schema' const schemas = { blocks: BLOCKS_SUBGRAPH_URL[1], + 'master-chef-v1': MASTERCHEF_V1_SUBGRAPH_URL, + 'master-chef-v2': MASTERCHEF_V2_SUBGRAPH_URL, + 'mini-chef': MINICHEF_SUBGRAPH_URL[137], 'sushi-bar': SUSHI_BAR_SUBGRAPH_URL, 'sushi-v2': SUSHISWAP_SUBGRAPH_URL[1], 'sushi-v3': SUSHISWAP_V3_SUBGRAPH_URL[1], @@ -47,6 +53,8 @@ const res = await Promise.all( ), ) +fs.rmSync('./schema.graphql') + res.forEach((r) => { if (r.success) { console.log(`Updated ${r.schema} schema`) diff --git a/packages/graph-client-new/src/composite/chef-user-positions.ts b/packages/graph-client-new/src/composite/chef-user-positions.ts new file mode 100644 index 0000000000..a3fb723ea4 --- /dev/null +++ b/packages/graph-client-new/src/composite/chef-user-positions.ts @@ -0,0 +1,76 @@ +import { + MINICHEF_ENABLED_NETWORKS, + type MiniChefChainId, +} from '@sushiswap/graph-config' +import type { ChainIdVariable, ChainIdsVariable } from 'src/lib/types/chainId' + +import { + type GetMasterChefV1UserPositions, + type MasterChefV1UserPositions, + getMasterChefV1UserPositions, +} from 'src/subgraphs/master-chef-v1' +import { + type GetMasterChefV2UserPositions, + type MasterChefV2UserPositions, + getMasterChefV2UserPositions, +} from 'src/subgraphs/master-chef-v2' +import { + type GetMiniChefUserPositions, + type MiniChefUserPositions, + getMiniChefUserPositions, +} from 'src/subgraphs/mini-chef' +import { ChainId } from 'sushi/chain' + +export type GetChefUserPositions = Omit< + GetMasterChefV1UserPositions & + GetMasterChefV2UserPositions & + GetMiniChefUserPositions, + 'chainId' +> & + ChainIdsVariable<1 | MiniChefChainId> + +type CombinedPosition = ( + | MasterChefV1UserPositions + | MasterChefV2UserPositions + | MiniChefUserPositions +)[number] + +export type ChefPosition = Omit & { + pool: + | (Omit & + ChainIdVariable['chainId']>) + | null +} + +export async function getChefUserPositions({ + chainIds = [ChainId.ETHEREUM, ...MINICHEF_ENABLED_NETWORKS], + ...variables +}: GetChefUserPositions) { + const miniChefChainIds = chainIds.filter( + (chainId) => chainId !== ChainId.ETHEREUM, + ) as MiniChefChainId[] + + const promises = await Promise.allSettled([ + getMasterChefV1UserPositions(variables), + getMasterChefV2UserPositions(variables), + ...miniChefChainIds.map((chainId) => + getMiniChefUserPositions({ + ...variables, + chainId, + }), + ), + ]) + + const data = [] as ChefPosition[] + const errors = [] + + for (const promise of promises) { + if (promise.status === 'fulfilled') { + data.push(...promise.value) + } else { + errors.push(promise.reason) + } + } + + return { data, errors } +} diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts new file mode 100644 index 0000000000..cb545932ff --- /dev/null +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -0,0 +1,91 @@ +import { + MINICHEF_ENABLED_NETWORKS, + SUSHISWAP_ENABLED_NETWORKS, + isMiniChefChainId, +} from '@sushiswap/graph-config' +import { fetchMultichain } from 'src/lib/fetch-multichain' +import type { ChainIdsVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' +import { + type GetSushiV2LiquidityPositions, + getSushiV2LiquidityPositions, +} from 'src/subgraphs/sushi-v2' +import { isSushiSwapV2ChainId } from 'sushi/config' +import type { GetChefUserPositions } from './chef-user-positions' + +export type GetCombinedUserPositions = { + user: Hex +} & ChainIdsVariable< + | NonNullable[number] + | GetSushiV2LiquidityPositions['chainId'] +> + +/** + * @brief Get staked AND unstaked user positions + */ +export async function getCombinedUserPositions({ + chainIds = [ + ...new Set([...SUSHISWAP_ENABLED_NETWORKS, ...MINICHEF_ENABLED_NETWORKS]), + ], + user, +}: GetCombinedUserPositions) { + const sushiSwapChainIds = chainIds.filter(isSushiSwapV2ChainId) + const { + data: sushiSwapV2LiquidityPositions, + errors: sushiSwapV2LiquidityPositionErrors, + } = await fetchMultichain({ + chainIds: sushiSwapChainIds, + fetch: getSushiV2LiquidityPositions, + variables: { + first: Infinity, + where: { + user, + }, + }, + }) + + const miniChefChainIds = chainIds.filter(isMiniChefChainId) + const { data: chefUserPositions, errors: chefUserPositionErrors } = + await fetchMultichain({ + chainIds: miniChefChainIds, + fetch: getSushiV2LiquidityPositions, + variables: { + first: Infinity, + where: { + user, + }, + }, + }) + + const poolIds = Array.from( + new Set([ + ...sushiSwapV2LiquidityPositions.map((position) => position.pool.id), + ...chefUserPositions.map((position) => position.pool.id), + ]), + ) + + const data = poolIds.map((poolId) => { + const sushiSwapPosition = sushiSwapV2LiquidityPositions.find( + (position) => position.pool.id === poolId, + ) + const chefPosition = chefUserPositions.find( + (position) => position.pool.id === poolId, + ) + + const pool = sushiSwapPosition?.pool ?? chefPosition?.pool + + return { + ...pool, + user, + unstakedBalance: sushiSwapPosition?.balance ?? '0', + stakedBalance: chefPosition?.balance ?? '0', + } + }) + + const errors = [ + ...sushiSwapV2LiquidityPositionErrors, + ...chefUserPositionErrors, + ] + + return { data, errors } +} diff --git a/packages/graph-client-new/src/lib/fetch-error.ts b/packages/graph-client-new/src/lib/fetch-error.ts new file mode 100644 index 0000000000..f0f1c91edc --- /dev/null +++ b/packages/graph-client-new/src/lib/fetch-error.ts @@ -0,0 +1,13 @@ +import type { ChainId } from 'sushi/chain' + +export class FetchError extends Error { + public override name: string + public chainId: ChainId + + constructor(chainId: ChainId, message: string) { + super(message) + + this.name = 'FetchError' + this.chainId = chainId + } +} diff --git a/packages/graph-client-new/src/lib/fetch-multichain.ts b/packages/graph-client-new/src/lib/fetch-multichain.ts index 6e4728f2c9..19beb43722 100644 --- a/packages/graph-client-new/src/lib/fetch-multichain.ts +++ b/packages/graph-client-new/src/lib/fetch-multichain.ts @@ -1,36 +1,33 @@ -import type { ChainIdVariable } from 'src/lib/types/chainId' -import type { ChainId } from 'sushi/chain' +import type { FetchError } from './fetch-error' type FetchMultichain< - C extends ChainId, - A extends { [key: string]: any } & ChainIdVariable, + ARG extends { [key: string]: any }, RET extends Promise, > = { - chainIds: C[] - fetch: (variables: A) => RET - variables: Omit + chainIds: ARG['chainId'][] + fetch: (variables: ARG) => RET + variables: Omit } export async function fetchMultichain< - C extends ChainId, - A extends { [key: string]: any } & ChainIdVariable, + ARG extends { [key: string]: any }, RET extends Promise, >({ chainIds, fetch, variables, -}: FetchMultichain): Promise<{ +}: FetchMultichain): Promise<{ data: Awaited - errors: any[] + errors: FetchError[] }> { const promises = await Promise.allSettled( chainIds.map((chainId) => { - return fetch({ ...(variables as A), chainId }) + return fetch({ ...(variables as ARG), chainId }) }), ) const data = [] as Awaited - const errors = [] + const errors = [] as FetchError[] for (const promise of promises) { if (promise.status === 'fulfilled') { diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client-new/src/lib/request-paged.ts index e458fedded..f4e4f5bb03 100644 --- a/packages/graph-client-new/src/lib/request-paged.ts +++ b/packages/graph-client-new/src/lib/request-paged.ts @@ -2,6 +2,7 @@ import { MAX_FIRST } from '@sushiswap/graph-config' import type { ResultOf, TadaDocumentNode, VariablesOf } from 'gql.tada' import _request from 'graphql-request' import type { ChainId } from 'sushi/chain' +import { FetchError } from './fetch-error' interface RequestPaged>> { chainId: ChainId @@ -49,18 +50,21 @@ export async function requestPaged({ } if ('orderBy' in variables) { - throw new Error('orderBy is not allowed in requestPaged') + throw new FetchError(chainId, 'orderBy is not allowed in requestPaged') } if ('orderDirection' in variables) { - throw new Error('orderDirection is not allowed in requestPaged') + throw new FetchError( + chainId, + 'orderDirection is not allowed in requestPaged', + ) } const querySelection = (query as any)?.definitions?.[0]?.selectionSet ?.selections?.[0] if (!querySelection) { - throw new Error('Query selection not found') + throw new FetchError(chainId, 'Query selection not found') } // We need the id value to paginate @@ -69,12 +73,12 @@ export async function requestPaged({ return s.name.value === 'id' }) ) { - throw new Error('Id not found in query selection') + throw new FetchError(chainId, 'Id not found in query selection') } const key = querySelection?.name?.value as keyof ResultOf if (!key) { - throw new Error('Key not found') + throw new FetchError(chainId, 'Key not found') } let lastSize = maxFirst diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts index e664361ffe..57c955795d 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts @@ -4,6 +4,7 @@ import type { TadaDocumentNode, $tada } from 'gql.tada'; declare module 'gql.tada' { interface setupCache { - + "\n query Blocks($first: Int = 1000, $skip: Int = 0, $orderBy: Block_orderBy = number, $orderDirection: OrderDirection = desc, $where: Block_filter) {\n blocks(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n number\n timestamp\n }\n }\n": + TadaDocumentNode<{ blocks: { timestamp: string; number: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; unclesHash_not_ends_with_nocase?: string; unclesHash_not_ends_with?: string; unclesHash_ends_with_nocase?: string; unclesHash_ends_with?: string; unclesHash_not_starts_with_nocase?: string; unclesHash_not_starts_with?: string; unclesHash_starts_with_nocase?: string; unclesHash_starts_with?: string; unclesHash_not_contains_nocase?: string; unclesHash_not_contains?: string; unclesHash_contains_nocase?: string; unclesHash_contains?: string; unclesHash_not_in?: string[]; unclesHash_in?: string[]; unclesHash_lte?: string; unclesHash_gte?: string; unclesHash_lt?: string; unclesHash_gt?: string; unclesHash_not?: string; unclesHash?: string; size_not_in?: string[]; size_in?: string[]; size_lte?: string; size_gte?: string; size_lt?: string; size_gt?: string; size_not?: string; size?: string; stateRoot_not_ends_with_nocase?: string; stateRoot_not_ends_with?: string; stateRoot_ends_with_nocase?: string; stateRoot_ends_with?: string; stateRoot_not_starts_with_nocase?: string; stateRoot_not_starts_with?: string; stateRoot_starts_with_nocase?: string; stateRoot_starts_with?: string; stateRoot_not_contains_nocase?: string; stateRoot_not_contains?: string; stateRoot_contains_nocase?: string; stateRoot_contains?: string; stateRoot_not_in?: string[]; stateRoot_in?: string[]; stateRoot_lte?: string; stateRoot_gte?: string; stateRoot_lt?: string; stateRoot_gt?: string; stateRoot_not?: string; stateRoot?: string; transactionsRoot_not_ends_with_nocase?: string; transactionsRoot_not_ends_with?: string; transactionsRoot_ends_with_nocase?: string; transactionsRoot_ends_with?: string; transactionsRoot_not_starts_with_nocase?: string; transactionsRoot_not_starts_with?: string; transactionsRoot_starts_with_nocase?: string; transactionsRoot_starts_with?: string; transactionsRoot_not_contains_nocase?: string; transactionsRoot_not_contains?: string; transactionsRoot_contains_nocase?: string; transactionsRoot_contains?: string; transactionsRoot_not_in?: string[]; transactionsRoot_in?: string[]; transactionsRoot_lte?: string; transactionsRoot_gte?: string; transactionsRoot_lt?: string; transactionsRoot_gt?: string; transactionsRoot_not?: string; transactionsRoot?: string; receiptsRoot_not_ends_with_nocase?: string; receiptsRoot_not_ends_with?: string; receiptsRoot_ends_with_nocase?: string; receiptsRoot_ends_with?: string; receiptsRoot_not_starts_with_nocase?: string; receiptsRoot_not_starts_with?: string; receiptsRoot_starts_with_nocase?: string; receiptsRoot_starts_with?: string; receiptsRoot_not_contains_nocase?: string; receiptsRoot_not_contains?: string; receiptsRoot_contains_nocase?: string; receiptsRoot_contains?: string; receiptsRoot_not_in?: string[]; receiptsRoot_in?: string[]; receiptsRoot_lte?: string; receiptsRoot_gte?: string; receiptsRoot_lt?: string; receiptsRoot_gt?: string; receiptsRoot_not?: string; receiptsRoot?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; totalDifficulty_not_in?: string[]; totalDifficulty_in?: string[]; totalDifficulty_lte?: string; totalDifficulty_gte?: string; totalDifficulty_lt?: string; totalDifficulty_gt?: string; totalDifficulty_not?: string; totalDifficulty?: string; difficulty_not_in?: string[]; difficulty_in?: string[]; difficulty_lte?: string; difficulty_gte?: string; difficulty_lt?: string; difficulty_gt?: string; difficulty_not?: string; difficulty?: string; author_not_ends_with_nocase?: string; author_not_ends_with?: string; author_ends_with_nocase?: string; author_ends_with?: string; author_not_starts_with_nocase?: string; author_not_starts_with?: string; author_starts_with_nocase?: string; author_starts_with?: string; author_not_contains_nocase?: string; author_not_contains?: string; author_contains_nocase?: string; author_contains?: string; author_not_in?: string[]; author_in?: string[]; author_lte?: string; author_gte?: string; author_lt?: string; author_gt?: string; author_not?: string; author?: string; parentHash_not_ends_with_nocase?: string; parentHash_not_ends_with?: string; parentHash_ends_with_nocase?: string; parentHash_ends_with?: string; parentHash_not_starts_with_nocase?: string; parentHash_not_starts_with?: string; parentHash_starts_with_nocase?: string; parentHash_starts_with?: string; parentHash_not_contains_nocase?: string; parentHash_not_contains?: string; parentHash_contains_nocase?: string; parentHash_contains?: string; parentHash_not_in?: string[]; parentHash_in?: string[]; parentHash_lte?: string; parentHash_gte?: string; parentHash_lt?: string; parentHash_gt?: string; parentHash_not?: string; parentHash?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; number_not_in?: string[]; number_in?: string[]; number_lte?: string; number_gte?: string; number_lt?: string; number_gt?: string; number_not?: string; number?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "number" | "id" | "timestamp" | "gasLimit" | "parentHash" | "author" | "difficulty" | "totalDifficulty" | "gasUsed" | "receiptsRoot" | "transactionsRoot" | "stateRoot" | "size" | "unclesHash"; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index 0bbb8db4dd..afeee490dd 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -2,6 +2,7 @@ import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' import { graphql } from '../graphql' @@ -24,7 +25,9 @@ export type GetBlocks = VariablesOf & export async function getBlocks({ chainId, ...variables }: GetBlocks) { const baseUrl = BLOCKS_SUBGRAPH_URL[chainId] - if (!baseUrl) throw new Error(`No subgraph URL for chainId ${chainId}`) + if (!baseUrl) { + throw new FetchError(chainId, `No subgraph URL for chainId ${chainId}`) + } const url = `https://${baseUrl}` diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts new file mode 100644 index 0000000000..36f29587b1 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './master-chef-v1-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts new file mode 100644 index 0000000000..044b4b733e --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts @@ -0,0 +1 @@ +export * from './queries/user-positions' diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts new file mode 100644 index 0000000000..d240778a55 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts @@ -0,0 +1,10 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": + TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + } +} diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts new file mode 100644 index 0000000000..1e79348357 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts @@ -0,0 +1,54 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'master-chef-v1'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'History': { kind: 'OBJECT'; name: 'History'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'History_filter': { kind: 'INPUT_OBJECT'; name: 'History_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'History_orderBy': { name: 'History_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block'; }; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'bonusEndBlock': { name: 'bonusEndBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bonusMultiplier': { name: 'bonusMultiplier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'devaddr': { name: 'devaddr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'history': { name: 'history'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'migrator': { name: 'migrator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'startBlock': { name: 'startBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerBlock': { name: 'sushiPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'startBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'startBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'history_'; type: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'bonusMultiplier' | 'bonusEndBlock' | 'devaddr' | 'migrator' | 'owner' | 'startBlock' | 'sushi' | 'sushiPerBlock' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'history' | 'updatedAt'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'PoolHistory': { kind: 'OBJECT'; name: 'PoolHistory'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'PoolHistory_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PoolHistory_orderBy': { name: 'PoolHistory_orderBy'; enumValues: 'id' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'userCount' | 'timestamp' | 'block' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; + 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'pair' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'balance' | 'users' | 'userCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block' | 'updatedAt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'amount' | 'rewardDebt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD' | 'timestamp' | 'block'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts new file mode 100644 index 0000000000..1928ebbe96 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts @@ -0,0 +1,62 @@ +import { MASTERCHEF_V1_SUBGRAPH_URL } from '@sushiswap/graph-config' +import type { VariablesOf } from 'gql.tada' + +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import { ChainId } from 'sushi/chain' +import { graphql } from '../graphql' + +export const MasterChefV1UserPositionsQuery = graphql( + ` + query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) { + positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + address + amount + pool { + id: pair + } + } + } +`, +) + +export type GetMasterChefV1UserPositions = VariablesOf< + typeof MasterChefV1UserPositionsQuery +> + +export async function getMasterChefV1UserPositions({ + ...variables +}: GetMasterChefV1UserPositions) { + const url = `https://${MASTERCHEF_V1_SUBGRAPH_URL}` + + const result = await requestPaged({ + chainId: ChainId.ETHEREUM, + url, + query: MasterChefV1UserPositionsQuery, + variables, + }) + + return result.positions.map((position) => { + let pool = null + + if (position.pool) { + pool = convertIdToMultichainId( + copyIdToAddress(addChainId(ChainId.ETHEREUM, position.pool)), + ) + } + + return { + id: position.id, + address: position.address, + amount: position.amount, + pool, + } + }) +} + +export type MasterChefV1UserPositions = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql b/packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql new file mode 100644 index 0000000000..59c46fbb5d --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql @@ -0,0 +1,1318 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +type History { + id: ID! + owner: MasterChef! + slpBalance: BigDecimal! + slpAge: BigDecimal! + slpAgeRemoved: BigDecimal! + slpDeposited: BigDecimal! + slpWithdrawn: BigDecimal! + timestamp: BigInt! + block: BigInt! +} + +input History_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: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + owner_: MasterChef_filter + slpBalance: BigDecimal + slpBalance_not: BigDecimal + slpBalance_gt: BigDecimal + slpBalance_lt: BigDecimal + slpBalance_gte: BigDecimal + slpBalance_lte: BigDecimal + slpBalance_in: [BigDecimal!] + slpBalance_not_in: [BigDecimal!] + slpAge: BigDecimal + slpAge_not: BigDecimal + slpAge_gt: BigDecimal + slpAge_lt: BigDecimal + slpAge_gte: BigDecimal + slpAge_lte: BigDecimal + slpAge_in: [BigDecimal!] + slpAge_not_in: [BigDecimal!] + slpAgeRemoved: BigDecimal + slpAgeRemoved_not: BigDecimal + slpAgeRemoved_gt: BigDecimal + slpAgeRemoved_lt: BigDecimal + slpAgeRemoved_gte: BigDecimal + slpAgeRemoved_lte: BigDecimal + slpAgeRemoved_in: [BigDecimal!] + slpAgeRemoved_not_in: [BigDecimal!] + slpDeposited: BigDecimal + slpDeposited_not: BigDecimal + slpDeposited_gt: BigDecimal + slpDeposited_lt: BigDecimal + slpDeposited_gte: BigDecimal + slpDeposited_lte: BigDecimal + slpDeposited_in: [BigDecimal!] + slpDeposited_not_in: [BigDecimal!] + slpWithdrawn: BigDecimal + slpWithdrawn_not: BigDecimal + slpWithdrawn_gt: BigDecimal + slpWithdrawn_lt: BigDecimal + slpWithdrawn_gte: BigDecimal + slpWithdrawn_lte: BigDecimal + slpWithdrawn_in: [BigDecimal!] + slpWithdrawn_not_in: [BigDecimal!] + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [History_filter] + or: [History_filter] +} + +enum History_orderBy { + id + owner + owner__id + owner__bonusMultiplier + owner__bonusEndBlock + owner__devaddr + owner__migrator + owner__owner + owner__startBlock + owner__sushi + owner__sushiPerBlock + owner__totalAllocPoint + owner__poolCount + owner__slpBalance + owner__slpAge + owner__slpAgeRemoved + owner__slpDeposited + owner__slpWithdrawn + owner__updatedAt + slpBalance + slpAge + slpAgeRemoved + slpDeposited + slpWithdrawn + timestamp + block +} + +"8 bytes signed integer\n" +scalar Int8 + +type MasterChef { + id: ID! + bonusMultiplier: BigInt! + bonusEndBlock: BigInt! + devaddr: Bytes! + migrator: Bytes! + owner: Bytes! + startBlock: BigInt! + sushi: Bytes! + sushiPerBlock: BigInt! + totalAllocPoint: BigInt! + pools(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!]! + poolCount: BigInt! + slpBalance: BigDecimal! + slpAge: BigDecimal! + slpAgeRemoved: BigDecimal! + slpDeposited: BigDecimal! + slpWithdrawn: BigDecimal! + history(skip: Int = 0, first: Int = 100, orderBy: History_orderBy, orderDirection: OrderDirection, where: History_filter): [History!]! + updatedAt: BigInt! +} + +input MasterChef_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!] + bonusMultiplier: BigInt + bonusMultiplier_not: BigInt + bonusMultiplier_gt: BigInt + bonusMultiplier_lt: BigInt + bonusMultiplier_gte: BigInt + bonusMultiplier_lte: BigInt + bonusMultiplier_in: [BigInt!] + bonusMultiplier_not_in: [BigInt!] + bonusEndBlock: BigInt + bonusEndBlock_not: BigInt + bonusEndBlock_gt: BigInt + bonusEndBlock_lt: BigInt + bonusEndBlock_gte: BigInt + bonusEndBlock_lte: BigInt + bonusEndBlock_in: [BigInt!] + bonusEndBlock_not_in: [BigInt!] + devaddr: Bytes + devaddr_not: Bytes + devaddr_gt: Bytes + devaddr_lt: Bytes + devaddr_gte: Bytes + devaddr_lte: Bytes + devaddr_in: [Bytes!] + devaddr_not_in: [Bytes!] + devaddr_contains: Bytes + devaddr_not_contains: Bytes + migrator: Bytes + migrator_not: Bytes + migrator_gt: Bytes + migrator_lt: Bytes + migrator_gte: Bytes + migrator_lte: Bytes + migrator_in: [Bytes!] + migrator_not_in: [Bytes!] + migrator_contains: Bytes + migrator_not_contains: Bytes + 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 + startBlock: BigInt + startBlock_not: BigInt + startBlock_gt: BigInt + startBlock_lt: BigInt + startBlock_gte: BigInt + startBlock_lte: BigInt + startBlock_in: [BigInt!] + startBlock_not_in: [BigInt!] + sushi: Bytes + sushi_not: Bytes + sushi_gt: Bytes + sushi_lt: Bytes + sushi_gte: Bytes + sushi_lte: Bytes + sushi_in: [Bytes!] + sushi_not_in: [Bytes!] + sushi_contains: Bytes + sushi_not_contains: Bytes + sushiPerBlock: BigInt + sushiPerBlock_not: BigInt + sushiPerBlock_gt: BigInt + sushiPerBlock_lt: BigInt + sushiPerBlock_gte: BigInt + sushiPerBlock_lte: BigInt + sushiPerBlock_in: [BigInt!] + sushiPerBlock_not_in: [BigInt!] + totalAllocPoint: BigInt + totalAllocPoint_not: BigInt + totalAllocPoint_gt: BigInt + totalAllocPoint_lt: BigInt + totalAllocPoint_gte: BigInt + totalAllocPoint_lte: BigInt + totalAllocPoint_in: [BigInt!] + totalAllocPoint_not_in: [BigInt!] + pools_: Pool_filter + poolCount: BigInt + poolCount_not: BigInt + poolCount_gt: BigInt + poolCount_lt: BigInt + poolCount_gte: BigInt + poolCount_lte: BigInt + poolCount_in: [BigInt!] + poolCount_not_in: [BigInt!] + slpBalance: BigDecimal + slpBalance_not: BigDecimal + slpBalance_gt: BigDecimal + slpBalance_lt: BigDecimal + slpBalance_gte: BigDecimal + slpBalance_lte: BigDecimal + slpBalance_in: [BigDecimal!] + slpBalance_not_in: [BigDecimal!] + slpAge: BigDecimal + slpAge_not: BigDecimal + slpAge_gt: BigDecimal + slpAge_lt: BigDecimal + slpAge_gte: BigDecimal + slpAge_lte: BigDecimal + slpAge_in: [BigDecimal!] + slpAge_not_in: [BigDecimal!] + slpAgeRemoved: BigDecimal + slpAgeRemoved_not: BigDecimal + slpAgeRemoved_gt: BigDecimal + slpAgeRemoved_lt: BigDecimal + slpAgeRemoved_gte: BigDecimal + slpAgeRemoved_lte: BigDecimal + slpAgeRemoved_in: [BigDecimal!] + slpAgeRemoved_not_in: [BigDecimal!] + slpDeposited: BigDecimal + slpDeposited_not: BigDecimal + slpDeposited_gt: BigDecimal + slpDeposited_lt: BigDecimal + slpDeposited_gte: BigDecimal + slpDeposited_lte: BigDecimal + slpDeposited_in: [BigDecimal!] + slpDeposited_not_in: [BigDecimal!] + slpWithdrawn: BigDecimal + slpWithdrawn_not: BigDecimal + slpWithdrawn_gt: BigDecimal + slpWithdrawn_lt: BigDecimal + slpWithdrawn_gte: BigDecimal + slpWithdrawn_lte: BigDecimal + slpWithdrawn_in: [BigDecimal!] + slpWithdrawn_not_in: [BigDecimal!] + history_: History_filter + updatedAt: BigInt + updatedAt_not: BigInt + updatedAt_gt: BigInt + updatedAt_lt: BigInt + updatedAt_gte: BigInt + updatedAt_lte: BigInt + updatedAt_in: [BigInt!] + updatedAt_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MasterChef_filter] + or: [MasterChef_filter] +} + +enum MasterChef_orderBy { + id + bonusMultiplier + bonusEndBlock + devaddr + migrator + owner + startBlock + sushi + sushiPerBlock + totalAllocPoint + pools + poolCount + slpBalance + slpAge + slpAgeRemoved + slpDeposited + slpWithdrawn + history + updatedAt +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Pool { + id: ID! + owner: MasterChef! + pair: Bytes! + allocPoint: BigInt! + lastRewardBlock: BigInt! + accSushiPerShare: BigInt! + balance: BigInt! + users(skip: Int = 0, first: Int = 100, orderBy: User_orderBy, orderDirection: OrderDirection, where: User_filter): [User!]! + userCount: BigInt! + slpBalance: BigDecimal! + slpAge: BigDecimal! + slpAgeRemoved: BigDecimal! + slpDeposited: BigDecimal! + slpWithdrawn: BigDecimal! + timestamp: BigInt! + block: BigInt! + updatedAt: BigInt! + entryUSD: BigDecimal! + exitUSD: BigDecimal! + sushiHarvested: BigDecimal! + sushiHarvestedUSD: BigDecimal! +} + +type PoolHistory { + id: ID! + pool: Pool! + slpBalance: BigDecimal! + slpAge: BigDecimal! + slpAgeRemoved: BigDecimal! + slpDeposited: BigDecimal! + slpWithdrawn: BigDecimal! + userCount: BigInt! + timestamp: BigInt! + block: BigInt! + entryUSD: BigDecimal! + exitUSD: BigDecimal! + sushiHarvested: BigDecimal! + sushiHarvestedUSD: BigDecimal! +} + +input PoolHistory_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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + slpBalance: BigDecimal + slpBalance_not: BigDecimal + slpBalance_gt: BigDecimal + slpBalance_lt: BigDecimal + slpBalance_gte: BigDecimal + slpBalance_lte: BigDecimal + slpBalance_in: [BigDecimal!] + slpBalance_not_in: [BigDecimal!] + slpAge: BigDecimal + slpAge_not: BigDecimal + slpAge_gt: BigDecimal + slpAge_lt: BigDecimal + slpAge_gte: BigDecimal + slpAge_lte: BigDecimal + slpAge_in: [BigDecimal!] + slpAge_not_in: [BigDecimal!] + slpAgeRemoved: BigDecimal + slpAgeRemoved_not: BigDecimal + slpAgeRemoved_gt: BigDecimal + slpAgeRemoved_lt: BigDecimal + slpAgeRemoved_gte: BigDecimal + slpAgeRemoved_lte: BigDecimal + slpAgeRemoved_in: [BigDecimal!] + slpAgeRemoved_not_in: [BigDecimal!] + slpDeposited: BigDecimal + slpDeposited_not: BigDecimal + slpDeposited_gt: BigDecimal + slpDeposited_lt: BigDecimal + slpDeposited_gte: BigDecimal + slpDeposited_lte: BigDecimal + slpDeposited_in: [BigDecimal!] + slpDeposited_not_in: [BigDecimal!] + slpWithdrawn: BigDecimal + slpWithdrawn_not: BigDecimal + slpWithdrawn_gt: BigDecimal + slpWithdrawn_lt: BigDecimal + slpWithdrawn_gte: BigDecimal + slpWithdrawn_lte: BigDecimal + slpWithdrawn_in: [BigDecimal!] + slpWithdrawn_not_in: [BigDecimal!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + entryUSD: BigDecimal + entryUSD_not: BigDecimal + entryUSD_gt: BigDecimal + entryUSD_lt: BigDecimal + entryUSD_gte: BigDecimal + entryUSD_lte: BigDecimal + entryUSD_in: [BigDecimal!] + entryUSD_not_in: [BigDecimal!] + exitUSD: BigDecimal + exitUSD_not: BigDecimal + exitUSD_gt: BigDecimal + exitUSD_lt: BigDecimal + exitUSD_gte: BigDecimal + exitUSD_lte: BigDecimal + exitUSD_in: [BigDecimal!] + exitUSD_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + sushiHarvestedUSD: BigDecimal + sushiHarvestedUSD_not: BigDecimal + sushiHarvestedUSD_gt: BigDecimal + sushiHarvestedUSD_lt: BigDecimal + sushiHarvestedUSD_gte: BigDecimal + sushiHarvestedUSD_lte: BigDecimal + sushiHarvestedUSD_in: [BigDecimal!] + sushiHarvestedUSD_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PoolHistory_filter] + or: [PoolHistory_filter] +} + +enum PoolHistory_orderBy { + id + pool + pool__id + pool__pair + pool__allocPoint + pool__lastRewardBlock + pool__accSushiPerShare + pool__balance + pool__userCount + pool__slpBalance + pool__slpAge + pool__slpAgeRemoved + pool__slpDeposited + pool__slpWithdrawn + pool__timestamp + pool__block + pool__updatedAt + pool__entryUSD + pool__exitUSD + pool__sushiHarvested + pool__sushiHarvestedUSD + slpBalance + slpAge + slpAgeRemoved + slpDeposited + slpWithdrawn + userCount + timestamp + block + entryUSD + exitUSD + sushiHarvested + sushiHarvestedUSD +} + +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!] + owner: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + owner_: MasterChef_filter + pair: Bytes + pair_not: Bytes + pair_gt: Bytes + pair_lt: Bytes + pair_gte: Bytes + pair_lte: Bytes + pair_in: [Bytes!] + pair_not_in: [Bytes!] + pair_contains: Bytes + pair_not_contains: Bytes + allocPoint: BigInt + allocPoint_not: BigInt + allocPoint_gt: BigInt + allocPoint_lt: BigInt + allocPoint_gte: BigInt + allocPoint_lte: BigInt + allocPoint_in: [BigInt!] + allocPoint_not_in: [BigInt!] + lastRewardBlock: BigInt + lastRewardBlock_not: BigInt + lastRewardBlock_gt: BigInt + lastRewardBlock_lt: BigInt + lastRewardBlock_gte: BigInt + lastRewardBlock_lte: BigInt + lastRewardBlock_in: [BigInt!] + lastRewardBlock_not_in: [BigInt!] + accSushiPerShare: BigInt + accSushiPerShare_not: BigInt + accSushiPerShare_gt: BigInt + accSushiPerShare_lt: BigInt + accSushiPerShare_gte: BigInt + accSushiPerShare_lte: BigInt + accSushiPerShare_in: [BigInt!] + accSushiPerShare_not_in: [BigInt!] + balance: BigInt + balance_not: BigInt + balance_gt: BigInt + balance_lt: BigInt + balance_gte: BigInt + balance_lte: BigInt + balance_in: [BigInt!] + balance_not_in: [BigInt!] + users_: User_filter + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + slpBalance: BigDecimal + slpBalance_not: BigDecimal + slpBalance_gt: BigDecimal + slpBalance_lt: BigDecimal + slpBalance_gte: BigDecimal + slpBalance_lte: BigDecimal + slpBalance_in: [BigDecimal!] + slpBalance_not_in: [BigDecimal!] + slpAge: BigDecimal + slpAge_not: BigDecimal + slpAge_gt: BigDecimal + slpAge_lt: BigDecimal + slpAge_gte: BigDecimal + slpAge_lte: BigDecimal + slpAge_in: [BigDecimal!] + slpAge_not_in: [BigDecimal!] + slpAgeRemoved: BigDecimal + slpAgeRemoved_not: BigDecimal + slpAgeRemoved_gt: BigDecimal + slpAgeRemoved_lt: BigDecimal + slpAgeRemoved_gte: BigDecimal + slpAgeRemoved_lte: BigDecimal + slpAgeRemoved_in: [BigDecimal!] + slpAgeRemoved_not_in: [BigDecimal!] + slpDeposited: BigDecimal + slpDeposited_not: BigDecimal + slpDeposited_gt: BigDecimal + slpDeposited_lt: BigDecimal + slpDeposited_gte: BigDecimal + slpDeposited_lte: BigDecimal + slpDeposited_in: [BigDecimal!] + slpDeposited_not_in: [BigDecimal!] + slpWithdrawn: BigDecimal + slpWithdrawn_not: BigDecimal + slpWithdrawn_gt: BigDecimal + slpWithdrawn_lt: BigDecimal + slpWithdrawn_gte: BigDecimal + slpWithdrawn_lte: BigDecimal + slpWithdrawn_in: [BigDecimal!] + slpWithdrawn_not_in: [BigDecimal!] + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + updatedAt: BigInt + updatedAt_not: BigInt + updatedAt_gt: BigInt + updatedAt_lt: BigInt + updatedAt_gte: BigInt + updatedAt_lte: BigInt + updatedAt_in: [BigInt!] + updatedAt_not_in: [BigInt!] + entryUSD: BigDecimal + entryUSD_not: BigDecimal + entryUSD_gt: BigDecimal + entryUSD_lt: BigDecimal + entryUSD_gte: BigDecimal + entryUSD_lte: BigDecimal + entryUSD_in: [BigDecimal!] + entryUSD_not_in: [BigDecimal!] + exitUSD: BigDecimal + exitUSD_not: BigDecimal + exitUSD_gt: BigDecimal + exitUSD_lt: BigDecimal + exitUSD_gte: BigDecimal + exitUSD_lte: BigDecimal + exitUSD_in: [BigDecimal!] + exitUSD_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + sushiHarvestedUSD: BigDecimal + sushiHarvestedUSD_not: BigDecimal + sushiHarvestedUSD_gt: BigDecimal + sushiHarvestedUSD_lt: BigDecimal + sushiHarvestedUSD_gte: BigDecimal + sushiHarvestedUSD_lte: BigDecimal + sushiHarvestedUSD_in: [BigDecimal!] + sushiHarvestedUSD_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pool_filter] + or: [Pool_filter] +} + +enum Pool_orderBy { + id + owner + owner__id + owner__bonusMultiplier + owner__bonusEndBlock + owner__devaddr + owner__migrator + owner__owner + owner__startBlock + owner__sushi + owner__sushiPerBlock + owner__totalAllocPoint + owner__poolCount + owner__slpBalance + owner__slpAge + owner__slpAgeRemoved + owner__slpDeposited + owner__slpWithdrawn + owner__updatedAt + pair + allocPoint + lastRewardBlock + accSushiPerShare + balance + users + userCount + slpBalance + slpAge + slpAgeRemoved + slpDeposited + slpWithdrawn + timestamp + block + updatedAt + entryUSD + exitUSD + sushiHarvested + sushiHarvestedUSD +} + +type Query { + masterChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterChef + masterChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MasterChef_orderBy + orderDirection: OrderDirection + where: MasterChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterChef!]! + history( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): History + histories( + skip: Int = 0 + first: Int = 100 + orderBy: History_orderBy + orderDirection: OrderDirection + where: History_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [History!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + poolHistory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHistory + poolHistories( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHistory_orderBy + orderDirection: OrderDirection + where: PoolHistory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHistory!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Subscription { + masterChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterChef + masterChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MasterChef_orderBy + orderDirection: OrderDirection + where: MasterChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterChef!]! + history( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): History + histories( + skip: Int = 0 + first: Int = 100 + orderBy: History_orderBy + orderDirection: OrderDirection + where: History_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [History!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + poolHistory( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PoolHistory + poolHistories( + skip: Int = 0 + first: Int = 100 + orderBy: PoolHistory_orderBy + orderDirection: OrderDirection + where: PoolHistory_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PoolHistory!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type User { + id: ID! + address: Bytes! + pool: Pool + amount: BigInt! + rewardDebt: BigInt! + entryUSD: BigDecimal! + exitUSD: BigDecimal! + sushiHarvested: BigDecimal! + sushiHarvestedUSD: BigDecimal! + timestamp: BigInt! + block: BigInt! +} + +input User_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!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + rewardDebt: BigInt + rewardDebt_not: BigInt + rewardDebt_gt: BigInt + rewardDebt_lt: BigInt + rewardDebt_gte: BigInt + rewardDebt_lte: BigInt + rewardDebt_in: [BigInt!] + rewardDebt_not_in: [BigInt!] + entryUSD: BigDecimal + entryUSD_not: BigDecimal + entryUSD_gt: BigDecimal + entryUSD_lt: BigDecimal + entryUSD_gte: BigDecimal + entryUSD_lte: BigDecimal + entryUSD_in: [BigDecimal!] + entryUSD_not_in: [BigDecimal!] + exitUSD: BigDecimal + exitUSD_not: BigDecimal + exitUSD_gt: BigDecimal + exitUSD_lt: BigDecimal + exitUSD_gte: BigDecimal + exitUSD_lte: BigDecimal + exitUSD_in: [BigDecimal!] + exitUSD_not_in: [BigDecimal!] + sushiHarvested: BigDecimal + sushiHarvested_not: BigDecimal + sushiHarvested_gt: BigDecimal + sushiHarvested_lt: BigDecimal + sushiHarvested_gte: BigDecimal + sushiHarvested_lte: BigDecimal + sushiHarvested_in: [BigDecimal!] + sushiHarvested_not_in: [BigDecimal!] + sushiHarvestedUSD: BigDecimal + sushiHarvestedUSD_not: BigDecimal + sushiHarvestedUSD_gt: BigDecimal + sushiHarvestedUSD_lt: BigDecimal + sushiHarvestedUSD_gte: BigDecimal + sushiHarvestedUSD_lte: BigDecimal + sushiHarvestedUSD_in: [BigDecimal!] + sushiHarvestedUSD_not_in: [BigDecimal!] + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + address + pool + pool__id + pool__pair + pool__allocPoint + pool__lastRewardBlock + pool__accSushiPerShare + pool__balance + pool__userCount + pool__slpBalance + pool__slpAge + pool__slpAgeRemoved + pool__slpDeposited + pool__slpWithdrawn + pool__timestamp + pool__block + pool__updatedAt + pool__entryUSD + pool__exitUSD + pool__sushiHarvested + pool__sushiHarvestedUSD + amount + rewardDebt + entryUSD + exitUSD + sushiHarvested + sushiHarvestedUSD + timestamp + block +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts new file mode 100644 index 0000000000..81d0ae2967 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './master-chef-v2-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts new file mode 100644 index 0000000000..044b4b733e --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts @@ -0,0 +1 @@ +export * from './queries/user-positions' diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts new file mode 100644 index 0000000000..d240778a55 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts @@ -0,0 +1,10 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": + TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + } +} diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts new file mode 100644 index 0000000000..14ee77189b --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts @@ -0,0 +1,51 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'master-chef-v2'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'masterChef' | 'masterChef__id' | 'masterChef__totalAllocPoint' | 'masterChef__poolCount' | 'masterChef__timestamp' | 'masterChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'timestamp' | 'block'; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts new file mode 100644 index 0000000000..d1c8c5abb2 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts @@ -0,0 +1,62 @@ +import { MASTERCHEF_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' +import type { VariablesOf } from 'gql.tada' + +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import { ChainId } from 'sushi/chain' +import { graphql } from '../graphql' + +export const MasterChefV2UserPositionsQuery = graphql( + ` + query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) { + positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + address + amount + pool { + id: pair + } + } + } +`, +) + +export type GetMasterChefV2UserPositions = VariablesOf< + typeof MasterChefV2UserPositionsQuery +> + +export async function getMasterChefV2UserPositions({ + ...variables +}: GetMasterChefV2UserPositions) { + const url = `https://${MASTERCHEF_V2_SUBGRAPH_URL}` + + const result = await requestPaged({ + chainId: ChainId.ETHEREUM, + url, + query: MasterChefV2UserPositionsQuery, + variables, + }) + + return result.positions.map((position) => { + let pool = null + + if (position.pool) { + pool = convertIdToMultichainId( + copyIdToAddress(addChainId(ChainId.ETHEREUM, position.pool)), + ) + } + + return { + id: position.id, + address: position.address, + amount: position.amount, + pool, + } + }) +} + +export type MasterChefV2UserPositions = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql b/packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql new file mode 100644 index 0000000000..9b8d761688 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql @@ -0,0 +1,749 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +"8 bytes signed integer\n" +scalar Int8 + +type MasterChef { + id: ID! + totalAllocPoint: BigInt! + pools(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!] + poolCount: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input MasterChef_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!] + totalAllocPoint: BigInt + totalAllocPoint_not: BigInt + totalAllocPoint_gt: BigInt + totalAllocPoint_lt: BigInt + totalAllocPoint_gte: BigInt + totalAllocPoint_lte: BigInt + totalAllocPoint_in: [BigInt!] + totalAllocPoint_not_in: [BigInt!] + pools_: Pool_filter + poolCount: BigInt + poolCount_not: BigInt + poolCount_gt: BigInt + poolCount_lt: BigInt + poolCount_gte: BigInt + poolCount_lte: BigInt + poolCount_in: [BigInt!] + poolCount_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MasterChef_filter] + or: [MasterChef_filter] +} + +enum MasterChef_orderBy { + id + totalAllocPoint + pools + poolCount + timestamp + block +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Pool { + id: ID! + masterChef: MasterChef! + pair: Bytes! + rewarder: Rewarder + allocPoint: BigInt! + lastRewardBlock: BigInt! + accSushiPerShare: BigInt! + slpBalance: BigInt! + users(skip: Int = 0, first: Int = 100, orderBy: User_orderBy, orderDirection: OrderDirection, where: User_filter): [User!]! + userCount: BigInt! + timestamp: BigInt! + block: BigInt! +} + +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!] + masterChef: String + masterChef_not: String + masterChef_gt: String + masterChef_lt: String + masterChef_gte: String + masterChef_lte: String + masterChef_in: [String!] + masterChef_not_in: [String!] + masterChef_contains: String + masterChef_contains_nocase: String + masterChef_not_contains: String + masterChef_not_contains_nocase: String + masterChef_starts_with: String + masterChef_starts_with_nocase: String + masterChef_not_starts_with: String + masterChef_not_starts_with_nocase: String + masterChef_ends_with: String + masterChef_ends_with_nocase: String + masterChef_not_ends_with: String + masterChef_not_ends_with_nocase: String + masterChef_: MasterChef_filter + pair: Bytes + pair_not: Bytes + pair_gt: Bytes + pair_lt: Bytes + pair_gte: Bytes + pair_lte: Bytes + pair_in: [Bytes!] + pair_not_in: [Bytes!] + pair_contains: Bytes + pair_not_contains: Bytes + rewarder: String + rewarder_not: String + rewarder_gt: String + rewarder_lt: String + rewarder_gte: String + rewarder_lte: String + rewarder_in: [String!] + rewarder_not_in: [String!] + rewarder_contains: String + rewarder_contains_nocase: String + rewarder_not_contains: String + rewarder_not_contains_nocase: String + rewarder_starts_with: String + rewarder_starts_with_nocase: String + rewarder_not_starts_with: String + rewarder_not_starts_with_nocase: String + rewarder_ends_with: String + rewarder_ends_with_nocase: String + rewarder_not_ends_with: String + rewarder_not_ends_with_nocase: String + rewarder_: Rewarder_filter + allocPoint: BigInt + allocPoint_not: BigInt + allocPoint_gt: BigInt + allocPoint_lt: BigInt + allocPoint_gte: BigInt + allocPoint_lte: BigInt + allocPoint_in: [BigInt!] + allocPoint_not_in: [BigInt!] + lastRewardBlock: BigInt + lastRewardBlock_not: BigInt + lastRewardBlock_gt: BigInt + lastRewardBlock_lt: BigInt + lastRewardBlock_gte: BigInt + lastRewardBlock_lte: BigInt + lastRewardBlock_in: [BigInt!] + lastRewardBlock_not_in: [BigInt!] + accSushiPerShare: BigInt + accSushiPerShare_not: BigInt + accSushiPerShare_gt: BigInt + accSushiPerShare_lt: BigInt + accSushiPerShare_gte: BigInt + accSushiPerShare_lte: BigInt + accSushiPerShare_in: [BigInt!] + accSushiPerShare_not_in: [BigInt!] + slpBalance: BigInt + slpBalance_not: BigInt + slpBalance_gt: BigInt + slpBalance_lt: BigInt + slpBalance_gte: BigInt + slpBalance_lte: BigInt + slpBalance_in: [BigInt!] + slpBalance_not_in: [BigInt!] + users_: User_filter + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pool_filter] + or: [Pool_filter] +} + +enum Pool_orderBy { + id + masterChef + masterChef__id + masterChef__totalAllocPoint + masterChef__poolCount + masterChef__timestamp + masterChef__block + pair + rewarder + rewarder__id + rewarder__rewardToken + rewarder__rewardPerSecond + rewarder__timestamp + rewarder__block + allocPoint + lastRewardBlock + accSushiPerShare + slpBalance + users + userCount + timestamp + block +} + +type Query { + masterChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterChef + masterChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MasterChef_orderBy + orderDirection: OrderDirection + where: MasterChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterChef!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + rewarder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rewarder + rewarders( + skip: Int = 0 + first: Int = 100 + orderBy: Rewarder_orderBy + orderDirection: OrderDirection + where: Rewarder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rewarder!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Rewarder { + id: ID! + rewardToken: Bytes! + rewardPerSecond: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input Rewarder_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!] + rewardToken: Bytes + rewardToken_not: Bytes + rewardToken_gt: Bytes + rewardToken_lt: Bytes + rewardToken_gte: Bytes + rewardToken_lte: Bytes + rewardToken_in: [Bytes!] + rewardToken_not_in: [Bytes!] + rewardToken_contains: Bytes + rewardToken_not_contains: Bytes + rewardPerSecond: BigInt + rewardPerSecond_not: BigInt + rewardPerSecond_gt: BigInt + rewardPerSecond_lt: BigInt + rewardPerSecond_gte: BigInt + rewardPerSecond_lte: BigInt + rewardPerSecond_in: [BigInt!] + rewardPerSecond_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Rewarder_filter] + or: [Rewarder_filter] +} + +enum Rewarder_orderBy { + id + rewardToken + rewardPerSecond + timestamp + block +} + +type Subscription { + masterChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterChef + masterChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MasterChef_orderBy + orderDirection: OrderDirection + where: MasterChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterChef!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + rewarder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rewarder + rewarders( + skip: Int = 0 + first: Int = 100 + orderBy: Rewarder_orderBy + orderDirection: OrderDirection + where: Rewarder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rewarder!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type User { + id: ID! + address: Bytes! + pool: Pool + amount: BigInt! + rewardDebt: BigInt! + sushiHarvested: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input User_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!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + rewardDebt: BigInt + rewardDebt_not: BigInt + rewardDebt_gt: BigInt + rewardDebt_lt: BigInt + rewardDebt_gte: BigInt + rewardDebt_lte: BigInt + rewardDebt_in: [BigInt!] + rewardDebt_not_in: [BigInt!] + sushiHarvested: BigInt + sushiHarvested_not: BigInt + sushiHarvested_gt: BigInt + sushiHarvested_lt: BigInt + sushiHarvested_gte: BigInt + sushiHarvested_lte: BigInt + sushiHarvested_in: [BigInt!] + sushiHarvested_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + address + pool + pool__id + pool__pair + pool__allocPoint + pool__lastRewardBlock + pool__accSushiPerShare + pool__slpBalance + pool__userCount + pool__timestamp + pool__block + amount + rewardDebt + sushiHarvested + timestamp + block +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts b/packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts new file mode 100644 index 0000000000..01a82d3406 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './mini-chef-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/index.ts b/packages/graph-client-new/src/subgraphs/mini-chef/index.ts new file mode 100644 index 0000000000..044b4b733e --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/index.ts @@ -0,0 +1 @@ +export * from './queries/user-positions' diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts new file mode 100644 index 0000000000..d240778a55 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts @@ -0,0 +1,10 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": + TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + } +} diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts new file mode 100644 index 0000000000..c79aa9e0d8 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts @@ -0,0 +1,54 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'mini-chef'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'MiniChef': { kind: 'OBJECT'; name: 'MiniChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerSecond': { name: 'sushiPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'MiniChef_filter': { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'MiniChef_orderBy': { name: 'MiniChef_orderBy'; enumValues: 'id' | 'sushi' | 'sushiPerSecond' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; + 'NativeRewarderPool': { kind: 'OBJECT'; name: 'NativeRewarderPool'; fields: { 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; + 'NativeRewarderPool_filter': { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'NativeRewarderPool_orderBy': { name: 'NativeRewarderPool_orderBy'; enumValues: 'id' | 'allocPoint'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardTime': { name: 'lastRewardTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'miniChef' | 'miniChef__id' | 'miniChef__sushi' | 'miniChef__sushiPerSecond' | 'miniChef__totalAllocPoint' | 'miniChef__poolCount' | 'miniChef__timestamp' | 'miniChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__totalAllocPoint' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardTime' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'totalAllocPoint' | 'timestamp' | 'block'; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardTime' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts new file mode 100644 index 0000000000..60832cc14d --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts @@ -0,0 +1,67 @@ +import { + MINICHEF_SUBGRAPH_URL, + type MiniChefChainId, +} from '@sushiswap/graph-config' +import type { VariablesOf } from 'gql.tada' + +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { graphql } from '../graphql' + +export const MiniChefUserPositionsQuery = graphql( + ` + query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) { + positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + address + amount + pool { + id: pair + } + } + } +`, +) + +export type GetMiniChefUserPositions = VariablesOf< + typeof MiniChefUserPositionsQuery +> & + ChainIdVariable + +export async function getMiniChefUserPositions({ + chainId, + ...variables +}: GetMiniChefUserPositions) { + const url = `https://${MINICHEF_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: MiniChefUserPositionsQuery, + variables, + }) + + return result.positions.map((position) => { + let pool = null + + if (position.pool) { + pool = convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, position.pool)), + ) + } + + return { + id: position.id, + address: position.address, + amount: position.amount, + pool, + } + }) +} + +export type MiniChefUserPositions = Awaited< + ReturnType +> diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql b/packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql new file mode 100644 index 0000000000..516e5d30bd --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql @@ -0,0 +1,878 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +"8 bytes signed integer\n" +scalar Int8 + +type MiniChef { + id: ID! + sushi: Bytes! + sushiPerSecond: BigInt! + totalAllocPoint: BigInt! + pools(skip: Int = 0, first: Int = 100, orderBy: Pool_orderBy, orderDirection: OrderDirection, where: Pool_filter): [Pool!] + poolCount: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input MiniChef_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!] + sushi: Bytes + sushi_not: Bytes + sushi_gt: Bytes + sushi_lt: Bytes + sushi_gte: Bytes + sushi_lte: Bytes + sushi_in: [Bytes!] + sushi_not_in: [Bytes!] + sushi_contains: Bytes + sushi_not_contains: Bytes + sushiPerSecond: BigInt + sushiPerSecond_not: BigInt + sushiPerSecond_gt: BigInt + sushiPerSecond_lt: BigInt + sushiPerSecond_gte: BigInt + sushiPerSecond_lte: BigInt + sushiPerSecond_in: [BigInt!] + sushiPerSecond_not_in: [BigInt!] + totalAllocPoint: BigInt + totalAllocPoint_not: BigInt + totalAllocPoint_gt: BigInt + totalAllocPoint_lt: BigInt + totalAllocPoint_gte: BigInt + totalAllocPoint_lte: BigInt + totalAllocPoint_in: [BigInt!] + totalAllocPoint_not_in: [BigInt!] + pools_: Pool_filter + poolCount: BigInt + poolCount_not: BigInt + poolCount_gt: BigInt + poolCount_lt: BigInt + poolCount_gte: BigInt + poolCount_lte: BigInt + poolCount_in: [BigInt!] + poolCount_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MiniChef_filter] + or: [MiniChef_filter] +} + +enum MiniChef_orderBy { + id + sushi + sushiPerSecond + totalAllocPoint + pools + poolCount + timestamp + block +} + +type NativeRewarderPool { + id: ID! + allocPoint: BigInt! +} + +input NativeRewarderPool_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!] + allocPoint: BigInt + allocPoint_not: BigInt + allocPoint_gt: BigInt + allocPoint_lt: BigInt + allocPoint_gte: BigInt + allocPoint_lte: BigInt + allocPoint_in: [BigInt!] + allocPoint_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [NativeRewarderPool_filter] + or: [NativeRewarderPool_filter] +} + +enum NativeRewarderPool_orderBy { + id + allocPoint +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Pool { + id: ID! + miniChef: MiniChef! + pair: Bytes! + rewarder: Rewarder + allocPoint: BigInt! + lastRewardTime: BigInt! + accSushiPerShare: BigInt! + slpBalance: BigInt! + users(skip: Int = 0, first: Int = 100, orderBy: User_orderBy, orderDirection: OrderDirection, where: User_filter): [User!]! + userCount: BigInt! + timestamp: BigInt! + block: BigInt! +} + +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!] + miniChef: String + miniChef_not: String + miniChef_gt: String + miniChef_lt: String + miniChef_gte: String + miniChef_lte: String + miniChef_in: [String!] + miniChef_not_in: [String!] + miniChef_contains: String + miniChef_contains_nocase: String + miniChef_not_contains: String + miniChef_not_contains_nocase: String + miniChef_starts_with: String + miniChef_starts_with_nocase: String + miniChef_not_starts_with: String + miniChef_not_starts_with_nocase: String + miniChef_ends_with: String + miniChef_ends_with_nocase: String + miniChef_not_ends_with: String + miniChef_not_ends_with_nocase: String + miniChef_: MiniChef_filter + pair: Bytes + pair_not: Bytes + pair_gt: Bytes + pair_lt: Bytes + pair_gte: Bytes + pair_lte: Bytes + pair_in: [Bytes!] + pair_not_in: [Bytes!] + pair_contains: Bytes + pair_not_contains: Bytes + rewarder: String + rewarder_not: String + rewarder_gt: String + rewarder_lt: String + rewarder_gte: String + rewarder_lte: String + rewarder_in: [String!] + rewarder_not_in: [String!] + rewarder_contains: String + rewarder_contains_nocase: String + rewarder_not_contains: String + rewarder_not_contains_nocase: String + rewarder_starts_with: String + rewarder_starts_with_nocase: String + rewarder_not_starts_with: String + rewarder_not_starts_with_nocase: String + rewarder_ends_with: String + rewarder_ends_with_nocase: String + rewarder_not_ends_with: String + rewarder_not_ends_with_nocase: String + rewarder_: Rewarder_filter + allocPoint: BigInt + allocPoint_not: BigInt + allocPoint_gt: BigInt + allocPoint_lt: BigInt + allocPoint_gte: BigInt + allocPoint_lte: BigInt + allocPoint_in: [BigInt!] + allocPoint_not_in: [BigInt!] + lastRewardTime: BigInt + lastRewardTime_not: BigInt + lastRewardTime_gt: BigInt + lastRewardTime_lt: BigInt + lastRewardTime_gte: BigInt + lastRewardTime_lte: BigInt + lastRewardTime_in: [BigInt!] + lastRewardTime_not_in: [BigInt!] + accSushiPerShare: BigInt + accSushiPerShare_not: BigInt + accSushiPerShare_gt: BigInt + accSushiPerShare_lt: BigInt + accSushiPerShare_gte: BigInt + accSushiPerShare_lte: BigInt + accSushiPerShare_in: [BigInt!] + accSushiPerShare_not_in: [BigInt!] + slpBalance: BigInt + slpBalance_not: BigInt + slpBalance_gt: BigInt + slpBalance_lt: BigInt + slpBalance_gte: BigInt + slpBalance_lte: BigInt + slpBalance_in: [BigInt!] + slpBalance_not_in: [BigInt!] + users_: User_filter + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pool_filter] + or: [Pool_filter] +} + +enum Pool_orderBy { + id + miniChef + miniChef__id + miniChef__sushi + miniChef__sushiPerSecond + miniChef__totalAllocPoint + miniChef__poolCount + miniChef__timestamp + miniChef__block + pair + rewarder + rewarder__id + rewarder__rewardToken + rewarder__rewardPerSecond + rewarder__totalAllocPoint + rewarder__timestamp + rewarder__block + allocPoint + lastRewardTime + accSushiPerShare + slpBalance + users + userCount + timestamp + block +} + +type Query { + miniChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MiniChef + miniChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MiniChef_orderBy + orderDirection: OrderDirection + where: MiniChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MiniChef!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + nativeRewarderPool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): NativeRewarderPool + nativeRewarderPools( + skip: Int = 0 + first: Int = 100 + orderBy: NativeRewarderPool_orderBy + orderDirection: OrderDirection + where: NativeRewarderPool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [NativeRewarderPool!]! + rewarder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rewarder + rewarders( + skip: Int = 0 + first: Int = 100 + orderBy: Rewarder_orderBy + orderDirection: OrderDirection + where: Rewarder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rewarder!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Rewarder { + id: ID! + rewardToken: Bytes! + rewardPerSecond: BigInt! + totalAllocPoint: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input Rewarder_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!] + rewardToken: Bytes + rewardToken_not: Bytes + rewardToken_gt: Bytes + rewardToken_lt: Bytes + rewardToken_gte: Bytes + rewardToken_lte: Bytes + rewardToken_in: [Bytes!] + rewardToken_not_in: [Bytes!] + rewardToken_contains: Bytes + rewardToken_not_contains: Bytes + rewardPerSecond: BigInt + rewardPerSecond_not: BigInt + rewardPerSecond_gt: BigInt + rewardPerSecond_lt: BigInt + rewardPerSecond_gte: BigInt + rewardPerSecond_lte: BigInt + rewardPerSecond_in: [BigInt!] + rewardPerSecond_not_in: [BigInt!] + totalAllocPoint: BigInt + totalAllocPoint_not: BigInt + totalAllocPoint_gt: BigInt + totalAllocPoint_lt: BigInt + totalAllocPoint_gte: BigInt + totalAllocPoint_lte: BigInt + totalAllocPoint_in: [BigInt!] + totalAllocPoint_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Rewarder_filter] + or: [Rewarder_filter] +} + +enum Rewarder_orderBy { + id + rewardToken + rewardPerSecond + totalAllocPoint + timestamp + block +} + +type Subscription { + miniChef( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MiniChef + miniChefs( + skip: Int = 0 + first: Int = 100 + orderBy: MiniChef_orderBy + orderDirection: OrderDirection + where: MiniChef_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MiniChef!]! + pool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pool + pools( + skip: Int = 0 + first: Int = 100 + orderBy: Pool_orderBy + orderDirection: OrderDirection + where: Pool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pool!]! + nativeRewarderPool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): NativeRewarderPool + nativeRewarderPools( + skip: Int = 0 + first: Int = 100 + orderBy: NativeRewarderPool_orderBy + orderDirection: OrderDirection + where: NativeRewarderPool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [NativeRewarderPool!]! + rewarder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rewarder + rewarders( + skip: Int = 0 + first: Int = 100 + orderBy: Rewarder_orderBy + orderDirection: OrderDirection + where: Rewarder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rewarder!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type User { + id: ID! + address: Bytes! + pool: Pool + amount: BigInt! + rewardDebt: BigInt! + sushiHarvested: BigInt! + timestamp: BigInt! + block: BigInt! +} + +input User_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!] + address: Bytes + address_not: Bytes + address_gt: Bytes + address_lt: Bytes + address_gte: Bytes + address_lte: Bytes + address_in: [Bytes!] + address_not_in: [Bytes!] + address_contains: Bytes + address_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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + rewardDebt: BigInt + rewardDebt_not: BigInt + rewardDebt_gt: BigInt + rewardDebt_lt: BigInt + rewardDebt_gte: BigInt + rewardDebt_lte: BigInt + rewardDebt_in: [BigInt!] + rewardDebt_not_in: [BigInt!] + sushiHarvested: BigInt + sushiHarvested_not: BigInt + sushiHarvested_gt: BigInt + sushiHarvested_lt: BigInt + sushiHarvested_gte: BigInt + sushiHarvested_lte: BigInt + sushiHarvested_in: [BigInt!] + sushiHarvested_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!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + address + pool + pool__id + pool__pair + pool__allocPoint + pool__lastRewardTime + pool__accSushiPerShare + pool__slpBalance + pool__userCount + pool__timestamp + pool__block + amount + rewardDebt + sushiHarvested + timestamp + block +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts index a02b09457c..ce99157645 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts @@ -2,6 +2,7 @@ import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import { graphql } from '../graphql' export const SushiBarQuery = graphql( @@ -33,7 +34,7 @@ export async function getSushiBar(variables: GetSushiBar) { return result.xsushi } - throw new Error('No bar') + throw new FetchError(1, 'No bar') } export type SushiBar = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts new file mode 100644 index 0000000000..85c26e2b3b --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts @@ -0,0 +1,12 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + "\n query Bar($hourCnt: Int = 24, $dayCnt: Int = 7, $weekCnt: Int = 1000) {\n hourSnapshots(first: $hourCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n daySnapshots(first: $dayCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n weekSnapshots(first: $weekCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": + TadaDocumentNode<{ weekSnapshots: unknown; daySnapshots: unknown; hourSnapshots: unknown; }, { weekCnt?: number; dayCnt?: number; hourCnt?: number; }, void>; + "\n query Bar($block: Block_height) {\n xsushi(id: \"xSushi\", block: $block) {\n id\n sushiXsushiRatio\n xSushiSushiRatio\n sushiSupply\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": + TadaDocumentNode<{ xsushi: unknown; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; }, void>; + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index a0e4bffe7c..60dc894b9c 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -47,7 +48,7 @@ export async function getSushiV2Burns({ return result.burns } - throw new Error('Failed to fetch burns') + throw new FetchError(chainId, 'Failed to fetch burns') } export type SushiV2Burns = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 69d18a85f3..0484f3a572 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -60,7 +61,7 @@ export async function getSushiV2LiquidityPositions({ }) } - throw new Error('Failed to fetch liquidity positions') + throw new FetchError(chainId, 'Failed to fetch liquidity positions') } export type SushiV2LiquidityPositions = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 104039af1e..63fca1a01e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -47,7 +48,7 @@ export async function getSushiV2Mints({ return result.mints } - throw new Error('Failed to fetch mints') + throw new FetchError(chainId, 'Failed to fetch mints') } export type SushiV2Mints = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 31e8672f0d..10d14b8f95 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -5,6 +5,7 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -40,7 +41,10 @@ export async function getSushiV2Pool({ ) } - throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) + throw new FetchError( + chainId, + `Failed to fetch pool ${chainId}:${variables.id}`, + ) } export type SushiV2Pool = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 61796071c6..170bc4a134 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -45,7 +46,7 @@ export async function getSushiV2Pools({ ) } - throw new Error('Failed to fetch pools') + throw new FetchError(chainId, 'Failed to fetch pools') } export type SushiV2Pools = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index 8a6bd7da4f..e94579fefb 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -53,7 +54,7 @@ export async function getSushiV2Swaps({ return result.swaps } - throw new Error('Failed to fetch swaps') + throw new FetchError(chainId, 'Failed to fetch swaps') } export type SushiV2Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index f0e930b1ee..702c2d739b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -50,7 +51,7 @@ export async function getSushiV2Tokens({ ) } - throw new Error('Failed to fetch tokens') + throw new FetchError(chainId, 'Failed to fetch tokens') } export type SushiV2Tokens = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 047c107f54..665fa0414d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -73,7 +74,7 @@ export async function getSushiV2Transactions({ return result.transactions } - throw new Error('Failed to fetch transactions') + throw new FetchError(chainId, 'Failed to fetch transactions') } export type SushiV2Transactions = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts index e664361ffe..f43cba5e8a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts @@ -4,6 +4,23 @@ import type { TadaDocumentNode, $tada } from 'gql.tada'; declare module 'gql.tada' { interface setupCache { - + "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": + TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "to" | "complete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": + TadaDocumentNode<{ liquidityPositions: { user: { id: string; }; pair: { id: string; }; balance: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: any; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "user" | "balance" | "createdAtTimestamp" | "createdAtBlock" | "user__id" | "user__lpSnapshotsCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": + TadaDocumentNode<{ mints: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "to" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n fragment PoolFields on Pair @_unmask {\n id\n type\n swapFee\n twapEnabled\n name\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n source\n createdAtBlock\n createdAtTimestamp\n reserve0\n reserve1\n liquidity\n liquidityUSD\n liquidityNative\n volumeUSD\n volumeNative\n volumeToken0\n volumeToken1\n feesNative\n feesUSD\n txCount\n apr\n aprUpdatedAtTimestamp\n }\n": + TadaDocumentNode<{ aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }, {}, { fragment: "PoolFields"; on: "Pair"; masked: false; }>; + "\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n": + TadaDocumentNode<{ pool: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; + "\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n": + TadaDocumentNode<{ pools: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "liquidity" | "createdAtTimestamp" | "createdAtBlock" | "type" | "hourSnapshots" | "apr" | "daySnapshots" | "swapFee" | "twapEnabled" | "token0" | "token1" | "source" | "reserve0" | "reserve1" | "_cacheUpdatedAtBlock" | "_cache_reserve0" | "_cache_reserve1" | "_cache_token0Price" | "_cache_token1Price" | "liquidityUSD" | "liquidityNative" | "trackedLiquidityNative" | "token0Price" | "token1Price" | "volumeNative" | "volumeUSD" | "volumeToken0" | "volumeToken1" | "feesNative" | "feesUSD" | "aprUpdatedAtTimestamp" | "txCount" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__symbolSuccess" | "token0__name" | "token0__nameSuccess" | "token0__decimals" | "token0__decimalsSuccess" | "token0__liquidity" | "token0__liquidityNative" | "token0__liquidityUSD" | "token0__volume" | "token0__volumeNative" | "token0__volumeUSD" | "token0__feesNative" | "token0__feesUSD" | "token0__txCount" | "token0__pairCount" | "token0__whitelistedPairCount" | "token1__id" | "token1__symbol" | "token1__symbolSuccess" | "token1__name" | "token1__nameSuccess" | "token1__decimals" | "token1__decimalsSuccess" | "token1__liquidity" | "token1__liquidityNative" | "token1__liquidityUSD" | "token1__volume" | "token1__volumeNative" | "token1__volumeUSD" | "token1__feesNative" | "token1__feesUSD" | "token1__txCount" | "token1__pairCount" | "token1__whitelistedPairCount" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": + TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "amountUSD" | "logIndex" | "transaction" | "to" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "tokenIn" | "tokenOut" | "amountIn" | "amountOut" | "tokenIn__id" | "tokenIn__symbol" | "tokenIn__symbolSuccess" | "tokenIn__name" | "tokenIn__nameSuccess" | "tokenIn__decimals" | "tokenIn__decimalsSuccess" | "tokenIn__liquidity" | "tokenIn__liquidityNative" | "tokenIn__liquidityUSD" | "tokenIn__volume" | "tokenIn__volumeNative" | "tokenIn__volumeUSD" | "tokenIn__feesNative" | "tokenIn__feesUSD" | "tokenIn__txCount" | "tokenIn__pairCount" | "tokenIn__whitelistedPairCount" | "tokenOut__id" | "tokenOut__symbol" | "tokenOut__symbolSuccess" | "tokenOut__name" | "tokenOut__nameSuccess" | "tokenOut__decimals" | "tokenOut__decimalsSuccess" | "tokenOut__liquidity" | "tokenOut__liquidityNative" | "tokenOut__liquidityUSD" | "tokenOut__volume" | "tokenOut__volumeNative" | "tokenOut__volumeUSD" | "tokenOut__feesNative" | "tokenOut__feesUSD" | "tokenOut__txCount" | "tokenOut__pairCount" | "tokenOut__whitelistedPairCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n liquidityUSD\n symbol\n decimals\n volumeUSD\n feesUSD\n price {\n derivedNative\n }\n }\n }\n": + TadaDocumentNode<{ tokens: { price: { derivedNative: string; }; feesUSD: string; volumeUSD: string; decimals: string; symbol: string; liquidityUSD: string; name: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "liquidity" | "liquidityUSD" | "liquidityNative" | "volumeNative" | "volumeUSD" | "feesNative" | "feesUSD" | "txCount" | "price" | "symbolSuccess" | "nameSuccess" | "decimals" | "decimalsSuccess" | "volume" | "pairCount" | "whitelistedPairCount" | "pairs" | "price__id" | "price__derivedNative" | "price__lastUsdPrice" | "whitelistedPairs"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp\n createdAtBlock\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n }\n }\n }\n": + TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: string; }[]; createdAtBlock: string; createdAtTimestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "createdAtTimestamp" | "createdAtBlock" | "gasLimit" | "burns" | "gasPrice" | "mints" | "swaps"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index 84abb130f9..1ff50417bc 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -48,7 +49,7 @@ export async function getSushiV3Burns({ return result.burns } - throw new Error('Failed to fetch burns') + throw new FetchError(chainId, 'Failed to fetch burns') } export type SushiV3Burns = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index 6721fe7475..e18b52bfa8 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -46,7 +47,7 @@ export async function getSushiV3Collects({ return result.collects } - throw new Error('Failed to fetch collects') + throw new FetchError(chainId, 'Failed to fetch collects') } export type SushiV3Collects = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index bd805db145..075ee150e5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -43,7 +44,7 @@ export async function getSushiV3DayDatas({ return result.uniswapDayDatas } - throw new Error('Failed to fetch day datas') + throw new FetchError(chainId, 'Failed to fetch day datas') } export type SushiV3DayDatas = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index bd9f835296..a26e698634 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -5,6 +5,7 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -43,7 +44,7 @@ export async function getSushiV3Factory({ ) } - throw new Error('Failed to fetch factory') + throw new FetchError(chainId, 'Failed to fetch factory') } export type SushiV3Factory = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index e1fd33c8b5..da87bdde64 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' @@ -50,7 +51,7 @@ export async function getSushiV3Mints({ return result.mints.map((mint) => addChainId(chainId, mint)) } - throw new Error('Failed to fetch mints') + throw new FetchError(chainId, 'Failed to fetch mints') } export type SushiV3Mints = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index edd53e572a..e74a7200e0 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -5,6 +5,7 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -80,7 +81,10 @@ export async function getSushiV3Pool({ ) } - throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) + throw new FetchError( + chainId, + `Failed to fetch pool ${chainId}:${variables.id}`, + ) } export type SushiV3Pool = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index ed63520d62..fab76ba2e5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -5,6 +5,7 @@ import { import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -77,7 +78,7 @@ export async function getSushiV3PoolsByTokenPair({ ) } - throw new Error('Failed to fetch pools') + throw new FetchError(chainId, 'Failed to fetch pools') } export type SushiV3PoolsByTokenPair = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index afb30e1d1b..cae7ea391f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -48,7 +49,7 @@ export async function getSushiV3Swaps({ return result.swaps } - throw new Error('Failed to fetch swaps') + throw new FetchError(chainId, 'Failed to fetch swaps') } export type SushiV3Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index 1a7616990a..3671573d49 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -4,7 +4,7 @@ import { } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' - +import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -80,7 +80,7 @@ export async function getSushiV3Transactions({ return result.transactions } - throw new Error('Failed to fetch transactions') + throw new FetchError(chainId, 'Failed to fetch transactions') } export type SushiV3Transactions = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts new file mode 100644 index 0000000000..74ffa0294f --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts @@ -0,0 +1,26 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ burns: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Collects($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Collect_orderBy, $orderDirection: OrderDirection, $where: Collect_filter) {\n collects(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ collects: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "owner" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) {\n uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n date\n volumeETH\n volumeUSD\n volumeUSDUntracked\n feesUSD\n txCount\n tvlUSD\n }\n }\n": + TadaDocumentNode<{ uniswapDayDatas: { tvlUSD: string; txCount: string; feesUSD: string; volumeUSDUntracked: string; volumeUSD: string; volumeETH: string; date: number; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSDUntracked_not_in?: string[]; volumeUSDUntracked_in?: string[]; volumeUSDUntracked_lte?: string; volumeUSDUntracked_gte?: string; volumeUSDUntracked_lt?: string; volumeUSDUntracked_gt?: string; volumeUSDUntracked_not?: string; volumeUSDUntracked?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeETH_not_in?: string[]; volumeETH_in?: string[]; volumeETH_lte?: string; volumeETH_gte?: string; volumeETH_lt?: string; volumeETH_gt?: string; volumeETH_not?: string; volumeETH?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "volumeUSD" | "feesUSD" | "txCount" | "date" | "tvlUSD" | "volumeETH" | "volumeUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Factories {\n factories(first: 1) {\n id\n totalValueLockedUSD\n totalVolumeUSD\n poolCount\n }\n }\n": + TadaDocumentNode<{ factories: { poolCount: string; totalVolumeUSD: string; totalValueLockedUSD: string; id: string; }[]; }, {}, void>; + "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ mints: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Pool($id: ID!, $block: Block_height) {\n pool(id: $id, block: $block) {\n id\n token0 {\n id\n symbol\n name\n decimals\n }\n token1 {\n id\n symbol\n name\n decimals\n }\n feeTier\n liquidity\n volumeToken0\n volumeToken1\n volumeUSD\n feesUSD\n txCount\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n\n createdAtTimestamp\n createdAtBlockNumber\n\n poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) {\n id\n periodStartUnix\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n\n poolDayData(first: 730, orderBy: date, orderDirection: desc) {\n id\n date\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n }\n }\n": + TadaDocumentNode<{ pool: { poolDayData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; date: number; id: string; }[]; poolHourData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; periodStartUnix: number; id: string; }[]; createdAtBlockNumber: string; createdAtTimestamp: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; txCount: string; feesUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; liquidity: string; feeTier: string; token1: { decimals: string; name: string; symbol: string; id: string; }; token0: { decimals: string; name: string; symbol: string; id: string; }; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; + "\n query PoolsByTokenPair($where: Pool_filter!) {\n pools(first: 1000, where: $where) {\n id\n feeTier\n liquidity\n sqrtPrice\n feeGrowthGlobal0X128\n feeGrowthGlobal1X128\n token0Price\n token1Price\n tick\n observationIndex\n volumeToken0\n volumeToken1\n volumeUSD\n untrackedVolumeUSD\n feesUSD\n collectedFeesToken0\n collectedFeesToken1\n collectedFeesUSD\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n totalValueLockedUSDUntracked\n liquidityProviderCount\n }\n }\n": + TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; + "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "tick" | "recipient" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n timestamp\n blockNumber\n mints {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n }\n collects {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n }\n }\n }\n": + TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "gasPrice" | "mints" | "swaps" | "gasUsed" | "blockNumber" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + } +} diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index adf39c168a..4dc1a3e660 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -18,6 +18,24 @@ "tadaOutputLocation": "./src/subgraphs/blocks/blocks-env.d.ts", "tadaTurboLocation": "./src/subgraphs/blocks/blocks-cache.d.ts" }, + { + "name": "master-chef-v1", + "schema": "./src/subgraphs/master-chef-v1/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts" + }, + { + "name": "master-chef-v2", + "schema": "./src/subgraphs/master-chef-v2/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts" + }, + { + "name": "mini-chef", + "schema": "./src/subgraphs/mini-chef/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/mini-chef/mini-chef-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/mini-chef/mini-chef-cache.d.ts" + }, { "name": "sushi-bar", "schema": "./src/subgraphs/sushi-bar/schema.graphql", From 4e412213e8e344c2ce7d21f9d8999a375419dbbe Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sat, 25 May 2024 12:22:37 +0000 Subject: [PATCH 028/119] feat(pkgs/graph-client): add bonds --- packages/graph-client-new/package.json | 1 + .../scripts/update-schemas.ts | 2 + .../src/lib/modifiers/add-chain-id.ts | 8 +- .../src/subgraphs/bonds/bonds-cache.d.ts | 9 + .../src/subgraphs/bonds/bonds-env.d.ts | 93 + .../src/subgraphs/bonds/graphql.ts | 8 + .../src/subgraphs/bonds/index.ts | 2 + .../src/subgraphs/bonds/queries/markets.ts | 86 + .../src/subgraphs/bonds/queries/positions.ts | 68 + .../src/subgraphs/bonds/schema.graphql | 3808 +++++++++++++++++ packages/graph-client-new/tsconfig.json | 6 + pnpm-lock.yaml | 3 + 12 files changed, 4090 insertions(+), 4 deletions(-) create mode 100644 packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts create mode 100644 packages/graph-client-new/src/subgraphs/bonds/schema.graphql diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index dbe2b0b30b..1049191105 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -61,6 +61,7 @@ }, "dependencies": { "@sushiswap/graph-config": "workspace:*", + "@sushiswap/bonds-sdk": "workspace:*", "gql.tada": "^1.7.5", "graphql-request": "^7.0.1", "sushi": "workspace:*" diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index 81245002cb..32136e9425 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -1,3 +1,4 @@ +import { BONDS_SUBGRAPH_URL } from '@sushiswap/bonds-sdk' import { BLOCKS_SUBGRAPH_URL, MASTERCHEF_V1_SUBGRAPH_URL, @@ -14,6 +15,7 @@ import fetchSchema from 'graphql-fetch-schema' const schemas = { blocks: BLOCKS_SUBGRAPH_URL[1], + bonds: BONDS_SUBGRAPH_URL[1], 'master-chef-v1': MASTERCHEF_V1_SUBGRAPH_URL, 'master-chef-v2': MASTERCHEF_V2_SUBGRAPH_URL, 'mini-chef': MINICHEF_SUBGRAPH_URL[137], diff --git a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts index d6e4c146a6..8680a057f9 100644 --- a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts +++ b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts @@ -4,10 +4,10 @@ import type { ChainIdVariable } from '../types/chainId' type ReturnType> = T & ChainIdVariable -export function addChainId>( - chainId: C, - object: T, -): ReturnType { +export function addChainId< + C extends ChainId, + T extends Record & { chainId?: never }, +>(chainId: C, object: T): ReturnType { Object.defineProperty(object, 'chainId', { value: chainId, }) diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts new file mode 100644 index 0000000000..e664361ffe --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts @@ -0,0 +1,9 @@ +/* eslint-disable */ +/* prettier-ignore */ +import type { TadaDocumentNode, $tada } from 'gql.tada'; + +declare module 'gql.tada' { + interface setupCache { + + } +} diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts new file mode 100644 index 0000000000..8b53ce3781 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts @@ -0,0 +1,93 @@ +/* eslint-disable */ +/* prettier-ignore */ + +/** An IntrospectionQuery representation of your schema. + * + * @remarks + * This is an introspection of your schema saved as a file by GraphQLSP. + * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. + * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to + * instead save to a .ts instead of a .d.ts file. + */ +export type introspection = { + name: 'bonds'; + query: 'Query'; + mutation: never; + subscription: 'Subscription'; + types: { + 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; + 'BalancerWeightedPool': { kind: 'OBJECT'; name: 'BalancerWeightedPool'; fields: { 'constituentTokens': { name: 'constituentTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolId': { name: 'poolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vaultAddress': { name: 'vaultAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'BalancerWeightedPool_filter': { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'constituentTokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'BalancerWeightedPool_orderBy': { name: 'BalancerWeightedPool_orderBy'; enumValues: 'id' | 'vaultAddress' | 'poolId' | 'constituentTokens'; }; + 'BigDecimal': unknown; + 'BigInt': unknown; + 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; + 'BondPurchase': { kind: 'OBJECT'; name: 'BondPurchase'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'payout': { name: 'payout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'postPurchasePrice': { name: 'postPurchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'purchasePrice': { name: 'purchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'referrer': { name: 'referrer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'BondPurchase_filter': { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'BondPurchase_orderBy': { name: 'BondPurchase_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'owner' | 'amount' | 'payout' | 'recipient' | 'referrer' | 'timestamp' | 'teller' | 'auctioneer' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'purchasePrice' | 'postPurchasePrice' | 'ownerTokenTbv' | 'ownerTokenTbv__id' | 'ownerTokenTbv__owner' | 'ownerTokenTbv__token' | 'ownerTokenTbv__network' | 'ownerTokenTbv__chainId' | 'ownerTokenTbv__tbv' | 'payoutTokenTbv' | 'payoutTokenTbv__id' | 'payoutTokenTbv__network' | 'payoutTokenTbv__chainId' | 'payoutTokenTbv__tbv'; }; + 'BondToken': { kind: 'OBJECT'; name: 'BondToken'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'expiry': { name: 'expiry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'underlying': { name: 'underlying'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + 'BondToken_filter': { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'expiry'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'expiry_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'BondToken_orderBy': { name: 'BondToken_orderBy'; enumValues: 'id' | 'decimals' | 'symbol' | 'underlying' | 'underlying__id' | 'underlying__network' | 'underlying__chainId' | 'underlying__address' | 'underlying__decimals' | 'underlying__symbol' | 'underlying__name' | 'underlying__typeName' | 'underlying__usedAsPayout' | 'underlying__usedAsQuote' | 'underlying__totalPayoutAmount' | 'underlying__purchaseCount' | 'expiry' | 'teller' | 'network' | 'chainId' | 'type'; }; + 'Boolean': unknown; + 'Bytes': unknown; + 'ID': unknown; + 'Int': unknown; + 'Int8': unknown; + 'Market': { kind: 'OBJECT'; name: 'Market'; fields: { 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'averageBondPrice': { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'bondsIssued': { name: 'bondsIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'callbackAddress': { name: 'callbackAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'capacity': { name: 'capacity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'capacityInQuote': { name: 'capacityInQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'conclusion': { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'creationBlockTimestamp': { name: 'creationBlockTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hasClosed': { name: 'hasClosed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isInstantSwap': { name: 'isInstantSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'marketId': { name: 'marketId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'minPrice': { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'price': { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'scale': { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'start': { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalBondedAmount': { name: 'totalBondedAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tunes': { name: 'tunes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vesting': { name: 'vesting'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'vestingType': { name: 'vestingType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'MarketOwnerCount': { kind: 'OBJECT'; name: 'MarketOwnerCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'MarketOwnerCount_filter': { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'MarketOwnerCount_orderBy': { name: 'MarketOwnerCount_orderBy'; enumValues: 'id' | 'count'; }; + 'Market_filter': { kind: 'INPUT_OBJECT'; name: 'Market_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'marketId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'marketId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'vesting'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vesting_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isInstantSwap_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'capacity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunes_'; type: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondsIssued_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Market_orderBy': { name: 'Market_orderBy'; enumValues: 'id' | 'name' | 'type' | 'network' | 'chainId' | 'auctioneer' | 'teller' | 'marketId' | 'owner' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'vesting' | 'start' | 'conclusion' | 'vestingType' | 'isInstantSwap' | 'hasClosed' | 'totalBondedAmount' | 'totalPayoutAmount' | 'creationBlockTimestamp' | 'callbackAddress' | 'capacity' | 'capacityInQuote' | 'minPrice' | 'price' | 'scale' | 'averageBondPrice' | 'tunes' | 'bondPurchases' | 'bondsIssued'; }; + 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; + 'OwnerBalance': { kind: 'OBJECT'; name: 'OwnerBalance'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenId': { name: 'tokenId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'OwnerBalance_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_'; type: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'OwnerBalance_orderBy': { name: 'OwnerBalance_orderBy'; enumValues: 'id' | 'tokenId' | 'owner' | 'balance' | 'network' | 'chainId' | 'bondToken' | 'bondToken__id' | 'bondToken__decimals' | 'bondToken__symbol' | 'bondToken__expiry' | 'bondToken__teller' | 'bondToken__network' | 'bondToken__chainId' | 'bondToken__type'; }; + 'OwnerTokenTbv': { kind: 'OBJECT'; name: 'OwnerTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'OwnerTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'OwnerTokenTbv_orderBy': { name: 'OwnerTokenTbv_orderBy'; enumValues: 'id' | 'owner' | 'token' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; + 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__network' | 'token0__chainId' | 'token0__address' | 'token0__decimals' | 'token0__symbol' | 'token0__name' | 'token0__typeName' | 'token0__usedAsPayout' | 'token0__usedAsQuote' | 'token0__totalPayoutAmount' | 'token0__purchaseCount' | 'token1' | 'token1__id' | 'token1__network' | 'token1__chainId' | 'token1__address' | 'token1__decimals' | 'token1__symbol' | 'token1__name' | 'token1__typeName' | 'token1__usedAsPayout' | 'token1__usedAsQuote' | 'token1__totalPayoutAmount' | 'token1__purchaseCount'; }; + 'PayoutToken': { kind: 'OBJECT'; name: 'PayoutToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'PayoutTokenTbv': { kind: 'OBJECT'; name: 'PayoutTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PayoutTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PayoutTokenTbv_orderBy': { name: 'PayoutTokenTbv_orderBy'; enumValues: 'id' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; + 'PayoutToken_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PayoutToken_orderBy': { name: 'PayoutToken_orderBy'; enumValues: 'id'; }; + 'PurchaseCount': { kind: 'OBJECT'; name: 'PurchaseCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'PurchaseCount_filter': { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PurchaseCount_orderBy': { name: 'PurchaseCount_orderBy'; enumValues: 'id' | 'count'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; + 'QuoteToken': { kind: 'OBJECT'; name: 'QuoteToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'QuoteToken_filter': { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'QuoteToken_orderBy': { name: 'QuoteToken_orderBy'; enumValues: 'id'; }; + 'String': unknown; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; + 'Timestamp': unknown; + 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'lpPair': { name: 'lpPair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'markets': { name: 'markets'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'typeName': { name: 'typeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'usedAsPayout': { name: 'usedAsPayout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'usedAsQuote': { name: 'usedAsQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_'; type: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsPayout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbvs_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'uniqueBonders_'; type: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; defaultValue: null }, { name: 'markets_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'network' | 'chainId' | 'address' | 'decimals' | 'symbol' | 'name' | 'typeName' | 'lpPair' | 'lpPair__id' | 'balancerWeightedPool' | 'balancerWeightedPool__id' | 'balancerWeightedPool__vaultAddress' | 'balancerWeightedPool__poolId' | 'usedAsPayout' | 'usedAsQuote' | 'totalPayoutAmount' | 'purchaseCount' | 'payoutTokenTbvs' | 'uniqueBonders' | 'uniqueBonders__id' | 'uniqueBonders__count' | 'markets'; }; + 'Tune': { kind: 'OBJECT'; name: 'Tune'; fields: { 'deltaTime': { name: 'deltaTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'newControlVariable': { name: 'newControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'oldControlVariable': { name: 'oldControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'Tune_filter': { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'oldControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Tune_orderBy': { name: 'Tune_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'oldControlVariable' | 'newControlVariable' | 'deltaTime' | 'timestamp'; }; + 'UniqueBonder': { kind: 'OBJECT'; name: 'UniqueBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'UniqueBonderCount': { kind: 'OBJECT'; name: 'UniqueBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'UniqueBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniqueBonderCount_orderBy': { name: 'UniqueBonderCount_orderBy'; enumValues: 'id' | 'count'; }; + 'UniqueBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniqueBonder_orderBy': { name: 'UniqueBonder_orderBy'; enumValues: 'id'; }; + 'UniqueTokenBonder': { kind: 'OBJECT'; name: 'UniqueTokenBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; + 'UniqueTokenBonderCount': { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; + 'UniqueTokenBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniqueTokenBonderCount_orderBy': { name: 'UniqueTokenBonderCount_orderBy'; enumValues: 'id' | 'token' | 'token__id' | 'token__network' | 'token__chainId' | 'token__address' | 'token__decimals' | 'token__symbol' | 'token__name' | 'token__typeName' | 'token__usedAsPayout' | 'token__usedAsQuote' | 'token__totalPayoutAmount' | 'token__purchaseCount' | 'count'; }; + 'UniqueTokenBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniqueTokenBonder_orderBy': { name: 'UniqueTokenBonder_orderBy'; enumValues: 'id'; }; + '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; + '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; + '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; + }; +}; + +import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/bonds/graphql.ts b/packages/graph-client-new/src/subgraphs/bonds/graphql.ts new file mode 100644 index 0000000000..bd75c7dd0e --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './bonds-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/bonds/index.ts b/packages/graph-client-new/src/subgraphs/bonds/index.ts new file mode 100644 index 0000000000..cdf4b947d4 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/index.ts @@ -0,0 +1,2 @@ +export * from './queries/markets' +export * from './queries/positions' diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts new file mode 100644 index 0000000000..47d0789d0d --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts @@ -0,0 +1,86 @@ +import type { VariablesOf } from 'gql.tada' + +import { BONDS_SUBGRAPH_URL, type BondChainId } from '@sushiswap/bonds-sdk' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { graphql } from '../graphql' + +export const BondMarketsQuery = graphql( + ` + query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) { + markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + chainId + type + auctioneer + teller + marketId + owner + capacity + capacityInQuote + minPrice + scale + start + conclusion + payoutToken { + id: address + symbol + decimals + name + } + quoteToken { + id: address + symbol + decimals + name + } + vesting + vestingType + isInstantSwap + hasClosed + totalBondedAmount + totalPayoutAmount + averageBondPrice + bondsIssued + } + } +`, +) + +export type GetBondMarkets = VariablesOf & + ChainIdVariable + +export async function getBondMarkets({ + chainId, + ...variables +}: GetBondMarkets) { + const url = `https://${BONDS_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: BondMarketsQuery, + variables, + }) + + return result.markets.map((market) => { + const quoteToken = convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, market.quoteToken)), + ) + + const payoutToken = convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, market.payoutToken)), + ) + + return { + ...market, + quoteToken, + payoutToken, + } + }) +} + +export type BondMarkets = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts new file mode 100644 index 0000000000..bc393481b0 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts @@ -0,0 +1,68 @@ +import type { VariablesOf } from 'gql.tada' + +import { BONDS_SUBGRAPH_URL, type BondChainId } from '@sushiswap/bonds-sdk' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { graphql } from '../graphql' + +export const BondUserPositionsQuery = graphql( + ` + query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) { + positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + owner + balance + bondToken { + id + expiry + type + teller + underlying { + id: address + symbol + decimals + name + } + } + } + } +`, +) + +export type GetBondUserPositions = VariablesOf & + ChainIdVariable + +export async function getBondUserPositions({ + chainId, + ...variables +}: GetBondUserPositions) { + const url = `https://${BONDS_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: BondUserPositionsQuery, + variables, + }) + + return result.positions.map((position) => { + const bondTokenUnderlying = position.bondToken + ? convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, position.bondToken.underlying)), + ) + : null + + return addChainId(chainId, { + ...position, + bondToken: { + ...position.bondToken, + underlying: bondTokenUnderlying, + }, + }) + }) +} + +export type BondUserPositions = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/bonds/schema.graphql b/packages/graph-client-new/src/subgraphs/bonds/schema.graphql new file mode 100644 index 0000000000..03488419a4 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bonds/schema.graphql @@ -0,0 +1,3808 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +"The BalancerWeightedPool entity contains the details of a BalancerWeightedPool Token.\n" +type BalancerWeightedPool { + "Unique ID for the BalancerWeightedPool entity, in the format:\n[chain Id]_[pool address]\n" + id: String! + + "The pool's vault address.\n" + vaultAddress: String! + + "The pool's ID, for use in calls to vault functions.\n" + poolId: String! + + "A list of the Tokens which make up the vault.\n" + constituentTokens(skip: Int = 0, first: Int = 100, orderBy: Token_orderBy, orderDirection: OrderDirection, where: Token_filter): [Token!]! +} + +input BalancerWeightedPool_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + vaultAddress: String + vaultAddress_not: String + vaultAddress_gt: String + vaultAddress_lt: String + vaultAddress_gte: String + vaultAddress_lte: String + vaultAddress_in: [String!] + vaultAddress_not_in: [String!] + vaultAddress_contains: String + vaultAddress_contains_nocase: String + vaultAddress_not_contains: String + vaultAddress_not_contains_nocase: String + vaultAddress_starts_with: String + vaultAddress_starts_with_nocase: String + vaultAddress_not_starts_with: String + vaultAddress_not_starts_with_nocase: String + vaultAddress_ends_with: String + vaultAddress_ends_with_nocase: String + vaultAddress_not_ends_with: String + vaultAddress_not_ends_with_nocase: String + poolId: String + poolId_not: String + poolId_gt: String + poolId_lt: String + poolId_gte: String + poolId_lte: String + poolId_in: [String!] + poolId_not_in: [String!] + poolId_contains: String + poolId_contains_nocase: String + poolId_not_contains: String + poolId_not_contains_nocase: String + poolId_starts_with: String + poolId_starts_with_nocase: String + poolId_not_starts_with: String + poolId_not_starts_with_nocase: String + poolId_ends_with: String + poolId_ends_with_nocase: String + poolId_not_ends_with: String + poolId_not_ends_with_nocase: String + constituentTokens: [String!] + constituentTokens_not: [String!] + constituentTokens_contains: [String!] + constituentTokens_contains_nocase: [String!] + constituentTokens_not_contains: [String!] + constituentTokens_not_contains_nocase: [String!] + constituentTokens_: Token_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BalancerWeightedPool_filter] + or: [BalancerWeightedPool_filter] +} + +enum BalancerWeightedPool_orderBy { + id + vaultAddress + poolId + constituentTokens +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +"The BondPurchase entity tracks individual bond purchases.\n" +type BondPurchase { + "The transaction hash is used as the BondPurchase ID.\n" + id: String! + + "The ID of the Market from which the bond was purchased.\n" + market: Market! + + "The owner address of the Market from which the bond was purchased.\n" + owner: String! + + "The amount of quote tokens paid.\n" + amount: BigDecimal! + + "The amount of payout tokens purchased.\n" + payout: BigDecimal! + + "The purchaser's address.\n" + recipient: String! + + "The frontend referrer address.\n" + referrer: String! + + "The time of the purchase.\n" + timestamp: BigInt! + + "The address of the relevant Teller contract.\n" + teller: String! + + "The address of the relevant Auctioneer contract.\n" + auctioneer: String! + + "A reference to the payout Token record.\n" + payoutToken: Token! + + "A reference to the quote Token record.\n" + quoteToken: Token! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The price at which the bond was purchased.\n**NOTE** this is quoteToken amount / payoutToken amount, it is NOT a USD price.\n" + purchasePrice: BigDecimal! + + "The new bond price, updated after the purchase.\n**NOTE** this is the Auctioneer contract's marketPrice adjusted for marketScale, it is NOT a USD price.\n" + postPurchasePrice: BigDecimal! + + "A reference to the OwnerTokenTbv record for this chain/owner/token combination.\n" + ownerTokenTbv: OwnerTokenTbv + + "A reference to the PayoutTokenTbv record for this chain/owner/token combination.\n" + payoutTokenTbv: PayoutTokenTbv +} + +input BondPurchase_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + market: String + market_not: String + market_gt: String + market_lt: String + market_gte: String + market_lte: String + market_in: [String!] + market_not_in: [String!] + market_contains: String + market_contains_nocase: String + market_not_contains: String + market_not_contains_nocase: String + market_starts_with: String + market_starts_with_nocase: String + market_not_starts_with: String + market_not_starts_with_nocase: String + market_ends_with: String + market_ends_with_nocase: String + market_not_ends_with: String + market_not_ends_with_nocase: String + market_: Market_filter + owner: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + amount: BigDecimal + amount_not: BigDecimal + amount_gt: BigDecimal + amount_lt: BigDecimal + amount_gte: BigDecimal + amount_lte: BigDecimal + amount_in: [BigDecimal!] + amount_not_in: [BigDecimal!] + payout: BigDecimal + payout_not: BigDecimal + payout_gt: BigDecimal + payout_lt: BigDecimal + payout_gte: BigDecimal + payout_lte: BigDecimal + payout_in: [BigDecimal!] + payout_not_in: [BigDecimal!] + recipient: String + recipient_not: String + recipient_gt: String + recipient_lt: String + recipient_gte: String + recipient_lte: String + recipient_in: [String!] + recipient_not_in: [String!] + recipient_contains: String + recipient_contains_nocase: String + recipient_not_contains: String + recipient_not_contains_nocase: String + recipient_starts_with: String + recipient_starts_with_nocase: String + recipient_not_starts_with: String + recipient_not_starts_with_nocase: String + recipient_ends_with: String + recipient_ends_with_nocase: String + recipient_not_ends_with: String + recipient_not_ends_with_nocase: String + referrer: String + referrer_not: String + referrer_gt: String + referrer_lt: String + referrer_gte: String + referrer_lte: String + referrer_in: [String!] + referrer_not_in: [String!] + referrer_contains: String + referrer_contains_nocase: String + referrer_not_contains: String + referrer_not_contains_nocase: String + referrer_starts_with: String + referrer_starts_with_nocase: String + referrer_not_starts_with: String + referrer_not_starts_with_nocase: String + referrer_ends_with: String + referrer_ends_with_nocase: String + referrer_not_ends_with: String + referrer_not_ends_with_nocase: String + timestamp: BigInt + timestamp_not: BigInt + timestamp_gt: BigInt + timestamp_lt: BigInt + timestamp_gte: BigInt + timestamp_lte: BigInt + timestamp_in: [BigInt!] + timestamp_not_in: [BigInt!] + teller: String + teller_not: String + teller_gt: String + teller_lt: String + teller_gte: String + teller_lte: String + teller_in: [String!] + teller_not_in: [String!] + teller_contains: String + teller_contains_nocase: String + teller_not_contains: String + teller_not_contains_nocase: String + teller_starts_with: String + teller_starts_with_nocase: String + teller_not_starts_with: String + teller_not_starts_with_nocase: String + teller_ends_with: String + teller_ends_with_nocase: String + teller_not_ends_with: String + teller_not_ends_with_nocase: String + auctioneer: String + auctioneer_not: String + auctioneer_gt: String + auctioneer_lt: String + auctioneer_gte: String + auctioneer_lte: String + auctioneer_in: [String!] + auctioneer_not_in: [String!] + auctioneer_contains: String + auctioneer_contains_nocase: String + auctioneer_not_contains: String + auctioneer_not_contains_nocase: String + auctioneer_starts_with: String + auctioneer_starts_with_nocase: String + auctioneer_not_starts_with: String + auctioneer_not_starts_with_nocase: String + auctioneer_ends_with: String + auctioneer_ends_with_nocase: String + auctioneer_not_ends_with: String + auctioneer_not_ends_with_nocase: String + payoutToken: String + payoutToken_not: String + payoutToken_gt: String + payoutToken_lt: String + payoutToken_gte: String + payoutToken_lte: String + payoutToken_in: [String!] + payoutToken_not_in: [String!] + payoutToken_contains: String + payoutToken_contains_nocase: String + payoutToken_not_contains: String + payoutToken_not_contains_nocase: String + payoutToken_starts_with: String + payoutToken_starts_with_nocase: String + payoutToken_not_starts_with: String + payoutToken_not_starts_with_nocase: String + payoutToken_ends_with: String + payoutToken_ends_with_nocase: String + payoutToken_not_ends_with: String + payoutToken_not_ends_with_nocase: String + payoutToken_: Token_filter + quoteToken: String + quoteToken_not: String + quoteToken_gt: String + quoteToken_lt: String + quoteToken_gte: String + quoteToken_lte: String + quoteToken_in: [String!] + quoteToken_not_in: [String!] + quoteToken_contains: String + quoteToken_contains_nocase: String + quoteToken_not_contains: String + quoteToken_not_contains_nocase: String + quoteToken_starts_with: String + quoteToken_starts_with_nocase: String + quoteToken_not_starts_with: String + quoteToken_not_starts_with_nocase: String + quoteToken_ends_with: String + quoteToken_ends_with_nocase: String + quoteToken_not_ends_with: String + quoteToken_not_ends_with_nocase: String + quoteToken_: Token_filter + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + purchasePrice: BigDecimal + purchasePrice_not: BigDecimal + purchasePrice_gt: BigDecimal + purchasePrice_lt: BigDecimal + purchasePrice_gte: BigDecimal + purchasePrice_lte: BigDecimal + purchasePrice_in: [BigDecimal!] + purchasePrice_not_in: [BigDecimal!] + postPurchasePrice: BigDecimal + postPurchasePrice_not: BigDecimal + postPurchasePrice_gt: BigDecimal + postPurchasePrice_lt: BigDecimal + postPurchasePrice_gte: BigDecimal + postPurchasePrice_lte: BigDecimal + postPurchasePrice_in: [BigDecimal!] + postPurchasePrice_not_in: [BigDecimal!] + ownerTokenTbv: String + ownerTokenTbv_not: String + ownerTokenTbv_gt: String + ownerTokenTbv_lt: String + ownerTokenTbv_gte: String + ownerTokenTbv_lte: String + ownerTokenTbv_in: [String!] + ownerTokenTbv_not_in: [String!] + ownerTokenTbv_contains: String + ownerTokenTbv_contains_nocase: String + ownerTokenTbv_not_contains: String + ownerTokenTbv_not_contains_nocase: String + ownerTokenTbv_starts_with: String + ownerTokenTbv_starts_with_nocase: String + ownerTokenTbv_not_starts_with: String + ownerTokenTbv_not_starts_with_nocase: String + ownerTokenTbv_ends_with: String + ownerTokenTbv_ends_with_nocase: String + ownerTokenTbv_not_ends_with: String + ownerTokenTbv_not_ends_with_nocase: String + ownerTokenTbv_: OwnerTokenTbv_filter + payoutTokenTbv: String + payoutTokenTbv_not: String + payoutTokenTbv_gt: String + payoutTokenTbv_lt: String + payoutTokenTbv_gte: String + payoutTokenTbv_lte: String + payoutTokenTbv_in: [String!] + payoutTokenTbv_not_in: [String!] + payoutTokenTbv_contains: String + payoutTokenTbv_contains_nocase: String + payoutTokenTbv_not_contains: String + payoutTokenTbv_not_contains_nocase: String + payoutTokenTbv_starts_with: String + payoutTokenTbv_starts_with_nocase: String + payoutTokenTbv_not_starts_with: String + payoutTokenTbv_not_starts_with_nocase: String + payoutTokenTbv_ends_with: String + payoutTokenTbv_ends_with_nocase: String + payoutTokenTbv_not_ends_with: String + payoutTokenTbv_not_ends_with_nocase: String + payoutTokenTbv_: PayoutTokenTbv_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BondPurchase_filter] + or: [BondPurchase_filter] +} + +enum BondPurchase_orderBy { + id + market + market__id + market__name + market__type + market__network + market__chainId + market__auctioneer + market__teller + market__marketId + market__owner + market__vesting + market__start + market__conclusion + market__vestingType + market__isInstantSwap + market__hasClosed + market__totalBondedAmount + market__totalPayoutAmount + market__creationBlockTimestamp + market__callbackAddress + market__capacity + market__capacityInQuote + market__minPrice + market__price + market__scale + market__averageBondPrice + market__bondsIssued + owner + amount + payout + recipient + referrer + timestamp + teller + auctioneer + payoutToken + payoutToken__id + payoutToken__network + payoutToken__chainId + payoutToken__address + payoutToken__decimals + payoutToken__symbol + payoutToken__name + payoutToken__typeName + payoutToken__usedAsPayout + payoutToken__usedAsQuote + payoutToken__totalPayoutAmount + payoutToken__purchaseCount + quoteToken + quoteToken__id + quoteToken__network + quoteToken__chainId + quoteToken__address + quoteToken__decimals + quoteToken__symbol + quoteToken__name + quoteToken__typeName + quoteToken__usedAsPayout + quoteToken__usedAsQuote + quoteToken__totalPayoutAmount + quoteToken__purchaseCount + network + chainId + purchasePrice + postPurchasePrice + ownerTokenTbv + ownerTokenTbv__id + ownerTokenTbv__owner + ownerTokenTbv__token + ownerTokenTbv__network + ownerTokenTbv__chainId + ownerTokenTbv__tbv + payoutTokenTbv + payoutTokenTbv__id + payoutTokenTbv__network + payoutTokenTbv__chainId + payoutTokenTbv__tbv +} + +"A BondToken record is created to track vesting tokens, both ERC-20 and ERC-1155, created by our contracts.\n" +type BondToken { + "Unique ID for the BondToken entity. In the case of an ERC-20 token, this will be the token's address. In the case of an ERC-1155 token, it will be the token's ID.\n" + id: String! + + "The number of decimals if an ERC-20, null if an ERC-1155.\n" + decimals: BigInt + + "The token symbol if an ERC-20, null if an ERC-1155.\n" + symbol: String + + "A reference to the Token which will be paid out upon vesting.\n" + underlying: Token! + + "Timestamp at which vesting completes.\n" + expiry: BigInt! + + "The address of the relevant Teller contract.\n" + teller: String! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The type of bond, either \"fixed-term\" or \"fixed-expiration\".\n" + type: String! +} + +input BondToken_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_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!] + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + underlying: String + underlying_not: String + underlying_gt: String + underlying_lt: String + underlying_gte: String + underlying_lte: String + underlying_in: [String!] + underlying_not_in: [String!] + underlying_contains: String + underlying_contains_nocase: String + underlying_not_contains: String + underlying_not_contains_nocase: String + underlying_starts_with: String + underlying_starts_with_nocase: String + underlying_not_starts_with: String + underlying_not_starts_with_nocase: String + underlying_ends_with: String + underlying_ends_with_nocase: String + underlying_not_ends_with: String + underlying_not_ends_with_nocase: String + underlying_: Token_filter + expiry: BigInt + expiry_not: BigInt + expiry_gt: BigInt + expiry_lt: BigInt + expiry_gte: BigInt + expiry_lte: BigInt + expiry_in: [BigInt!] + expiry_not_in: [BigInt!] + teller: String + teller_not: String + teller_gt: String + teller_lt: String + teller_gte: String + teller_lte: String + teller_in: [String!] + teller_not_in: [String!] + teller_contains: String + teller_contains_nocase: String + teller_not_contains: String + teller_not_contains_nocase: String + teller_starts_with: String + teller_starts_with_nocase: String + teller_not_starts_with: String + teller_not_starts_with_nocase: String + teller_ends_with: String + teller_ends_with_nocase: String + teller_not_ends_with: String + teller_not_ends_with_nocase: String + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + type: String + type_not: String + type_gt: String + type_lt: String + type_gte: String + type_lte: String + type_in: [String!] + type_not_in: [String!] + type_contains: String + type_contains_nocase: String + type_not_contains: String + type_not_contains_nocase: String + type_starts_with: String + type_starts_with_nocase: String + type_not_starts_with: String + type_not_starts_with_nocase: String + type_ends_with: String + type_ends_with_nocase: String + type_not_ends_with: String + type_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BondToken_filter] + or: [BondToken_filter] +} + +enum BondToken_orderBy { + id + decimals + symbol + underlying + underlying__id + underlying__network + underlying__chainId + underlying__address + underlying__decimals + underlying__symbol + underlying__name + underlying__typeName + underlying__usedAsPayout + underlying__usedAsQuote + underlying__totalPayoutAmount + underlying__purchaseCount + expiry + teller + network + chainId + type +} + +scalar Bytes + +"8 bytes signed integer\n" +scalar Int8 + +"The Market entity tracks all bond markets which have been created, whether currently open or closed.\n" +type Market { + "Unique ID for the Market entity, in the format:\n[chainId]_[auctioneer contract name]_[market id]\n**NOTE** At the time of writing, contract name will be either 'BondFixedTermCDA' or BondFixedExpCDA. More will be added in the future as different auctioneer types become available.\n" + id: String! + + "The Auctioneer contract name.\n" + name: String! + + "The type of Market.\n" + type: String! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The address of the Market's Auctioneer contract.\n" + auctioneer: String! + + "The address of the Market's Teller contract.\n" + teller: String! + + "The Market's ID for use with the Auctioneer.\n" + marketId: BigInt! + + "The address of the Market owner.\n" + owner: String! + + "A reference to the payout Token record.\n" + payoutToken: Token! + + "A reference to the quote Token record.\n" + quoteToken: Token! + + "The Market's vesting time. In the case of fixed expiry markets, this will be a timestamp. In the case of fixed term markets, it will be the vesting duration in seconds.\n" + vesting: BigInt! + + "The Market's start time (for supported Market types)\n" + start: BigInt + + "The Market's conclusion time\n" + conclusion: BigInt + + "The type of vesting for the market. At the time of writing, this will be either \"fixed-term\" or \"fixed-expiration\". More options may be added in the future if new vesting types become available.\n" + vestingType: String! + + "Whether or not the Market is an instant swap market.\n" + isInstantSwap: Boolean! + + "Whether or not the Market has been closed.\n" + hasClosed: Boolean! + + "The total amount of quote tokens bonded for this market.\n**NOTE** This is the number of quote tokens, NOT their USD value.\n" + totalBondedAmount: BigDecimal! + + "The total amount of payout tokens purchased through this market.\n**NOTE** This is the number of payout tokens, NOT their USD value.\n" + totalPayoutAmount: BigDecimal! + + "The timestamp of the block in which the Market was created.\n" + creationBlockTimestamp: BigInt! + + "The address of the Market callback contract, if specified. 0x0000000000000000000000000000000000000000 if there is no callback contract.\n" + callbackAddress: String! + + "The current capacity of the Market. This can be in either the quote or payout Token, according to the value of the capacityInQuote field.\n" + capacity: BigInt! + + "Whether the Market capacity is measured in the quote (true) or payout (false) Token.\n" + capacityInQuote: Boolean! + + "The minimum price at which a bond can be purchased.\n**NOTE** This is a minimum return value for the Auctioneer marketPrice function, NOT a USD price.\n" + minPrice: BigInt + + "The price at which a bond can be purchased.\n**NOTE** This is a minimum return value for the Auctioneer marketPrice function, NOT a USD price.\n" + price: BigInt + + "Scale value to use when converting between quote token and payout token amounts with marketPrice.\n" + scale: BigInt + + "The average bond price across all purchases.\n" + averageBondPrice: BigDecimal + + "A list of all tuning events that have been emitted for this Market.\n" + tunes(skip: Int = 0, first: Int = 100, orderBy: Tune_orderBy, orderDirection: OrderDirection, where: Tune_filter): [Tune!] + + "A list of BondPurchase records for this Market.\n" + bondPurchases(skip: Int = 0, first: Int = 100, orderBy: BondPurchase_orderBy, orderDirection: OrderDirection, where: BondPurchase_filter): [BondPurchase!] + + "A count of BondPurchases for this market\n" + bondsIssued: BigInt! +} + +"Workaround due to no simple entity count being available.\n" +type MarketOwnerCount { + "There should be one MarketOwnerCount entry per market owner, with owner address as id.\n" + id: String! + + "The total number of markets (open and closed) owned by this address on this chain.\n" + count: BigInt! +} + +input MarketOwnerCount_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + count: BigInt + count_not: BigInt + count_gt: BigInt + count_lt: BigInt + count_gte: BigInt + count_lte: BigInt + count_in: [BigInt!] + count_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MarketOwnerCount_filter] + or: [MarketOwnerCount_filter] +} + +enum MarketOwnerCount_orderBy { + id + count +} + +input Market_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_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_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + type: String + type_not: String + type_gt: String + type_lt: String + type_gte: String + type_lte: String + type_in: [String!] + type_not_in: [String!] + type_contains: String + type_contains_nocase: String + type_not_contains: String + type_not_contains_nocase: String + type_starts_with: String + type_starts_with_nocase: String + type_not_starts_with: String + type_not_starts_with_nocase: String + type_ends_with: String + type_ends_with_nocase: String + type_not_ends_with: String + type_not_ends_with_nocase: String + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + auctioneer: String + auctioneer_not: String + auctioneer_gt: String + auctioneer_lt: String + auctioneer_gte: String + auctioneer_lte: String + auctioneer_in: [String!] + auctioneer_not_in: [String!] + auctioneer_contains: String + auctioneer_contains_nocase: String + auctioneer_not_contains: String + auctioneer_not_contains_nocase: String + auctioneer_starts_with: String + auctioneer_starts_with_nocase: String + auctioneer_not_starts_with: String + auctioneer_not_starts_with_nocase: String + auctioneer_ends_with: String + auctioneer_ends_with_nocase: String + auctioneer_not_ends_with: String + auctioneer_not_ends_with_nocase: String + teller: String + teller_not: String + teller_gt: String + teller_lt: String + teller_gte: String + teller_lte: String + teller_in: [String!] + teller_not_in: [String!] + teller_contains: String + teller_contains_nocase: String + teller_not_contains: String + teller_not_contains_nocase: String + teller_starts_with: String + teller_starts_with_nocase: String + teller_not_starts_with: String + teller_not_starts_with_nocase: String + teller_ends_with: String + teller_ends_with_nocase: String + teller_not_ends_with: String + teller_not_ends_with_nocase: String + marketId: BigInt + marketId_not: BigInt + marketId_gt: BigInt + marketId_lt: BigInt + marketId_gte: BigInt + marketId_lte: BigInt + marketId_in: [BigInt!] + marketId_not_in: [BigInt!] + owner: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + payoutToken: String + payoutToken_not: String + payoutToken_gt: String + payoutToken_lt: String + payoutToken_gte: String + payoutToken_lte: String + payoutToken_in: [String!] + payoutToken_not_in: [String!] + payoutToken_contains: String + payoutToken_contains_nocase: String + payoutToken_not_contains: String + payoutToken_not_contains_nocase: String + payoutToken_starts_with: String + payoutToken_starts_with_nocase: String + payoutToken_not_starts_with: String + payoutToken_not_starts_with_nocase: String + payoutToken_ends_with: String + payoutToken_ends_with_nocase: String + payoutToken_not_ends_with: String + payoutToken_not_ends_with_nocase: String + payoutToken_: Token_filter + quoteToken: String + quoteToken_not: String + quoteToken_gt: String + quoteToken_lt: String + quoteToken_gte: String + quoteToken_lte: String + quoteToken_in: [String!] + quoteToken_not_in: [String!] + quoteToken_contains: String + quoteToken_contains_nocase: String + quoteToken_not_contains: String + quoteToken_not_contains_nocase: String + quoteToken_starts_with: String + quoteToken_starts_with_nocase: String + quoteToken_not_starts_with: String + quoteToken_not_starts_with_nocase: String + quoteToken_ends_with: String + quoteToken_ends_with_nocase: String + quoteToken_not_ends_with: String + quoteToken_not_ends_with_nocase: String + quoteToken_: Token_filter + vesting: BigInt + vesting_not: BigInt + vesting_gt: BigInt + vesting_lt: BigInt + vesting_gte: BigInt + vesting_lte: BigInt + vesting_in: [BigInt!] + vesting_not_in: [BigInt!] + start: BigInt + start_not: BigInt + start_gt: BigInt + start_lt: BigInt + start_gte: BigInt + start_lte: BigInt + start_in: [BigInt!] + start_not_in: [BigInt!] + conclusion: BigInt + conclusion_not: BigInt + conclusion_gt: BigInt + conclusion_lt: BigInt + conclusion_gte: BigInt + conclusion_lte: BigInt + conclusion_in: [BigInt!] + conclusion_not_in: [BigInt!] + vestingType: String + vestingType_not: String + vestingType_gt: String + vestingType_lt: String + vestingType_gte: String + vestingType_lte: String + vestingType_in: [String!] + vestingType_not_in: [String!] + vestingType_contains: String + vestingType_contains_nocase: String + vestingType_not_contains: String + vestingType_not_contains_nocase: String + vestingType_starts_with: String + vestingType_starts_with_nocase: String + vestingType_not_starts_with: String + vestingType_not_starts_with_nocase: String + vestingType_ends_with: String + vestingType_ends_with_nocase: String + vestingType_not_ends_with: String + vestingType_not_ends_with_nocase: String + isInstantSwap: Boolean + isInstantSwap_not: Boolean + isInstantSwap_in: [Boolean!] + isInstantSwap_not_in: [Boolean!] + hasClosed: Boolean + hasClosed_not: Boolean + hasClosed_in: [Boolean!] + hasClosed_not_in: [Boolean!] + totalBondedAmount: BigDecimal + totalBondedAmount_not: BigDecimal + totalBondedAmount_gt: BigDecimal + totalBondedAmount_lt: BigDecimal + totalBondedAmount_gte: BigDecimal + totalBondedAmount_lte: BigDecimal + totalBondedAmount_in: [BigDecimal!] + totalBondedAmount_not_in: [BigDecimal!] + totalPayoutAmount: BigDecimal + totalPayoutAmount_not: BigDecimal + totalPayoutAmount_gt: BigDecimal + totalPayoutAmount_lt: BigDecimal + totalPayoutAmount_gte: BigDecimal + totalPayoutAmount_lte: BigDecimal + totalPayoutAmount_in: [BigDecimal!] + totalPayoutAmount_not_in: [BigDecimal!] + creationBlockTimestamp: BigInt + creationBlockTimestamp_not: BigInt + creationBlockTimestamp_gt: BigInt + creationBlockTimestamp_lt: BigInt + creationBlockTimestamp_gte: BigInt + creationBlockTimestamp_lte: BigInt + creationBlockTimestamp_in: [BigInt!] + creationBlockTimestamp_not_in: [BigInt!] + callbackAddress: String + callbackAddress_not: String + callbackAddress_gt: String + callbackAddress_lt: String + callbackAddress_gte: String + callbackAddress_lte: String + callbackAddress_in: [String!] + callbackAddress_not_in: [String!] + callbackAddress_contains: String + callbackAddress_contains_nocase: String + callbackAddress_not_contains: String + callbackAddress_not_contains_nocase: String + callbackAddress_starts_with: String + callbackAddress_starts_with_nocase: String + callbackAddress_not_starts_with: String + callbackAddress_not_starts_with_nocase: String + callbackAddress_ends_with: String + callbackAddress_ends_with_nocase: String + callbackAddress_not_ends_with: String + callbackAddress_not_ends_with_nocase: String + capacity: BigInt + capacity_not: BigInt + capacity_gt: BigInt + capacity_lt: BigInt + capacity_gte: BigInt + capacity_lte: BigInt + capacity_in: [BigInt!] + capacity_not_in: [BigInt!] + capacityInQuote: Boolean + capacityInQuote_not: Boolean + capacityInQuote_in: [Boolean!] + capacityInQuote_not_in: [Boolean!] + minPrice: BigInt + minPrice_not: BigInt + minPrice_gt: BigInt + minPrice_lt: BigInt + minPrice_gte: BigInt + minPrice_lte: BigInt + minPrice_in: [BigInt!] + minPrice_not_in: [BigInt!] + price: BigInt + price_not: BigInt + price_gt: BigInt + price_lt: BigInt + price_gte: BigInt + price_lte: BigInt + price_in: [BigInt!] + price_not_in: [BigInt!] + scale: BigInt + scale_not: BigInt + scale_gt: BigInt + scale_lt: BigInt + scale_gte: BigInt + scale_lte: BigInt + scale_in: [BigInt!] + scale_not_in: [BigInt!] + averageBondPrice: BigDecimal + averageBondPrice_not: BigDecimal + averageBondPrice_gt: BigDecimal + averageBondPrice_lt: BigDecimal + averageBondPrice_gte: BigDecimal + averageBondPrice_lte: BigDecimal + averageBondPrice_in: [BigDecimal!] + averageBondPrice_not_in: [BigDecimal!] + tunes_: Tune_filter + bondPurchases_: BondPurchase_filter + bondsIssued: BigInt + bondsIssued_not: BigInt + bondsIssued_gt: BigInt + bondsIssued_lt: BigInt + bondsIssued_gte: BigInt + bondsIssued_lte: BigInt + bondsIssued_in: [BigInt!] + bondsIssued_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Market_filter] + or: [Market_filter] +} + +enum Market_orderBy { + id + name + type + network + chainId + auctioneer + teller + marketId + owner + payoutToken + payoutToken__id + payoutToken__network + payoutToken__chainId + payoutToken__address + payoutToken__decimals + payoutToken__symbol + payoutToken__name + payoutToken__typeName + payoutToken__usedAsPayout + payoutToken__usedAsQuote + payoutToken__totalPayoutAmount + payoutToken__purchaseCount + quoteToken + quoteToken__id + quoteToken__network + quoteToken__chainId + quoteToken__address + quoteToken__decimals + quoteToken__symbol + quoteToken__name + quoteToken__typeName + quoteToken__usedAsPayout + quoteToken__usedAsQuote + quoteToken__totalPayoutAmount + quoteToken__purchaseCount + vesting + start + conclusion + vestingType + isInstantSwap + hasClosed + totalBondedAmount + totalPayoutAmount + creationBlockTimestamp + callbackAddress + capacity + capacityInQuote + minPrice + price + scale + averageBondPrice + tunes + bondPurchases + bondsIssued +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +"The OwnerBalance entity tracks user balances of fixed-term ERC-1155 bond tokens.\nIt does not track balances of fixed-expiry ERC-20 tokens. These can be found by querying the user's wallet.\n" +type OwnerBalance { + "Unique ID for the OwnerBalance entity, in the format:\n[owner address]_[BondToken tokenId]\n" + id: String! + + "The unique ID of the token, assigned on creation.\n" + tokenId: BigInt! + + "The wallet address the balance pertains to.\n" + owner: String! + + "The current balance of ERC-1155 bond tokens.\n" + balance: BigInt! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "A reference to the BondToken for which the balance is being recorded.\n" + bondToken: BondToken +} + +input OwnerBalance_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + tokenId: BigInt + tokenId_not: BigInt + tokenId_gt: BigInt + tokenId_lt: BigInt + tokenId_gte: BigInt + tokenId_lte: BigInt + tokenId_in: [BigInt!] + tokenId_not_in: [BigInt!] + owner: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + balance: BigInt + balance_not: BigInt + balance_gt: BigInt + balance_lt: BigInt + balance_gte: BigInt + balance_lte: BigInt + balance_in: [BigInt!] + balance_not_in: [BigInt!] + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + bondToken: String + bondToken_not: String + bondToken_gt: String + bondToken_lt: String + bondToken_gte: String + bondToken_lte: String + bondToken_in: [String!] + bondToken_not_in: [String!] + bondToken_contains: String + bondToken_contains_nocase: String + bondToken_not_contains: String + bondToken_not_contains_nocase: String + bondToken_starts_with: String + bondToken_starts_with_nocase: String + bondToken_not_starts_with: String + bondToken_not_starts_with_nocase: String + bondToken_ends_with: String + bondToken_ends_with_nocase: String + bondToken_not_ends_with: String + bondToken_not_ends_with_nocase: String + bondToken_: BondToken_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [OwnerBalance_filter] + or: [OwnerBalance_filter] +} + +enum OwnerBalance_orderBy { + id + tokenId + owner + balance + network + chainId + bondToken + bondToken__id + bondToken__decimals + bondToken__symbol + bondToken__expiry + bondToken__teller + bondToken__network + bondToken__chainId + bondToken__type +} + +"The OwnerTokenTbv entity tracks the total of each quote token received by each Market owner.\n" +type OwnerTokenTbv { + "Unique ID for the OwnerTokenTbv entity, in the format:\n[chainId]_[Market owner address]__[quote Token id]\n**NOTE** the Token ID also appends the chain ID before the token address, so the chain ID will appear once at the start of the OwnerTokenTbv ID and once in the quote token subsection of the ID.\n" + id: String! + + "The Market owner address for which TBV is being calculated.\n" + owner: String! + + "The quote Token for which TBV is being calculated.\n" + token: String! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The amount of the quote token received across the owner's markets.\n" + tbv: BigDecimal! + + "A list of BondPurchase records in which the owner has received the quote token.\n" + bondPurchases(skip: Int = 0, first: Int = 100, orderBy: BondPurchase_orderBy, orderDirection: OrderDirection, where: BondPurchase_filter): [BondPurchase!] +} + +input OwnerTokenTbv_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + owner: String + owner_not: String + owner_gt: String + owner_lt: String + owner_gte: String + owner_lte: String + owner_in: [String!] + owner_not_in: [String!] + owner_contains: String + owner_contains_nocase: String + owner_not_contains: String + owner_not_contains_nocase: String + owner_starts_with: String + owner_starts_with_nocase: String + owner_not_starts_with: String + owner_not_starts_with_nocase: String + owner_ends_with: String + owner_ends_with_nocase: String + owner_not_ends_with: String + owner_not_ends_with_nocase: String + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + tbv: BigDecimal + tbv_not: BigDecimal + tbv_gt: BigDecimal + tbv_lt: BigDecimal + tbv_gte: BigDecimal + tbv_lte: BigDecimal + tbv_in: [BigDecimal!] + tbv_not_in: [BigDecimal!] + bondPurchases_: BondPurchase_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [OwnerTokenTbv_filter] + or: [OwnerTokenTbv_filter] +} + +enum OwnerTokenTbv_orderBy { + id + owner + token + network + chainId + tbv + bondPurchases +} + +"The Pair entity stores references to the Tokens which make up a Uniswap-V2 or similar LP Pair.\n" +type Pair { + "The address of the LP pair.\n**NOTE** for consistency, this should probably be updated to append the chainId, as Token and BalancerWeightedPool do.\n" + id: String! + + "A reference to the Token record for the LP pair's token0.\n" + token0: Token! + + "A reference to the Token record for the LP pair's token1.\n" + token1: Token! +} + +input Pair_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Pair_filter] + or: [Pair_filter] +} + +enum Pair_orderBy { + id + token0 + token0__id + token0__network + token0__chainId + token0__address + token0__decimals + token0__symbol + token0__name + token0__typeName + token0__usedAsPayout + token0__usedAsQuote + token0__totalPayoutAmount + token0__purchaseCount + token1 + token1__id + token1__network + token1__chainId + token1__address + token1__decimals + token1__symbol + token1__name + token1__typeName + token1__usedAsPayout + token1__usedAsQuote + token1__totalPayoutAmount + token1__purchaseCount +} + +type PayoutToken { + id: String! +} + +"The PayoutTokenTbv entity tracks the total of each quote token received in exchange for the given payout token.\n" +type PayoutTokenTbv { + "Unique ID for the PayoutTokenTbv entity, in the format:\n[chainId]_[payout token address]__[quote token id]\n**NOTE** the Token ID also appends the chain ID before the token address, so the chain ID will appear once at the start of the OwnerTokenTbv ID and once in the quote token subsection of the ID.\n" + id: String! + + "The payout Token address for which TBV is being calculated.\n" + payoutToken: Token! + + "The quote Token for which TBV is being calculated.\n" + quoteToken: Token! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The amount of the quote token received across the owner's markets.\n" + tbv: BigDecimal! + + "A list of BondPurchase records in which the owner has received the quote token.\n" + bondPurchases(skip: Int = 0, first: Int = 100, orderBy: BondPurchase_orderBy, orderDirection: OrderDirection, where: BondPurchase_filter): [BondPurchase!] +} + +input PayoutTokenTbv_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + payoutToken: String + payoutToken_not: String + payoutToken_gt: String + payoutToken_lt: String + payoutToken_gte: String + payoutToken_lte: String + payoutToken_in: [String!] + payoutToken_not_in: [String!] + payoutToken_contains: String + payoutToken_contains_nocase: String + payoutToken_not_contains: String + payoutToken_not_contains_nocase: String + payoutToken_starts_with: String + payoutToken_starts_with_nocase: String + payoutToken_not_starts_with: String + payoutToken_not_starts_with_nocase: String + payoutToken_ends_with: String + payoutToken_ends_with_nocase: String + payoutToken_not_ends_with: String + payoutToken_not_ends_with_nocase: String + payoutToken_: Token_filter + quoteToken: String + quoteToken_not: String + quoteToken_gt: String + quoteToken_lt: String + quoteToken_gte: String + quoteToken_lte: String + quoteToken_in: [String!] + quoteToken_not_in: [String!] + quoteToken_contains: String + quoteToken_contains_nocase: String + quoteToken_not_contains: String + quoteToken_not_contains_nocase: String + quoteToken_starts_with: String + quoteToken_starts_with_nocase: String + quoteToken_not_starts_with: String + quoteToken_not_starts_with_nocase: String + quoteToken_ends_with: String + quoteToken_ends_with_nocase: String + quoteToken_not_ends_with: String + quoteToken_not_ends_with_nocase: String + quoteToken_: Token_filter + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + tbv: BigDecimal + tbv_not: BigDecimal + tbv_gt: BigDecimal + tbv_lt: BigDecimal + tbv_gte: BigDecimal + tbv_lte: BigDecimal + tbv_in: [BigDecimal!] + tbv_not_in: [BigDecimal!] + bondPurchases_: BondPurchase_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PayoutTokenTbv_filter] + or: [PayoutTokenTbv_filter] +} + +enum PayoutTokenTbv_orderBy { + id + payoutToken + payoutToken__id + payoutToken__network + payoutToken__chainId + payoutToken__address + payoutToken__decimals + payoutToken__symbol + payoutToken__name + payoutToken__typeName + payoutToken__usedAsPayout + payoutToken__usedAsQuote + payoutToken__totalPayoutAmount + payoutToken__purchaseCount + quoteToken + quoteToken__id + quoteToken__network + quoteToken__chainId + quoteToken__address + quoteToken__decimals + quoteToken__symbol + quoteToken__name + quoteToken__typeName + quoteToken__usedAsPayout + quoteToken__usedAsQuote + quoteToken__totalPayoutAmount + quoteToken__purchaseCount + network + chainId + tbv + bondPurchases +} + +input PayoutToken_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PayoutToken_filter] + or: [PayoutToken_filter] +} + +enum PayoutToken_orderBy { + id +} + +"Workaround due to no simple entity count being available.\n" +type PurchaseCount { + "There should only be one PurchaseCount entry, with id \"purchase-count\".\n" + id: String! + + "The total number of bond purchases across all markets on this chain.\n" + count: BigInt! +} + +input PurchaseCount_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + count: BigInt + count_not: BigInt + count_gt: BigInt + count_lt: BigInt + count_gte: BigInt + count_lte: BigInt + count_in: [BigInt!] + count_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PurchaseCount_filter] + or: [PurchaseCount_filter] +} + +enum PurchaseCount_orderBy { + id + count +} + +type Query { + ownerBalance( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): OwnerBalance + ownerBalances( + skip: Int = 0 + first: Int = 100 + orderBy: OwnerBalance_orderBy + orderDirection: OrderDirection + where: OwnerBalance_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [OwnerBalance!]! + uniqueBonder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueBonder + uniqueBonders( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueBonder_orderBy + orderDirection: OrderDirection + where: UniqueBonder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueBonder!]! + uniqueBonderCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueBonderCount + uniqueBonderCounts( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueBonderCount_orderBy + orderDirection: OrderDirection + where: UniqueBonderCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueBonderCount!]! + uniqueTokenBonder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueTokenBonder + uniqueTokenBonders( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueTokenBonder_orderBy + orderDirection: OrderDirection + where: UniqueTokenBonder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueTokenBonder!]! + uniqueTokenBonderCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueTokenBonderCount + uniqueTokenBonderCounts( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueTokenBonderCount_orderBy + orderDirection: OrderDirection + where: UniqueTokenBonderCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueTokenBonderCount!]! + bondToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BondToken + bondTokens( + skip: Int = 0 + first: Int = 100 + orderBy: BondToken_orderBy + orderDirection: OrderDirection + where: BondToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BondToken!]! + ownerTokenTbv( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): OwnerTokenTbv + ownerTokenTbvs( + skip: Int = 0 + first: Int = 100 + orderBy: OwnerTokenTbv_orderBy + orderDirection: OrderDirection + where: OwnerTokenTbv_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [OwnerTokenTbv!]! + payoutTokenTbv( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PayoutTokenTbv + payoutTokenTbvs( + skip: Int = 0 + first: Int = 100 + orderBy: PayoutTokenTbv_orderBy + orderDirection: OrderDirection + where: PayoutTokenTbv_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PayoutTokenTbv!]! + bondPurchase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BondPurchase + bondPurchases( + skip: Int = 0 + first: Int = 100 + orderBy: BondPurchase_orderBy + orderDirection: OrderDirection + where: BondPurchase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BondPurchase!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + market( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Market + markets( + skip: Int = 0 + first: Int = 100 + orderBy: Market_orderBy + orderDirection: OrderDirection + where: Market_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Market!]! + pair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pair + pairs( + skip: Int = 0 + first: Int = 100 + orderBy: Pair_orderBy + orderDirection: OrderDirection + where: Pair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pair!]! + balancerWeightedPool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BalancerWeightedPool + balancerWeightedPools( + skip: Int = 0 + first: Int = 100 + orderBy: BalancerWeightedPool_orderBy + orderDirection: OrderDirection + where: BalancerWeightedPool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BalancerWeightedPool!]! + tune( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tune + tunes( + skip: Int = 0 + first: Int = 100 + orderBy: Tune_orderBy + orderDirection: OrderDirection + where: Tune_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tune!]! + purchaseCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PurchaseCount + purchaseCounts( + skip: Int = 0 + first: Int = 100 + orderBy: PurchaseCount_orderBy + orderDirection: OrderDirection + where: PurchaseCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PurchaseCount!]! + marketOwnerCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MarketOwnerCount + marketOwnerCounts( + skip: Int = 0 + first: Int = 100 + orderBy: MarketOwnerCount_orderBy + orderDirection: OrderDirection + where: MarketOwnerCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MarketOwnerCount!]! + payoutToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PayoutToken + payoutTokens( + skip: Int = 0 + first: Int = 100 + orderBy: PayoutToken_orderBy + orderDirection: OrderDirection + where: PayoutToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PayoutToken!]! + quoteToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): QuoteToken + quoteTokens( + skip: Int = 0 + first: Int = 100 + orderBy: QuoteToken_orderBy + orderDirection: OrderDirection + where: QuoteToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [QuoteToken!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type QuoteToken { + id: String! +} + +input QuoteToken_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [QuoteToken_filter] + or: [QuoteToken_filter] +} + +enum QuoteToken_orderBy { + id +} + +type Subscription { + ownerBalance( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): OwnerBalance + ownerBalances( + skip: Int = 0 + first: Int = 100 + orderBy: OwnerBalance_orderBy + orderDirection: OrderDirection + where: OwnerBalance_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [OwnerBalance!]! + uniqueBonder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueBonder + uniqueBonders( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueBonder_orderBy + orderDirection: OrderDirection + where: UniqueBonder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueBonder!]! + uniqueBonderCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueBonderCount + uniqueBonderCounts( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueBonderCount_orderBy + orderDirection: OrderDirection + where: UniqueBonderCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueBonderCount!]! + uniqueTokenBonder( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueTokenBonder + uniqueTokenBonders( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueTokenBonder_orderBy + orderDirection: OrderDirection + where: UniqueTokenBonder_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueTokenBonder!]! + uniqueTokenBonderCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): UniqueTokenBonderCount + uniqueTokenBonderCounts( + skip: Int = 0 + first: Int = 100 + orderBy: UniqueTokenBonderCount_orderBy + orderDirection: OrderDirection + where: UniqueTokenBonderCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [UniqueTokenBonderCount!]! + bondToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BondToken + bondTokens( + skip: Int = 0 + first: Int = 100 + orderBy: BondToken_orderBy + orderDirection: OrderDirection + where: BondToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BondToken!]! + ownerTokenTbv( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): OwnerTokenTbv + ownerTokenTbvs( + skip: Int = 0 + first: Int = 100 + orderBy: OwnerTokenTbv_orderBy + orderDirection: OrderDirection + where: OwnerTokenTbv_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [OwnerTokenTbv!]! + payoutTokenTbv( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PayoutTokenTbv + payoutTokenTbvs( + skip: Int = 0 + first: Int = 100 + orderBy: PayoutTokenTbv_orderBy + orderDirection: OrderDirection + where: PayoutTokenTbv_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PayoutTokenTbv!]! + bondPurchase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BondPurchase + bondPurchases( + skip: Int = 0 + first: Int = 100 + orderBy: BondPurchase_orderBy + orderDirection: OrderDirection + where: BondPurchase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BondPurchase!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + market( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Market + markets( + skip: Int = 0 + first: Int = 100 + orderBy: Market_orderBy + orderDirection: OrderDirection + where: Market_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Market!]! + pair( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Pair + pairs( + skip: Int = 0 + first: Int = 100 + orderBy: Pair_orderBy + orderDirection: OrderDirection + where: Pair_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Pair!]! + balancerWeightedPool( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BalancerWeightedPool + balancerWeightedPools( + skip: Int = 0 + first: Int = 100 + orderBy: BalancerWeightedPool_orderBy + orderDirection: OrderDirection + where: BalancerWeightedPool_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BalancerWeightedPool!]! + tune( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Tune + tunes( + skip: Int = 0 + first: Int = 100 + orderBy: Tune_orderBy + orderDirection: OrderDirection + where: Tune_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Tune!]! + purchaseCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PurchaseCount + purchaseCounts( + skip: Int = 0 + first: Int = 100 + orderBy: PurchaseCount_orderBy + orderDirection: OrderDirection + where: PurchaseCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PurchaseCount!]! + marketOwnerCount( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MarketOwnerCount + marketOwnerCounts( + skip: Int = 0 + first: Int = 100 + orderBy: MarketOwnerCount_orderBy + orderDirection: OrderDirection + where: MarketOwnerCount_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MarketOwnerCount!]! + payoutToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): PayoutToken + payoutTokens( + skip: Int = 0 + first: Int = 100 + orderBy: PayoutToken_orderBy + orderDirection: OrderDirection + where: PayoutToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [PayoutToken!]! + quoteToken( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): QuoteToken + quoteTokens( + skip: Int = 0 + first: Int = 100 + orderBy: QuoteToken_orderBy + orderDirection: OrderDirection + where: QuoteToken_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [QuoteToken!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +"The Token entity tracks all payout and quote tokens, including LP pairs, Balancer Pools etc and their constituent tokens.\n" +type Token { + "Unique ID for the Token entity, in the format:\n[chainId]_[token address]\n" + id: String! + + "The network name, as used by Graph Protocol.\n**NOTE** This may not be the same as the name as used by wallets.\nAs such, we use the chainId field to identify networks in our frontend.\n" + network: String! + + "The numeric chain ID on which the contracts are deployed.\n" + chainId: BigInt! + + "The address of the Token.\n" + address: String! + + "The number of decimals for the Token.\n" + decimals: BigInt! + + "The Token symbol.\n" + symbol: String! + + "The Token name.\n" + name: String! + + "The smart contract (as opposed to token) name - e.g. \"ERC20\", \"SLP\", \"BalancerWeightedPool\".\n" + typeName: String! + + "A reference to the Pair record, if the Token is a Uniswap-V2 (or compatible) LP token, null if it is not.\n" + lpPair: Pair + + "A reference to the BalancerWeightedPool record, if the Token is a BalancerWeightedPool, or null if it is not.\n" + balancerWeightedPool: BalancerWeightedPool + + "Whether the Token has been used as a Payout Token for any Markets\n" + usedAsPayout: Boolean! + + "Whether the Token has been used as a Quote Token for any Markets\n" + usedAsQuote: Boolean! + + "The amount of the this token paid out across the owner's markets.\n" + totalPayoutAmount: BigDecimal! + + "The total number of times this Token has been purchased on this chain.\n" + purchaseCount: BigInt! + + "A list of PayoutTokenTbv for this Token.\n" + payoutTokenTbvs(skip: Int = 0, first: Int = 100, orderBy: PayoutTokenTbv_orderBy, orderDirection: OrderDirection, where: PayoutTokenTbv_filter): [PayoutTokenTbv!] + + "The UniqueTokenBonderCount for this Token\n" + uniqueBonders: UniqueTokenBonderCount + + "Markets for this Token\n" + markets(skip: Int = 0, first: Int = 100, orderBy: Market_orderBy, orderDirection: OrderDirection, where: Market_filter): [Market!] +} + +input Token_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + network: String + network_not: String + network_gt: String + network_lt: String + network_gte: String + network_lte: String + network_in: [String!] + network_not_in: [String!] + network_contains: String + network_contains_nocase: String + network_not_contains: String + network_not_contains_nocase: String + network_starts_with: String + network_starts_with_nocase: String + network_not_starts_with: String + network_not_starts_with_nocase: String + network_ends_with: String + network_ends_with_nocase: String + network_not_ends_with: String + network_not_ends_with_nocase: String + chainId: BigInt + chainId_not: BigInt + chainId_gt: BigInt + chainId_lt: BigInt + chainId_gte: BigInt + chainId_lte: BigInt + chainId_in: [BigInt!] + chainId_not_in: [BigInt!] + address: String + address_not: String + address_gt: String + address_lt: String + address_gte: String + address_lte: String + address_in: [String!] + address_not_in: [String!] + address_contains: String + address_contains_nocase: String + address_not_contains: String + address_not_contains_nocase: String + address_starts_with: String + address_starts_with_nocase: String + address_not_starts_with: String + address_not_starts_with_nocase: String + address_ends_with: String + address_ends_with_nocase: String + address_not_ends_with: String + address_not_ends_with_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!] + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + typeName: String + typeName_not: String + typeName_gt: String + typeName_lt: String + typeName_gte: String + typeName_lte: String + typeName_in: [String!] + typeName_not_in: [String!] + typeName_contains: String + typeName_contains_nocase: String + typeName_not_contains: String + typeName_not_contains_nocase: String + typeName_starts_with: String + typeName_starts_with_nocase: String + typeName_not_starts_with: String + typeName_not_starts_with_nocase: String + typeName_ends_with: String + typeName_ends_with_nocase: String + typeName_not_ends_with: String + typeName_not_ends_with_nocase: String + lpPair: String + lpPair_not: String + lpPair_gt: String + lpPair_lt: String + lpPair_gte: String + lpPair_lte: String + lpPair_in: [String!] + lpPair_not_in: [String!] + lpPair_contains: String + lpPair_contains_nocase: String + lpPair_not_contains: String + lpPair_not_contains_nocase: String + lpPair_starts_with: String + lpPair_starts_with_nocase: String + lpPair_not_starts_with: String + lpPair_not_starts_with_nocase: String + lpPair_ends_with: String + lpPair_ends_with_nocase: String + lpPair_not_ends_with: String + lpPair_not_ends_with_nocase: String + lpPair_: Pair_filter + balancerWeightedPool: String + balancerWeightedPool_not: String + balancerWeightedPool_gt: String + balancerWeightedPool_lt: String + balancerWeightedPool_gte: String + balancerWeightedPool_lte: String + balancerWeightedPool_in: [String!] + balancerWeightedPool_not_in: [String!] + balancerWeightedPool_contains: String + balancerWeightedPool_contains_nocase: String + balancerWeightedPool_not_contains: String + balancerWeightedPool_not_contains_nocase: String + balancerWeightedPool_starts_with: String + balancerWeightedPool_starts_with_nocase: String + balancerWeightedPool_not_starts_with: String + balancerWeightedPool_not_starts_with_nocase: String + balancerWeightedPool_ends_with: String + balancerWeightedPool_ends_with_nocase: String + balancerWeightedPool_not_ends_with: String + balancerWeightedPool_not_ends_with_nocase: String + balancerWeightedPool_: BalancerWeightedPool_filter + usedAsPayout: Boolean + usedAsPayout_not: Boolean + usedAsPayout_in: [Boolean!] + usedAsPayout_not_in: [Boolean!] + usedAsQuote: Boolean + usedAsQuote_not: Boolean + usedAsQuote_in: [Boolean!] + usedAsQuote_not_in: [Boolean!] + totalPayoutAmount: BigDecimal + totalPayoutAmount_not: BigDecimal + totalPayoutAmount_gt: BigDecimal + totalPayoutAmount_lt: BigDecimal + totalPayoutAmount_gte: BigDecimal + totalPayoutAmount_lte: BigDecimal + totalPayoutAmount_in: [BigDecimal!] + totalPayoutAmount_not_in: [BigDecimal!] + purchaseCount: BigInt + purchaseCount_not: BigInt + purchaseCount_gt: BigInt + purchaseCount_lt: BigInt + purchaseCount_gte: BigInt + purchaseCount_lte: BigInt + purchaseCount_in: [BigInt!] + purchaseCount_not_in: [BigInt!] + payoutTokenTbvs_: PayoutTokenTbv_filter + uniqueBonders_: UniqueTokenBonderCount_filter + markets_: Market_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + network + chainId + address + decimals + symbol + name + typeName + lpPair + lpPair__id + balancerWeightedPool + balancerWeightedPool__id + balancerWeightedPool__vaultAddress + balancerWeightedPool__poolId + usedAsPayout + usedAsQuote + totalPayoutAmount + purchaseCount + payoutTokenTbvs + uniqueBonders + uniqueBonders__id + uniqueBonders__count + markets +} + +"The Tune entity tracks Market tuning events.\n" +type Tune { + "The ID of the Market to which the event relates.\n" + id: String! + + "A reference to the related Market record.\n" + market: Market! + + "The pre-tuning value of the control variable.\n" + oldControlVariable: BigInt! + + "The post-tuning value of the control variable.\n" + newControlVariable: BigInt! + + "The difference between the old and new control variables.\noldControlVariable - newControlVariable\n" + deltaTime: BigInt! + + "The timestamp at which the tuning event occurred.\n" + timestamp: BigInt! +} + +input Tune_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + market: String + market_not: String + market_gt: String + market_lt: String + market_gte: String + market_lte: String + market_in: [String!] + market_not_in: [String!] + market_contains: String + market_contains_nocase: String + market_not_contains: String + market_not_contains_nocase: String + market_starts_with: String + market_starts_with_nocase: String + market_not_starts_with: String + market_not_starts_with_nocase: String + market_ends_with: String + market_ends_with_nocase: String + market_not_ends_with: String + market_not_ends_with_nocase: String + market_: Market_filter + oldControlVariable: BigInt + oldControlVariable_not: BigInt + oldControlVariable_gt: BigInt + oldControlVariable_lt: BigInt + oldControlVariable_gte: BigInt + oldControlVariable_lte: BigInt + oldControlVariable_in: [BigInt!] + oldControlVariable_not_in: [BigInt!] + newControlVariable: BigInt + newControlVariable_not: BigInt + newControlVariable_gt: BigInt + newControlVariable_lt: BigInt + newControlVariable_gte: BigInt + newControlVariable_lte: BigInt + newControlVariable_in: [BigInt!] + newControlVariable_not_in: [BigInt!] + deltaTime: BigInt + deltaTime_not: BigInt + deltaTime_gt: BigInt + deltaTime_lt: BigInt + deltaTime_gte: BigInt + deltaTime_lte: BigInt + deltaTime_in: [BigInt!] + deltaTime_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Tune_filter] + or: [Tune_filter] +} + +enum Tune_orderBy { + id + market + market__id + market__name + market__type + market__network + market__chainId + market__auctioneer + market__teller + market__marketId + market__owner + market__vesting + market__start + market__conclusion + market__vestingType + market__isInstantSwap + market__hasClosed + market__totalBondedAmount + market__totalPayoutAmount + market__creationBlockTimestamp + market__callbackAddress + market__capacity + market__capacityInQuote + market__minPrice + market__price + market__scale + market__averageBondPrice + market__bondsIssued + oldControlVariable + newControlVariable + deltaTime + timestamp +} + +"A UniqueBonder record is created for each unique combination of chain, market owner, bond purchaser.\n" +type UniqueBonder { + "Unique ID for the UniqueBonder entity, in the format:\n[chainId]_[Market owner address]__[bond purchaser address]\n" + id: String! +} + +"Workaround due to no simple entity count being available.\n" +type UniqueBonderCount { + "There should be one UniqueBonderCount entry per market owner, with owner address as id.\n" + id: String! + + "The total number of unique bonders for this token on this chain.\n" + count: BigInt! +} + +input UniqueBonderCount_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + count: BigInt + count_not: BigInt + count_gt: BigInt + count_lt: BigInt + count_gte: BigInt + count_lte: BigInt + count_in: [BigInt!] + count_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniqueBonderCount_filter] + or: [UniqueBonderCount_filter] +} + +enum UniqueBonderCount_orderBy { + id + count +} + +input UniqueBonder_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniqueBonder_filter] + or: [UniqueBonder_filter] +} + +enum UniqueBonder_orderBy { + id +} + +"A UniqueTokenBonder record is created for each unique combination of chain, payout token address, bond purchaser.\n" +type UniqueTokenBonder { + "Unique ID for the UniqueTokenBonder entity, in the format:\n[chainId]_[payout token address]__[bond purchaser address]\n" + id: String! +} + +"Workaround due to no simple entity count being available.\n" +type UniqueTokenBonderCount { + "There should be one UniqueTokenBonderCount entry per token, with token address as id.\n" + id: String! + + "The token for which bonders are being counted.\n" + token: Token! + + "The total number of unique bonders for this token on this chain.\n" + count: BigInt! +} + +input UniqueTokenBonderCount_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + count: BigInt + count_not: BigInt + count_gt: BigInt + count_lt: BigInt + count_gte: BigInt + count_lte: BigInt + count_in: [BigInt!] + count_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniqueTokenBonderCount_filter] + or: [UniqueTokenBonderCount_filter] +} + +enum UniqueTokenBonderCount_orderBy { + id + token + token__id + token__network + token__chainId + token__address + token__decimals + token__symbol + token__name + token__typeName + token__usedAsPayout + token__usedAsQuote + token__totalPayoutAmount + token__purchaseCount + count +} + +input UniqueTokenBonder_filter { + id: String + id_not: String + id_gt: String + id_lt: String + id_gte: String + id_lte: String + id_in: [String!] + id_not_in: [String!] + id_contains: String + id_contains_nocase: String + id_not_contains: String + id_not_contains_nocase: String + id_starts_with: String + id_starts_with_nocase: String + id_not_starts_with: String + id_not_starts_with_nocase: String + id_ends_with: String + id_ends_with_nocase: String + id_not_ends_with: String + id_not_ends_with_nocase: String + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniqueTokenBonder_filter] + or: [UniqueTokenBonder_filter] +} + +enum UniqueTokenBonder_orderBy { + id +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index 4dc1a3e660..217072462b 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -18,6 +18,12 @@ "tadaOutputLocation": "./src/subgraphs/blocks/blocks-env.d.ts", "tadaTurboLocation": "./src/subgraphs/blocks/blocks-cache.d.ts" }, + { + "name": "bonds", + "schema": "./src/subgraphs/bonds/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/bonds/bonds-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/bonds/bonds-cache.d.ts" + }, { "name": "master-chef-v1", "schema": "./src/subgraphs/master-chef-v1/schema.graphql", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a76e10e232..9881389a2f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1793,6 +1793,9 @@ importers: packages/graph-client-new: dependencies: + '@sushiswap/bonds-sdk': + specifier: workspace:* + version: link:../bonds-sdk '@sushiswap/graph-config': specifier: workspace:* version: link:../../config/graph From f7cf3073eb698ec6d195331dc5bcb73c4e59dd47 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sun, 26 May 2024 22:03:25 +0000 Subject: [PATCH 029/119] feat(pkgs/graph-client): add balanceOf fetching to the liq pos getter --- packages/graph-client-new/package.json | 8 ++-- .../src/subgraphs/bonds/bonds-cache.d.ts | 5 ++- .../sushi-v2/queries/liquidity-positions.ts | 44 ++++++++++++++----- .../subgraphs/sushi-v3/sushi-v3-cache.d.ts | 2 +- pnpm-lock.yaml | 6 +-- 5 files changed, 44 insertions(+), 21 deletions(-) diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index 1049191105..192643a430 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -60,11 +60,12 @@ "preset": "@sushiswap/jest-config/node" }, "dependencies": { - "@sushiswap/graph-config": "workspace:*", "@sushiswap/bonds-sdk": "workspace:*", + "@sushiswap/graph-config": "workspace:*", "gql.tada": "^1.7.5", "graphql-request": "^7.0.1", - "sushi": "workspace:*" + "sushi": "workspace:*", + "viem": "2.10.11" }, "devDependencies": { "@0no-co/graphqlsp": "^1.12.3", @@ -78,8 +79,5 @@ "graphql-js-schema-fetch": "^1.1.2", "tsx": "^4.7.1", "typescript": "5.2.2" - }, - "peerDependencies": { - "@wagmi/core": "2.10.2" } } diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts index e664361ffe..89685fcb73 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts @@ -4,6 +4,9 @@ import type { TadaDocumentNode, $tada } from 'gql.tada'; declare module 'gql.tada' { interface setupCache { - + "\n query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) {\n markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n chainId\n type\n auctioneer\n teller\n marketId\n owner\n capacity\n capacityInQuote\n minPrice\n scale\n start\n conclusion\n payoutToken {\n id: address\n symbol\n decimals\n name\n }\n quoteToken {\n id: address\n symbol\n decimals\n name\n }\n vesting\n vestingType\n isInstantSwap\n hasClosed\n totalBondedAmount\n totalPayoutAmount\n averageBondPrice\n bondsIssued\n }\n }\n": + TadaDocumentNode<{ markets: { bondsIssued: string; averageBondPrice: string; totalPayoutAmount: string; totalBondedAmount: string; hasClosed: boolean; isInstantSwap: boolean; vestingType: string; vesting: string; quoteToken: { name: string; decimals: string; symbol: string; id: string; }; payoutToken: { name: string; decimals: string; symbol: string; id: string; }; conclusion: string; start: string; scale: string; minPrice: string; capacityInQuote: boolean; capacity: string; owner: string; marketId: string; teller: string; auctioneer: string; type: string; chainId: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "type" | "price" | "chainId" | "auctioneer" | "teller" | "marketId" | "owner" | "capacity" | "capacityInQuote" | "minPrice" | "scale" | "start" | "conclusion" | "payoutToken" | "quoteToken" | "vesting" | "vestingType" | "isInstantSwap" | "hasClosed" | "totalBondedAmount" | "totalPayoutAmount" | "averageBondPrice" | "bondsIssued" | "network" | "creationBlockTimestamp" | "callbackAddress" | "payoutToken__id" | "payoutToken__network" | "payoutToken__chainId" | "payoutToken__address" | "payoutToken__decimals" | "payoutToken__symbol" | "payoutToken__name" | "payoutToken__typeName" | "payoutToken__usedAsPayout" | "payoutToken__usedAsQuote" | "payoutToken__totalPayoutAmount" | "payoutToken__purchaseCount" | "quoteToken__id" | "quoteToken__network" | "quoteToken__chainId" | "quoteToken__address" | "quoteToken__decimals" | "quoteToken__symbol" | "quoteToken__name" | "quoteToken__typeName" | "quoteToken__usedAsPayout" | "quoteToken__usedAsQuote" | "quoteToken__totalPayoutAmount" | "quoteToken__purchaseCount" | "tunes" | "bondPurchases"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) {\n positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n balance\n bondToken {\n id\n expiry\n type\n teller\n underlying {\n id: address\n symbol\n decimals\n name\n }\n }\n }\n }\n": + TadaDocumentNode<{ positions: { bondToken: { underlying: { name: string; decimals: string; symbol: string; id: string; }; teller: string; type: string; expiry: string; id: string; }; balance: string; owner: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; expiry_not_in?: string[]; expiry_in?: string[]; expiry_lte?: string; expiry_gte?: string; expiry_lt?: string; expiry_gt?: string; expiry_not?: string; expiry?: string; underlying_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; underlying_not_ends_with_nocase?: string; underlying_not_ends_with?: string; underlying_ends_with_nocase?: string; underlying_ends_with?: string; underlying_not_starts_with_nocase?: string; underlying_not_starts_with?: string; underlying_starts_with_nocase?: string; underlying_starts_with?: string; underlying_not_contains_nocase?: string; underlying_not_contains?: string; underlying_contains_nocase?: string; underlying_contains?: string; underlying_not_in?: string[]; underlying_in?: string[]; underlying_lte?: string; underlying_gte?: string; underlying_lt?: string; underlying_gt?: string; underlying_not?: string; underlying?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; bondToken_not_ends_with_nocase?: string; bondToken_not_ends_with?: string; bondToken_ends_with_nocase?: string; bondToken_ends_with?: string; bondToken_not_starts_with_nocase?: string; bondToken_not_starts_with?: string; bondToken_starts_with_nocase?: string; bondToken_starts_with?: string; bondToken_not_contains_nocase?: string; bondToken_not_contains?: string; bondToken_contains_nocase?: string; bondToken_contains?: string; bondToken_not_in?: string[]; bondToken_in?: string[]; bondToken_lte?: string; bondToken_gte?: string; bondToken_lt?: string; bondToken_gt?: string; bondToken_not?: string; bondToken?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; tokenId_not_in?: string[]; tokenId_in?: string[]; tokenId_lte?: string; tokenId_gte?: string; tokenId_lt?: string; tokenId_gt?: string; tokenId_not?: string; tokenId?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "balance" | "chainId" | "owner" | "network" | "bondToken" | "tokenId" | "bondToken__id" | "bondToken__decimals" | "bondToken__symbol" | "bondToken__expiry" | "bondToken__teller" | "bondToken__network" | "bondToken__chainId" | "bondToken__type"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 0484f3a572..e2a4b4102e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -3,6 +3,7 @@ import { type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { createPublicClient, erc20Abi } from 'viem' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -11,6 +12,7 @@ import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' +import { publicClientConfig } from 'sushi/config' import { graphql } from '../graphql' export const SushiV2LiquidityPositionsQuery = graphql(` @@ -37,17 +39,17 @@ export async function getSushiV2LiquidityPositions({ chainId, ...variables }: GetSushiV2LiquidityPositions) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + try { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` - const result = await requestPaged({ - chainId, - url, - query: SushiV2LiquidityPositionsQuery, - variables, - }) + const result = await requestPaged({ + chainId, + url, + query: SushiV2LiquidityPositionsQuery, + variables, + }) - if (result) { - return result.liquidityPositions.map((position) => { + const transformed = result.liquidityPositions.map((position) => { const pool = convertIdToMultichainId( copyIdToAddress(addChainId(chainId, position.pair)), ) @@ -59,9 +61,29 @@ export async function getSushiV2LiquidityPositions({ user: position.user.id as Hex, } }) - } - throw new FetchError(chainId, 'Failed to fetch liquidity positions') + const client = createPublicClient(publicClientConfig[chainId]) + const balances = await client.multicall({ + contracts: transformed.map( + (pos) => + ({ + abi: erc20Abi, + functionName: 'balanceOf', + address: pos.pool.address, + args: [pos.user], + }) as const, + ), + allowFailure: false, + }) + + transformed.forEach((pos, i) => { + pos.balance = String(balances[i]!) + }) + + return transformed + } catch { + throw new FetchError(chainId, 'Failed to fetch liquidity positions') + } } export type SushiV2LiquidityPositions = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts index 74ffa0294f..47c5cf0405 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts @@ -19,7 +19,7 @@ declare module 'gql.tada' { "\n query PoolsByTokenPair($where: Pool_filter!) {\n pools(first: 1000, where: $where) {\n id\n feeTier\n liquidity\n sqrtPrice\n feeGrowthGlobal0X128\n feeGrowthGlobal1X128\n token0Price\n token1Price\n tick\n observationIndex\n volumeToken0\n volumeToken1\n volumeUSD\n untrackedVolumeUSD\n feesUSD\n collectedFeesToken0\n collectedFeesToken1\n collectedFeesUSD\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n totalValueLockedUSDUntracked\n liquidityProviderCount\n }\n }\n": TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "tick" | "recipient" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "recipient" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "tick" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n timestamp\n blockNumber\n mints {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n }\n collects {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n }\n }\n }\n": TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "gasPrice" | "mints" | "swaps" | "gasUsed" | "blockNumber" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9881389a2f..8dd099a2ab 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1799,9 +1799,6 @@ importers: '@sushiswap/graph-config': specifier: workspace:* version: link:../../config/graph - '@wagmi/core': - specifier: 2.10.2 - version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11) gql.tada: specifier: ^1.7.5 version: 1.7.5(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2) @@ -1811,6 +1808,9 @@ importers: sushi: specifier: workspace:* version: link:../sushi + viem: + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) devDependencies: '@0no-co/graphqlsp': specifier: ^1.12.3 From 9e7e73bf8a17d56fa27f47465c4018cb5f5f097a Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 27 May 2024 12:40:54 +0000 Subject: [PATCH 030/119] feat(pkgs/graph-client): fix build config, types --- apps/evm/package.json | 1 + apps/evm/src/app/(landing)/api/stats/route.ts | 1 + packages/graph-client-new/package.json | 38 +++++++------ .../src/composite/combined-user-positions.ts | 2 +- .../src/lib/fetch-multichain.ts | 41 -------------- .../modifiers/convert-id-to-multichain-id.ts | 3 +- .../src/multichain/fetch-multichain.ts | 54 +++++++++++++++++++ .../graph-client-new/src/multichain/index.ts | 1 + .../src/subgraphs/sushi-v2/index.ts | 1 + .../subgraphs/sushi-v2/multichain/m-pools.ts | 2 +- .../src/subgraphs/sushi-v2/queries/factory.ts | 50 +++++++++++++++++ .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 6 ++- .../subgraphs/sushi-v3/sushi-v3-cache.d.ts | 2 +- packages/graph-client-new/tsconfig.json | 5 ++ pnpm-lock.yaml | 42 +++++++++++++-- 15 files changed, 184 insertions(+), 65 deletions(-) delete mode 100644 packages/graph-client-new/src/lib/fetch-multichain.ts create mode 100644 packages/graph-client-new/src/multichain/fetch-multichain.ts create mode 100644 packages/graph-client-new/src/multichain/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts diff --git a/apps/evm/package.json b/apps/evm/package.json index 305278d09c..150727bcf7 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -30,6 +30,7 @@ "@sushiswap/database": "workspace:*", "@sushiswap/dexie": "workspace:*", "@sushiswap/graph-client": "workspace:*", + "@sushiswap/graph-client-new": "workspace:*", "@sushiswap/graph-config": "workspace:*", "@sushiswap/hooks": "workspace:*", "@sushiswap/nextjs-config": "workspace:*", diff --git a/apps/evm/src/app/(landing)/api/stats/route.ts b/apps/evm/src/app/(landing)/api/stats/route.ts index ccfd198d01..15d5b103b7 100644 --- a/apps/evm/src/app/(landing)/api/stats/route.ts +++ b/apps/evm/src/app/(landing)/api/stats/route.ts @@ -29,6 +29,7 @@ interface ExchangeData { const getV2Data = async () => { const sdk = getBuiltGraphSDK() + const { factories } = await sdk.Factories({ chainIds: SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.filter( (c) => diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index 192643a430..ae71ab3327 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -16,28 +16,34 @@ "author": "LufyCZ ", "type": "module", "exports": { - ".": { - "types": "./dist/index.d.ts", - "import": "./dist/index.js", - "default": "./dist/index.js" + "./*": { + "types": "./dist/subgraphs/*/index.d.ts", + "import": "./dist/subgraphs/*/index.js", + "default": "./dist/subgraphs/*/index.js" }, - "./abi": { - "types": "./dist/abi/index.d.ts", - "import": "./dist/abi/index.js", - "default": "./dist/abi/index.js" + "./multichain": { + "types": "./dist/multichain/index.d.ts", + "import": "./dist/multichain/index.js", + "default": "./dist/multichain/index.js" + }, + "./composite/*": { + "types": "./dist/composite/*.d.ts", + "import": "./dist/composite/*.js", + "default": "./dist/composite/*.js" }, "./package.json": "./package.json" }, - "module": "./dist/index.js", - "source": "src/index.ts", - "types": "./dist/index.d.ts", "typesVersions": { "*": { ".": [ - "src/index" + "src/subgraphs/**/*", + "src/lib/**/*" + ], + "./multichain": [ + "src/multichain/*" ], - "abi": [ - "src/abi/index" + "./composite": [ + "src/composite/*" ] } }, @@ -47,7 +53,8 @@ ], "scripts": { "build:types": "gql.tada generate output && gql.tada turbo", - "build": "pnpm build:types && tsc", + "build:compile": "tsc && tsc-alias -p tsconfig.json", + "build": "pnpm build:types && pnpm build:compile", "check": "tsc --pretty --noEmit", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "dev": "tsc --watch", @@ -77,6 +84,7 @@ "fetch-graphql-schema": "^0.2.1", "graphql-fetch-schema": "^1.1.0", "graphql-js-schema-fetch": "^1.1.2", + "tsc-alias": "^1.8.10", "tsx": "^4.7.1", "typescript": "5.2.2" } diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts index cb545932ff..5d20db84b6 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -3,9 +3,9 @@ import { SUSHISWAP_ENABLED_NETWORKS, isMiniChefChainId, } from '@sushiswap/graph-config' -import { fetchMultichain } from 'src/lib/fetch-multichain' import type { ChainIdsVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' +import { fetchMultichain } from 'src/multichain/fetch-multichain' import { type GetSushiV2LiquidityPositions, getSushiV2LiquidityPositions, diff --git a/packages/graph-client-new/src/lib/fetch-multichain.ts b/packages/graph-client-new/src/lib/fetch-multichain.ts deleted file mode 100644 index 19beb43722..0000000000 --- a/packages/graph-client-new/src/lib/fetch-multichain.ts +++ /dev/null @@ -1,41 +0,0 @@ -import type { FetchError } from './fetch-error' - -type FetchMultichain< - ARG extends { [key: string]: any }, - RET extends Promise, -> = { - chainIds: ARG['chainId'][] - fetch: (variables: ARG) => RET - variables: Omit -} - -export async function fetchMultichain< - ARG extends { [key: string]: any }, - RET extends Promise, ->({ - chainIds, - fetch, - variables, -}: FetchMultichain): Promise<{ - data: Awaited - errors: FetchError[] -}> { - const promises = await Promise.allSettled( - chainIds.map((chainId) => { - return fetch({ ...(variables as ARG), chainId }) - }), - ) - - const data = [] as Awaited - const errors = [] as FetchError[] - - for (const promise of promises) { - if (promise.status === 'fulfilled') { - data.push(...promise.value) - } else { - errors.push(promise.reason) - } - } - - return { data, errors } -} diff --git a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts index 48709d7bf6..f132e24b1b 100644 --- a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts +++ b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts @@ -1,7 +1,8 @@ import type { ChainId } from 'sushi/chain' type ReturnType = T & { - id: `${T['chainId']}:${string}` + id: `${string}:${string}` + // id: `${T['chainId']}:${string}` } export function convertIdToMultichainId< diff --git a/packages/graph-client-new/src/multichain/fetch-multichain.ts b/packages/graph-client-new/src/multichain/fetch-multichain.ts new file mode 100644 index 0000000000..94c56175e4 --- /dev/null +++ b/packages/graph-client-new/src/multichain/fetch-multichain.ts @@ -0,0 +1,54 @@ +import type { FetchError } from '../lib/fetch-error' + +export type Variables = keyof Omit< + T, + 'chainId' +> extends undefined + ? { variables?: Omit } + : { variables: Omit } + +export type FetchMultichain< + ARG extends { [key: string]: any }, + RET extends Promise, +> = { + chainIds: ARG['chainId'][] + fetch: (variables: ARG) => RET +} & Variables + +export async function fetchMultichain< + ARG extends { [key: string]: any }, + RET extends Promise, +>({ + chainIds, + fetch, + variables, +}: FetchMultichain): Promise<{ + data: Awaited extends unknown[] ? Awaited : Awaited[] + errors: FetchError[] +}> { + const promises = await Promise.allSettled( + chainIds.map((chainId) => { + return fetch({ ...(variables as ARG), chainId }) + }), + ) + + const data = [] as Awaited extends unknown[] + ? Awaited + : Awaited[] + const errors = [] as FetchError[] + + for (const promise of promises) { + if (promise.status === 'fulfilled') { + const value = promise.value + if (Array.isArray(value)) { + data.push(...value) + } else { + data.push(value) + } + } else { + errors.push(promise.reason) + } + } + + return { data, errors } +} diff --git a/packages/graph-client-new/src/multichain/index.ts b/packages/graph-client-new/src/multichain/index.ts new file mode 100644 index 0000000000..794791d600 --- /dev/null +++ b/packages/graph-client-new/src/multichain/index.ts @@ -0,0 +1 @@ +export * from './fetch-multichain' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts index 36c86ccd7c..d8b4db9abe 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts @@ -1,4 +1,5 @@ export * from './queries/burns' +export * from './queries/factory' export * from './queries/liquidity-positions' export * from './queries/mints' export * from './queries/pool' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts index 81f0e44cba..a568482a36 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts @@ -1,6 +1,6 @@ import { SUSHISWAP_ENABLED_NETWORKS } from '@sushiswap/graph-config' -import { fetchMultichain } from 'src/lib/fetch-multichain' import type { ChainIdsInsteadOfChainId } from 'src/lib/types/chainId' +import { fetchMultichain } from 'src/multichain/fetch-multichain' import { type GetSushiV2Pools, getSushiV2Pools } from '..' export type GetSushiV2MPools = ChainIdsInsteadOfChainId diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts new file mode 100644 index 0000000000..ec839ade50 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts @@ -0,0 +1,50 @@ +import { + SUSHISWAP_SUBGRAPH_URL, + type SushiSwapChainId, +} from '@sushiswap/graph-config' +import type { VariablesOf } from 'gql.tada' +import request from 'graphql-request' + +import { FetchError } from 'src/lib/fetch-error' +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { graphql } from '../graphql' + +export const SushiV2FactoriesQuery = graphql(` + query Factories { + factories(first: 1) { + id + liquidityUSD + volumeUSD + poolCount: pairCount + } + } +`) + +export type GetSushiV2Factory = VariablesOf & + ChainIdVariable + +export async function getSushiV2Factory({ + chainId, + ...variables +}: GetSushiV2Factory) { + const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + + const result = await request({ + url, + document: SushiV2FactoriesQuery, + variables, + }) + + if (result.factories[0]) { + return convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, result.factories[0])), + ) + } + + throw new FetchError(chainId, 'Failed to fetch factory') +} + +export type SushiV2Factory = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts index f43cba5e8a..c41725b415 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts @@ -6,6 +6,8 @@ declare module 'gql.tada' { interface setupCache { "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "to" | "complete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Factories {\n factories(first: 1) {\n id\n liquidityUSD\n volumeUSD\n poolCount: pairCount\n }\n }\n": + TadaDocumentNode<{ factories: { poolCount: string; volumeUSD: string; liquidityUSD: string; id: string; }[]; }, {}, void>; "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": TadaDocumentNode<{ liquidityPositions: { user: { id: string; }; pair: { id: string; }; balance: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: any; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "user" | "balance" | "createdAtTimestamp" | "createdAtBlock" | "user__id" | "user__lpSnapshotsCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": @@ -15,11 +17,11 @@ declare module 'gql.tada' { "\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n": TadaDocumentNode<{ pool: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; "\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pools: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "liquidity" | "createdAtTimestamp" | "createdAtBlock" | "type" | "hourSnapshots" | "apr" | "daySnapshots" | "swapFee" | "twapEnabled" | "token0" | "token1" | "source" | "reserve0" | "reserve1" | "_cacheUpdatedAtBlock" | "_cache_reserve0" | "_cache_reserve1" | "_cache_token0Price" | "_cache_token1Price" | "liquidityUSD" | "liquidityNative" | "trackedLiquidityNative" | "token0Price" | "token1Price" | "volumeNative" | "volumeUSD" | "volumeToken0" | "volumeToken1" | "feesNative" | "feesUSD" | "aprUpdatedAtTimestamp" | "txCount" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__symbolSuccess" | "token0__name" | "token0__nameSuccess" | "token0__decimals" | "token0__decimalsSuccess" | "token0__liquidity" | "token0__liquidityNative" | "token0__liquidityUSD" | "token0__volume" | "token0__volumeNative" | "token0__volumeUSD" | "token0__feesNative" | "token0__feesUSD" | "token0__txCount" | "token0__pairCount" | "token0__whitelistedPairCount" | "token1__id" | "token1__symbol" | "token1__symbolSuccess" | "token1__name" | "token1__nameSuccess" | "token1__decimals" | "token1__decimalsSuccess" | "token1__liquidity" | "token1__liquidityNative" | "token1__liquidityUSD" | "token1__volume" | "token1__volumeNative" | "token1__volumeUSD" | "token1__feesNative" | "token1__feesUSD" | "token1__txCount" | "token1__pairCount" | "token1__whitelistedPairCount" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ pools: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "liquidity" | "createdAtTimestamp" | "createdAtBlock" | "liquidityUSD" | "volumeUSD" | "type" | "hourSnapshots" | "apr" | "daySnapshots" | "swapFee" | "twapEnabled" | "token0" | "token1" | "source" | "reserve0" | "reserve1" | "_cacheUpdatedAtBlock" | "_cache_reserve0" | "_cache_reserve1" | "_cache_token0Price" | "_cache_token1Price" | "liquidityNative" | "trackedLiquidityNative" | "token0Price" | "token1Price" | "volumeNative" | "volumeToken0" | "volumeToken1" | "feesNative" | "feesUSD" | "aprUpdatedAtTimestamp" | "txCount" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__symbolSuccess" | "token0__name" | "token0__nameSuccess" | "token0__decimals" | "token0__decimalsSuccess" | "token0__liquidity" | "token0__liquidityNative" | "token0__liquidityUSD" | "token0__volume" | "token0__volumeNative" | "token0__volumeUSD" | "token0__feesNative" | "token0__feesUSD" | "token0__txCount" | "token0__pairCount" | "token0__whitelistedPairCount" | "token1__id" | "token1__symbol" | "token1__symbolSuccess" | "token1__name" | "token1__nameSuccess" | "token1__decimals" | "token1__decimalsSuccess" | "token1__liquidity" | "token1__liquidityNative" | "token1__liquidityUSD" | "token1__volume" | "token1__volumeNative" | "token1__volumeUSD" | "token1__feesNative" | "token1__feesUSD" | "token1__txCount" | "token1__pairCount" | "token1__whitelistedPairCount" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "amountUSD" | "logIndex" | "transaction" | "to" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "tokenIn" | "tokenOut" | "amountIn" | "amountOut" | "tokenIn__id" | "tokenIn__symbol" | "tokenIn__symbolSuccess" | "tokenIn__name" | "tokenIn__nameSuccess" | "tokenIn__decimals" | "tokenIn__decimalsSuccess" | "tokenIn__liquidity" | "tokenIn__liquidityNative" | "tokenIn__liquidityUSD" | "tokenIn__volume" | "tokenIn__volumeNative" | "tokenIn__volumeUSD" | "tokenIn__feesNative" | "tokenIn__feesUSD" | "tokenIn__txCount" | "tokenIn__pairCount" | "tokenIn__whitelistedPairCount" | "tokenOut__id" | "tokenOut__symbol" | "tokenOut__symbolSuccess" | "tokenOut__name" | "tokenOut__nameSuccess" | "tokenOut__decimals" | "tokenOut__decimalsSuccess" | "tokenOut__liquidity" | "tokenOut__liquidityNative" | "tokenOut__liquidityUSD" | "tokenOut__volume" | "tokenOut__volumeNative" | "tokenOut__volumeUSD" | "tokenOut__feesNative" | "tokenOut__feesUSD" | "tokenOut__txCount" | "tokenOut__pairCount" | "tokenOut__whitelistedPairCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n liquidityUSD\n symbol\n decimals\n volumeUSD\n feesUSD\n price {\n derivedNative\n }\n }\n }\n": - TadaDocumentNode<{ tokens: { price: { derivedNative: string; }; feesUSD: string; volumeUSD: string; decimals: string; symbol: string; liquidityUSD: string; name: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "liquidity" | "liquidityUSD" | "liquidityNative" | "volumeNative" | "volumeUSD" | "feesNative" | "feesUSD" | "txCount" | "price" | "symbolSuccess" | "nameSuccess" | "decimals" | "decimalsSuccess" | "volume" | "pairCount" | "whitelistedPairCount" | "pairs" | "price__id" | "price__derivedNative" | "price__lastUsdPrice" | "whitelistedPairs"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ tokens: { price: { derivedNative: string; }; feesUSD: string; volumeUSD: string; decimals: string; symbol: string; liquidityUSD: string; name: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "liquidity" | "liquidityUSD" | "volumeUSD" | "liquidityNative" | "volumeNative" | "feesNative" | "feesUSD" | "txCount" | "volume" | "pairCount" | "price" | "symbolSuccess" | "nameSuccess" | "decimals" | "decimalsSuccess" | "whitelistedPairCount" | "pairs" | "price__id" | "price__derivedNative" | "price__lastUsdPrice" | "whitelistedPairs"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp\n createdAtBlock\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n }\n }\n }\n": TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: string; }[]; createdAtBlock: string; createdAtTimestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "createdAtTimestamp" | "createdAtBlock" | "gasLimit" | "burns" | "gasPrice" | "mints" | "swaps"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts index 47c5cf0405..dbbce5623d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts @@ -19,7 +19,7 @@ declare module 'gql.tada' { "\n query PoolsByTokenPair($where: Pool_filter!) {\n pools(first: 1000, where: $where) {\n id\n feeTier\n liquidity\n sqrtPrice\n feeGrowthGlobal0X128\n feeGrowthGlobal1X128\n token0Price\n token1Price\n tick\n observationIndex\n volumeToken0\n volumeToken1\n volumeUSD\n untrackedVolumeUSD\n feesUSD\n collectedFeesToken0\n collectedFeesToken1\n collectedFeesUSD\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n totalValueLockedUSDUntracked\n liquidityProviderCount\n }\n }\n": TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "recipient" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "tick" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "recipient" | "tick" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n timestamp\n blockNumber\n mints {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n }\n collects {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n }\n }\n }\n": TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "gasPrice" | "mints" | "swaps" | "gasUsed" | "blockNumber" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index 217072462b..0287325b29 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -8,6 +8,11 @@ "declaration": true, "resolveJsonModule": true, "target": "ES2020", + "paths":{ + "src":[ + "./src/*" + ] + }, "plugins": [ { "name": "@0no-co/graphqlsp", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index a4cafdec2c..aee692553c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -705,6 +705,9 @@ importers: '@sushiswap/graph-client': specifier: workspace:* version: link:../../packages/graph-client + '@sushiswap/graph-client-new': + specifier: workspace:* + version: link:../../packages/graph-client-new '@sushiswap/graph-config': specifier: workspace:* version: link:../../config/graph @@ -1839,6 +1842,9 @@ importers: graphql-js-schema-fetch: specifier: ^1.1.2 version: 1.1.2 + tsc-alias: + specifier: ^1.8.10 + version: 1.8.10 tsx: specifier: ^4.7.1 version: 4.7.1 @@ -26012,7 +26018,7 @@ packages: engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} dependencies: mdn-data: 2.0.30 - source-map-js: 1.0.2 + source-map-js: 1.2.0 dev: false /css-what@3.4.2: @@ -31233,6 +31239,7 @@ packages: /glob@7.1.7: resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} + deprecated: Glob versions prior to v9 are no longer supported dependencies: fs.realpath: 1.0.0 inflight: 1.0.6 @@ -31333,7 +31340,7 @@ packages: array-union: 2.1.0 dir-glob: 3.0.1 fast-glob: 3.3.1 - ignore: 5.2.4 + ignore: 5.3.1 merge2: 1.4.1 slash: 3.0.0 @@ -37170,6 +37177,11 @@ packages: resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} dev: true + /mylas@2.1.13: + resolution: {integrity: sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg==} + engines: {node: '>=12.0.0'} + dev: true + /mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} dependencies: @@ -38652,6 +38664,13 @@ packages: fsevents: 2.3.2 dev: true + /plimit-lit@1.6.1: + resolution: {integrity: sha512-B7+VDyb8Tl6oMJT9oSO2CW8XC/T4UcJGrwOVoNGwOQsQYhlpfajmrMj5xeejqaASq3V/EqThyOeATEOMuSEXiA==} + engines: {node: '>=12'} + dependencies: + queue-lit: 1.5.2 + dev: true + /pluralize@8.0.0: resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} engines: {node: '>=4'} @@ -40085,6 +40104,11 @@ packages: /querystringify@2.2.0: resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} + /queue-lit@1.5.2: + resolution: {integrity: sha512-tLc36IOPeMAubu8BkW8YDBV+WyIgKlYU7zUNs0J5Vk9skSZ4JfGlPOqplP0aHdfv7HL0B2Pg6nwiq60Qc6M2Hw==} + engines: {node: '>=12'} + dev: true + /queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} @@ -45015,7 +45039,7 @@ packages: '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 '@types/node': 20.12.7 - acorn: 8.11.3 + acorn: 8.10.0 acorn-walk: 8.2.0 arg: 4.1.3 create-require: 1.1.1 @@ -45062,6 +45086,18 @@ packages: resolution: {integrity: sha512-nsZd8ZeNUzukXPlJmTBwUAuABDe/9qtVDelJeT/qW0ow3ZS3BsQJtNkan1802aM9Uf68/Y8ljw86Hu0h5IUW3w==} dev: false + /tsc-alias@1.8.10: + resolution: {integrity: sha512-Ibv4KAWfFkFdKJxnWfVtdOmB0Zi1RJVxcbPGiCDsFpCQSsmpWyuzHG3rQyI5YkobWwxFPEyQfu1hdo4qLG2zPw==} + hasBin: true + dependencies: + chokidar: 3.5.3 + commander: 9.5.0 + globby: 11.1.0 + mylas: 2.1.13 + normalize-path: 3.0.0 + plimit-lit: 1.6.1 + dev: true + /tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} dependencies: From 00f669713819327f33b17099b704ac73034e2bff Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 27 May 2024 15:36:41 +0000 Subject: [PATCH 031/119] merge: Ola's decentralized branch --- packages/graph-client-new/package.json | 4 +- .../scripts/update-schemas.ts | 47 +- .../src/lib/modifiers/copy-id-to-address.ts | 8 +- .../src/subgraphs/blocks/blocks-env.d.ts | 4 +- .../src/subgraphs/blocks/schema.graphql | 20 +- .../src/subgraphs/bonds/bonds-cache.d.ts | 2 +- .../src/subgraphs/bonds/queries/markets.ts | 15 +- .../src/subgraphs/bonds/queries/positions.ts | 11 +- .../sushi-v2/fragments/pool-fields.ts | 21 +- .../subgraphs/sushi-v2/multichain/m-pools.ts | 17 - .../src/subgraphs/sushi-v2/queries/burns.ts | 8 +- .../src/subgraphs/sushi-v2/queries/factory.ts | 11 +- .../sushi-v2/queries/liquidity-positions.ts | 6 +- .../src/subgraphs/sushi-v2/queries/mints.ts | 8 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 4 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 4 +- .../src/subgraphs/sushi-v2/queries/swaps.ts | 22 +- .../src/subgraphs/sushi-v2/queries/tokens.ts | 12 +- .../sushi-v2/queries/transactions.ts | 27 +- .../src/subgraphs/sushi-v2/schema.graphql | 4884 +++++------------ .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 36 +- .../src/subgraphs/sushi-v2/sushi-v2-env.d.ts | 113 +- .../src/subgraphs/sushi-v3/queries/factory.ts | 7 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 5 +- .../sushi-v3/queries/pools-by-token-pair.ts | 5 +- .../src/subgraphs/sushi-v3/schema.graphql | 215 + .../subgraphs/sushi-v3/sushi-v3-cache.d.ts | 14 +- .../src/subgraphs/sushi-v3/sushi-v3-env.d.ts | 41 +- pnpm-lock.yaml | 3 + 29 files changed, 1917 insertions(+), 3657 deletions(-) delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index ae71ab3327..267433e0ea 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -70,6 +70,7 @@ "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/graph-config": "workspace:*", "gql.tada": "^1.7.5", + "graphql": "16.6.0", "graphql-request": "^7.0.1", "sushi": "workspace:*", "viem": "2.10.11" @@ -81,9 +82,6 @@ "@tsconfig/strictest": "2.0.2", "@types/node": "20", "eslint": "8.43.0", - "fetch-graphql-schema": "^0.2.1", - "graphql-fetch-schema": "^1.1.0", - "graphql-js-schema-fetch": "^1.1.2", "tsc-alias": "^1.8.10", "tsx": "^4.7.1", "typescript": "5.2.2" diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index 32136e9425..675c3279bf 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -1,27 +1,18 @@ import { BONDS_SUBGRAPH_URL } from '@sushiswap/bonds-sdk' -import { - BLOCKS_SUBGRAPH_URL, - MASTERCHEF_V1_SUBGRAPH_URL, - MASTERCHEF_V2_SUBGRAPH_URL, - MINICHEF_SUBGRAPH_URL, - SUSHISWAP_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, - SUSHI_BAR_SUBGRAPH_URL, -} from '@sushiswap/graph-config' +import { buildClientSchema, getIntrospectionQuery, printSchema } from 'graphql' import fs from 'fs' -import fetchSchema from 'graphql-fetch-schema' - const schemas = { - blocks: BLOCKS_SUBGRAPH_URL[1], + blocks: 'api.studio.thegraph.com/query/72545/ethereum-blocks/v0.0.2', bonds: BONDS_SUBGRAPH_URL[1], - 'master-chef-v1': MASTERCHEF_V1_SUBGRAPH_URL, - 'master-chef-v2': MASTERCHEF_V2_SUBGRAPH_URL, - 'mini-chef': MINICHEF_SUBGRAPH_URL[137], - 'sushi-bar': SUSHI_BAR_SUBGRAPH_URL, - 'sushi-v2': SUSHISWAP_SUBGRAPH_URL[1], - 'sushi-v3': SUSHISWAP_V3_SUBGRAPH_URL[1], + 'master-chef-v1': 'api.studio.thegraph.com/query/32073/masterchef/v0.0.1', + 'master-chef-v2': 'api.studio.thegraph.com/query/32073/master-chefv2/v0.0.1', + 'mini-chef': + 'api.studio.thegraph.com/query/32073/minichef-arbitrum/version/latest', + 'sushi-bar': 'api.studio.thegraph.com/query/32073/xsushi/v0.0.1', + 'sushi-v2': 'api.studio.thegraph.com/query/32073/v2-arbitrum/v0.0.5', + 'sushi-v3': 'api.studio.thegraph.com/query/32073/v3-arbitrum/v0.0.1', } as const satisfies Record async function updateSchema(schema: keyof typeof schemas) { @@ -29,12 +20,20 @@ async function updateSchema(schema: keyof typeof schemas) { const url = schemas[schema] try { - const [{ contents }] = await fetchSchema.default(`https://${url}/`, { - json: false, - graphql: true, + const res = await fetch(`https://${url}/`, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + Origin: 'https://sushi.com', + }, + body: JSON.stringify({ + query: getIntrospectionQuery(), + }), }) - fs.writeFileSync(path, contents) + const content = printSchema(buildClientSchema((await res.json()).data)) + + fs.writeFileSync(path, content) } catch (e) { return { schema, @@ -55,7 +54,9 @@ const res = await Promise.all( ), ) -fs.rmSync('./schema.graphql') +if (fs.statSync('./schema.graphql', { throwIfNoEntry: false })) { + fs.rmSync('./schema.graphql') +} res.forEach((r) => { if (r.success) { diff --git a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts index f4a94eea06..7dedab2be8 100644 --- a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts +++ b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts @@ -1,10 +1,10 @@ -type ReturnType = T & { +type ReturnType = T & { address: `0x${string}` } -export function copyIdToAddress( - object: T, -): ReturnType { +export function copyIdToAddress< + T extends { id: `0x${string}`; address?: never }, +>(object: T): ReturnType { Object.defineProperty(object, 'address', { value: object.id, }) diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts index ce60b52d24..5aa78c97ac 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts @@ -18,9 +18,9 @@ export type introspection = { 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; 'BigDecimal': unknown; 'BigInt': unknown; - 'Block': { kind: 'OBJECT'; name: 'Block'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'difficulty': { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiptsRoot': { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stateRoot': { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalDifficulty': { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'transactionsRoot': { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unclesHash': { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; + 'Block': { kind: 'OBJECT'; name: 'Block'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'difficulty': { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiptsRoot': { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stateRoot': { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalDifficulty': { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'transactionsRoot': { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unclesHash': { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_filter': { kind: 'INPUT_OBJECT'; name: 'Block_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'number_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'difficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Block_filter': { kind: 'INPUT_OBJECT'; name: 'Block_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'number_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'difficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }]; }; 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; 'Block_orderBy': { name: 'Block_orderBy'; enumValues: 'id' | 'number' | 'timestamp' | 'parentHash' | 'author' | 'difficulty' | 'totalDifficulty' | 'gasUsed' | 'gasLimit' | 'receiptsRoot' | 'transactionsRoot' | 'stateRoot' | 'size' | 'unclesHash'; }; 'Boolean': unknown; diff --git a/packages/graph-client-new/src/subgraphs/blocks/schema.graphql b/packages/graph-client-new/src/subgraphs/blocks/schema.graphql index 0680e7f5b1..662dac97e1 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/schema.graphql +++ b/packages/graph-client-new/src/subgraphs/blocks/schema.graphql @@ -21,7 +21,7 @@ scalar BigDecimal scalar BigInt type Block { - id: ID! + id: Bytes! number: BigInt! timestamp: BigInt! parentHash: String @@ -42,14 +42,16 @@ input BlockChangedFilter { } input Block_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!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes number: BigInt number_not: BigInt number_gt: BigInt diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts index 89685fcb73..5e3951ee97 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts @@ -7,6 +7,6 @@ declare module 'gql.tada' { "\n query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) {\n markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n chainId\n type\n auctioneer\n teller\n marketId\n owner\n capacity\n capacityInQuote\n minPrice\n scale\n start\n conclusion\n payoutToken {\n id: address\n symbol\n decimals\n name\n }\n quoteToken {\n id: address\n symbol\n decimals\n name\n }\n vesting\n vestingType\n isInstantSwap\n hasClosed\n totalBondedAmount\n totalPayoutAmount\n averageBondPrice\n bondsIssued\n }\n }\n": TadaDocumentNode<{ markets: { bondsIssued: string; averageBondPrice: string; totalPayoutAmount: string; totalBondedAmount: string; hasClosed: boolean; isInstantSwap: boolean; vestingType: string; vesting: string; quoteToken: { name: string; decimals: string; symbol: string; id: string; }; payoutToken: { name: string; decimals: string; symbol: string; id: string; }; conclusion: string; start: string; scale: string; minPrice: string; capacityInQuote: boolean; capacity: string; owner: string; marketId: string; teller: string; auctioneer: string; type: string; chainId: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "type" | "price" | "chainId" | "auctioneer" | "teller" | "marketId" | "owner" | "capacity" | "capacityInQuote" | "minPrice" | "scale" | "start" | "conclusion" | "payoutToken" | "quoteToken" | "vesting" | "vestingType" | "isInstantSwap" | "hasClosed" | "totalBondedAmount" | "totalPayoutAmount" | "averageBondPrice" | "bondsIssued" | "network" | "creationBlockTimestamp" | "callbackAddress" | "payoutToken__id" | "payoutToken__network" | "payoutToken__chainId" | "payoutToken__address" | "payoutToken__decimals" | "payoutToken__symbol" | "payoutToken__name" | "payoutToken__typeName" | "payoutToken__usedAsPayout" | "payoutToken__usedAsQuote" | "payoutToken__totalPayoutAmount" | "payoutToken__purchaseCount" | "quoteToken__id" | "quoteToken__network" | "quoteToken__chainId" | "quoteToken__address" | "quoteToken__decimals" | "quoteToken__symbol" | "quoteToken__name" | "quoteToken__typeName" | "quoteToken__usedAsPayout" | "quoteToken__usedAsQuote" | "quoteToken__totalPayoutAmount" | "quoteToken__purchaseCount" | "tunes" | "bondPurchases"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) {\n positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n balance\n bondToken {\n id\n expiry\n type\n teller\n underlying {\n id: address\n symbol\n decimals\n name\n }\n }\n }\n }\n": - TadaDocumentNode<{ positions: { bondToken: { underlying: { name: string; decimals: string; symbol: string; id: string; }; teller: string; type: string; expiry: string; id: string; }; balance: string; owner: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; expiry_not_in?: string[]; expiry_in?: string[]; expiry_lte?: string; expiry_gte?: string; expiry_lt?: string; expiry_gt?: string; expiry_not?: string; expiry?: string; underlying_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; underlying_not_ends_with_nocase?: string; underlying_not_ends_with?: string; underlying_ends_with_nocase?: string; underlying_ends_with?: string; underlying_not_starts_with_nocase?: string; underlying_not_starts_with?: string; underlying_starts_with_nocase?: string; underlying_starts_with?: string; underlying_not_contains_nocase?: string; underlying_not_contains?: string; underlying_contains_nocase?: string; underlying_contains?: string; underlying_not_in?: string[]; underlying_in?: string[]; underlying_lte?: string; underlying_gte?: string; underlying_lt?: string; underlying_gt?: string; underlying_not?: string; underlying?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; bondToken_not_ends_with_nocase?: string; bondToken_not_ends_with?: string; bondToken_ends_with_nocase?: string; bondToken_ends_with?: string; bondToken_not_starts_with_nocase?: string; bondToken_not_starts_with?: string; bondToken_starts_with_nocase?: string; bondToken_starts_with?: string; bondToken_not_contains_nocase?: string; bondToken_not_contains?: string; bondToken_contains_nocase?: string; bondToken_contains?: string; bondToken_not_in?: string[]; bondToken_in?: string[]; bondToken_lte?: string; bondToken_gte?: string; bondToken_lt?: string; bondToken_gt?: string; bondToken_not?: string; bondToken?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; tokenId_not_in?: string[]; tokenId_in?: string[]; tokenId_lte?: string; tokenId_gte?: string; tokenId_lt?: string; tokenId_gt?: string; tokenId_not?: string; tokenId?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "balance" | "chainId" | "owner" | "network" | "bondToken" | "tokenId" | "bondToken__id" | "bondToken__decimals" | "bondToken__symbol" | "bondToken__expiry" | "bondToken__teller" | "bondToken__network" | "bondToken__chainId" | "bondToken__type"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ positions: { bondToken: { underlying: { name: string; decimals: string; symbol: string; id: string; }; teller: string; type: string; expiry: string; id: string; }; balance: string; owner: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; expiry_not_in?: string[]; expiry_in?: string[]; expiry_lte?: string; expiry_gte?: string; expiry_lt?: string; expiry_gt?: string; expiry_not?: string; expiry?: string; underlying_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; underlying_not_ends_with_nocase?: string; underlying_not_ends_with?: string; underlying_ends_with_nocase?: string; underlying_ends_with?: string; underlying_not_starts_with_nocase?: string; underlying_not_starts_with?: string; underlying_starts_with_nocase?: string; underlying_starts_with?: string; underlying_not_contains_nocase?: string; underlying_not_contains?: string; underlying_contains_nocase?: string; underlying_contains?: string; underlying_not_in?: string[]; underlying_in?: string[]; underlying_lte?: string; underlying_gte?: string; underlying_lt?: string; underlying_gt?: string; underlying_not?: string; underlying?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; bondToken_not_ends_with_nocase?: string; bondToken_not_ends_with?: string; bondToken_ends_with_nocase?: string; bondToken_ends_with?: string; bondToken_not_starts_with_nocase?: string; bondToken_not_starts_with?: string; bondToken_starts_with_nocase?: string; bondToken_starts_with?: string; bondToken_not_contains_nocase?: string; bondToken_not_contains?: string; bondToken_contains_nocase?: string; bondToken_contains?: string; bondToken_not_in?: string[]; bondToken_in?: string[]; bondToken_lte?: string; bondToken_gte?: string; bondToken_lt?: string; bondToken_gt?: string; bondToken_not?: string; bondToken?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; tokenId_not_in?: string[]; tokenId_in?: string[]; tokenId_lte?: string; tokenId_gte?: string; tokenId_lt?: string; tokenId_gt?: string; tokenId_not?: string; tokenId?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "chainId" | "owner" | "network" | "balance" | "bondToken" | "tokenId" | "bondToken__id" | "bondToken__decimals" | "bondToken__symbol" | "bondToken__expiry" | "bondToken__teller" | "bondToken__network" | "bondToken__chainId" | "bondToken__type"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts index 47d0789d0d..7d54657396 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts @@ -6,6 +6,7 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const BondMarketsQuery = graphql( @@ -68,11 +69,21 @@ export async function getBondMarkets({ return result.markets.map((market) => { const quoteToken = convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, market.quoteToken)), + copyIdToAddress( + addChainId( + chainId, + market.quoteToken as typeof market.quoteToken & { id: Hex }, + ), + ), ) const payoutToken = convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, market.payoutToken)), + copyIdToAddress( + addChainId( + chainId, + market.payoutToken as typeof market.payoutToken & { id: Hex }, + ), + ), ) return { diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts index bc393481b0..5942bdf556 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts @@ -6,6 +6,7 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const BondUserPositionsQuery = graphql( @@ -51,7 +52,15 @@ export async function getBondUserPositions({ return result.positions.map((position) => { const bondTokenUnderlying = position.bondToken ? convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, position.bondToken.underlying)), + copyIdToAddress( + addChainId( + chainId, + position.bondToken + .underlying as typeof position.bondToken.underlying & { + id: Hex + }, + ), + ), ) : null diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts index 559b92fc08..b10246771e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -3,10 +3,6 @@ import { graphql } from '../graphql' export const PoolFieldsFragment = graphql(` fragment PoolFields on Pair @_unmask { id - type - swapFee - twapEnabled - name token0 { name id @@ -19,22 +15,19 @@ export const PoolFieldsFragment = graphql(` decimals symbol } - source - createdAtBlock + createdAtBlockNumber createdAtTimestamp reserve0 reserve1 - liquidity - liquidityUSD - liquidityNative + totalSupply + reserveUSD + reserveETH + trackedReserveETH + # token0Price + # token1Price volumeUSD - volumeNative volumeToken0 volumeToken1 - feesNative - feesUSD txCount - apr - aprUpdatedAtTimestamp } `) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts deleted file mode 100644 index a568482a36..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/multichain/m-pools.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { SUSHISWAP_ENABLED_NETWORKS } from '@sushiswap/graph-config' -import type { ChainIdsInsteadOfChainId } from 'src/lib/types/chainId' -import { fetchMultichain } from 'src/multichain/fetch-multichain' -import { type GetSushiV2Pools, getSushiV2Pools } from '..' - -export type GetSushiV2MPools = ChainIdsInsteadOfChainId - -export async function getSushiV2MPools({ - chainIds = [...SUSHISWAP_ENABLED_NETWORKS], - ...variables -}: GetSushiV2MPools) { - return fetchMultichain({ - chainIds, - fetch: getSushiV2Pools, - variables, - }) -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index 60dc894b9c..3621abe797 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -21,8 +21,8 @@ export const SushiV2BurnsQuery = graphql(` logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } @@ -35,7 +35,7 @@ export async function getSushiV2Burns({ chainId, ...variables }: GetSushiV2Burns) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts index ec839ade50..702432ae0d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -14,10 +14,11 @@ import { graphql } from '../graphql' export const SushiV2FactoriesQuery = graphql(` query Factories { - factories(first: 1) { + factories: uniswapFactories(first: 1) { id - liquidityUSD - volumeUSD + totalLiquidityUSD + untrackedVolumeUSD + totalVolumeUSD poolCount: pairCount } } @@ -30,7 +31,7 @@ export async function getSushiV2Factory({ chainId, ...variables }: GetSushiV2Factory) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await request({ url, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index e2a4b4102e..795455f23a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -19,7 +19,7 @@ export const SushiV2LiquidityPositionsQuery = graphql(` query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) { liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id - balance + balance: liquidityTokenBalance pair { id } @@ -40,7 +40,7 @@ export async function getSushiV2LiquidityPositions({ ...variables }: GetSushiV2LiquidityPositions) { try { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 63fca1a01e..6461409e58 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -21,8 +21,8 @@ export const SushiV2MintsQuery = graphql(` logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } @@ -35,7 +35,7 @@ export async function getSushiV2Mints({ chainId, ...variables }: GetSushiV2Mints) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 10d14b8f95..fe25053f64 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -31,7 +31,7 @@ export async function getSushiV2Pool({ chainId, ...variables }: GetSushiV2Pool) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV2PoolQuery, variables) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 170bc4a134..0355dff708 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -31,7 +31,7 @@ export async function getSushiV2Pools({ chainId, ...variables }: GetSushiV2Pools) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index e94579fefb..4f2e30a3a6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -15,20 +15,18 @@ export const SushiV2SwapsQuery = graphql(` id sender to - amountIn - tokenIn { - symbol - } - amountOut - tokenOut { - symbol - } + amount0In + amount1In + amount0Out + amount1Out + amountUSD + logIndex amountUSD logIndex transaction { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber } } } @@ -41,7 +39,7 @@ export async function getSushiV2Swaps({ chainId, ...variables }: GetSushiV2Swaps) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 702c2d739b..0e5bb7a948 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -1,5 +1,5 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' @@ -17,14 +17,10 @@ export const SushiV2TokensQuery = graphql(` tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id name - liquidityUSD symbol decimals - volumeUSD - feesUSD - price { - derivedNative - } + tradeVolumeUSD + totalLiquidity } } `) @@ -36,7 +32,7 @@ export async function getSushiV2Tokens({ chainId, ...variables }: GetSushiV2Tokens) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 665fa0414d..332f3dd952 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -1,10 +1,9 @@ import { - SUSHISWAP_SUBGRAPH_URL, + SUSHISWAP_V2_SUBGRAPH_URL, type SushiSwapChainId, } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -13,8 +12,8 @@ export const SushiV2TransactionsQuery = graphql(` query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) { transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id - createdAtTimestamp - createdAtBlock + createdAtTimestamp: timestamp + createdAtBlock: blockNumber mints { id sender @@ -37,14 +36,10 @@ export const SushiV2TransactionsQuery = graphql(` id sender to - amountIn - tokenIn { - symbol - } - amountOut - tokenOut { - symbol - } + amount0In + amount1In + amount0Out + amount1Out amountUSD logIndex } @@ -61,7 +56,7 @@ export async function getSushiV2Transactions({ chainId, ...variables }: GetSushiV2Transactions) { - const url = `https://${SUSHISWAP_SUBGRAPH_URL[chainId]}` + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ chainId, @@ -70,11 +65,7 @@ export async function getSushiV2Transactions({ variables, }) - if (result) { - return result.transactions - } - - throw new FetchError(chainId, 'Failed to fetch transactions') + return result.transactions } export type SushiV2Transactions = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql b/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql index c66797f3c4..c000f6a9c3 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql @@ -30,13 +30,9 @@ input Block_height { number_gte: Int } -""" Bundle - should only ever be one created""" type Bundle { - """ hardcoded to '1'""" id: ID! - - """ Price of native """ - nativePrice: BigDecimal! + ethPrice: BigDecimal! } input Bundle_filter { @@ -48,14 +44,14 @@ input Bundle_filter { id_lte: ID id_in: [ID!] id_not_in: [ID!] - nativePrice: BigDecimal - nativePrice_not: BigDecimal - nativePrice_gt: BigDecimal - nativePrice_lt: BigDecimal - nativePrice_gte: BigDecimal - nativePrice_lte: BigDecimal - nativePrice_in: [BigDecimal!] - nativePrice_not_in: [BigDecimal!] + ethPrice: BigDecimal + ethPrice_not: BigDecimal + ethPrice_gt: BigDecimal + ethPrice_lt: BigDecimal + ethPrice_gte: BigDecimal + ethPrice_lte: BigDecimal + ethPrice_in: [BigDecimal!] + ethPrice_not_in: [BigDecimal!] """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -65,36 +61,37 @@ input Bundle_filter { enum Bundle_orderBy { id - nativePrice + ethPrice } type Burn { - """ transaction.id:transaction.burns.length """ - id: ID! + id: Bytes! transaction: Transaction! timestamp: BigInt! pair: Pair! liquidity: BigDecimal! - sender: String + sender: Bytes amount0: BigDecimal amount1: BigDecimal - to: String + to: Bytes logIndex: BigInt amountUSD: BigDecimal - complete: Boolean! - feeTo: String + needsComplete: Boolean! + feeTo: Bytes feeLiquidity: BigDecimal } 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!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes transaction: String transaction_not: String transaction_gt: String @@ -153,26 +150,16 @@ input Burn_filter { liquidity_lte: BigDecimal liquidity_in: [BigDecimal!] liquidity_not_in: [BigDecimal!] - sender: String - sender_not: String - sender_gt: String - sender_lt: String - sender_gte: String - sender_lte: String - sender_in: [String!] - sender_not_in: [String!] - sender_contains: String - sender_contains_nocase: String - sender_not_contains: String - sender_not_contains_nocase: String - sender_starts_with: String - sender_starts_with_nocase: String - sender_not_starts_with: String - sender_not_starts_with_nocase: String - sender_ends_with: String - sender_ends_with_nocase: String - sender_not_ends_with: String - sender_not_ends_with_nocase: String + sender: 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 amount0: BigDecimal amount0_not: BigDecimal amount0_gt: BigDecimal @@ -189,26 +176,16 @@ input Burn_filter { amount1_lte: BigDecimal amount1_in: [BigDecimal!] amount1_not_in: [BigDecimal!] - to: String - to_not: String - to_gt: String - to_lt: String - to_gte: String - to_lte: String - to_in: [String!] - to_not_in: [String!] - to_contains: String - to_contains_nocase: String - to_not_contains: String - to_not_contains_nocase: String - to_starts_with: String - to_starts_with_nocase: String - to_not_starts_with: String - to_not_starts_with_nocase: String - to_ends_with: String - to_ends_with_nocase: String - to_not_ends_with: String - to_not_ends_with_nocase: String + to: Bytes + to_not: Bytes + to_gt: Bytes + to_lt: Bytes + to_gte: Bytes + to_lte: Bytes + to_in: [Bytes!] + to_not_in: [Bytes!] + to_contains: Bytes + to_not_contains: Bytes logIndex: BigInt logIndex_not: BigInt logIndex_gt: BigInt @@ -225,30 +202,20 @@ input Burn_filter { amountUSD_lte: BigDecimal amountUSD_in: [BigDecimal!] amountUSD_not_in: [BigDecimal!] - complete: Boolean - complete_not: Boolean - complete_in: [Boolean!] - complete_not_in: [Boolean!] - feeTo: String - feeTo_not: String - feeTo_gt: String - feeTo_lt: String - feeTo_gte: String - feeTo_lte: String - feeTo_in: [String!] - feeTo_not_in: [String!] - feeTo_contains: String - feeTo_contains_nocase: String - feeTo_not_contains: String - feeTo_not_contains_nocase: String - feeTo_starts_with: String - feeTo_starts_with_nocase: String - feeTo_not_starts_with: String - feeTo_not_starts_with_nocase: String - feeTo_ends_with: String - feeTo_ends_with_nocase: String - feeTo_not_ends_with: String - feeTo_not_ends_with_nocase: String + needsComplete: Boolean + needsComplete_not: Boolean + needsComplete_in: [Boolean!] + needsComplete_not_in: [Boolean!] + feeTo: Bytes + feeTo_not: Bytes + feeTo_gt: Bytes + feeTo_lt: Bytes + feeTo_gte: Bytes + feeTo_lte: Bytes + feeTo_in: [Bytes!] + feeTo_not_in: [Bytes!] + feeTo_contains: Bytes + feeTo_not_contains: Bytes feeLiquidity: BigDecimal feeLiquidity_not: BigDecimal feeLiquidity_gt: BigDecimal @@ -268,42 +235,27 @@ enum Burn_orderBy { id transaction transaction__id - transaction__gasLimit - transaction__gasPrice - transaction__createdAtBlock - transaction__createdAtTimestamp + transaction__blockNumber + transaction__timestamp timestamp pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount liquidity sender amount0 @@ -311,507 +263,50 @@ enum Burn_orderBy { to logIndex amountUSD - complete + needsComplete feeTo feeLiquidity } scalar Bytes -type Factory { - """ Contract address """ - id: ID! - - """ Factory type """ - type: PairType! - - """ Volume USD """ - volumeUSD: BigDecimal! - - """ Volume Native """ - volumeNative: BigDecimal! - - """ Liquidity USD """ - liquidityUSD: BigDecimal! - - """ Liquidity NATIVE """ - liquidityNative: BigDecimal! - - """ Fees USD """ - feesUSD: BigDecimal! - - """ Fees NATIVE """ - feesNative: BigDecimal! - - """ Pair count """ - pairCount: BigInt! - - """ Transaction count """ - transactionCount: BigInt! - - """ Token count """ - tokenCount: BigInt! - - """ User count """ - userCount: BigInt! -} - -type FactoryDaySnapshot { - """ {factoryId}-day-{timestamp} """ - id: ID! - factory: Factory! - date: Int! - volumeUSD: BigDecimal! - volumeNative: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - transactionCount: BigInt! -} - -input FactoryDaySnapshot_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!] - factory: String - factory_not: String - factory_gt: String - factory_lt: String - factory_gte: String - factory_lte: String - factory_in: [String!] - factory_not_in: [String!] - factory_contains: String - factory_contains_nocase: String - factory_not_contains: String - factory_not_contains_nocase: String - factory_starts_with: String - factory_starts_with_nocase: String - factory_not_starts_with: String - factory_not_starts_with_nocase: String - factory_ends_with: String - factory_ends_with_nocase: String - factory_not_ends_with: String - factory_not_ends_with_nocase: String - factory_: Factory_filter - date: Int - date_not: Int - date_gt: Int - date_lt: Int - date_gte: Int - date_lte: Int - date_in: [Int!] - date_not_in: [Int!] - volumeUSD: BigDecimal - volumeUSD_not: BigDecimal - volumeUSD_gt: BigDecimal - volumeUSD_lt: BigDecimal - volumeUSD_gte: BigDecimal - volumeUSD_lte: BigDecimal - volumeUSD_in: [BigDecimal!] - volumeUSD_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [FactoryDaySnapshot_filter] - or: [FactoryDaySnapshot_filter] -} - -enum FactoryDaySnapshot_orderBy { - id - factory - factory__id - factory__type - factory__volumeUSD - factory__volumeNative - factory__liquidityUSD - factory__liquidityNative - factory__feesUSD - factory__feesNative - factory__pairCount - factory__transactionCount - factory__tokenCount - factory__userCount - date - volumeUSD - volumeNative - liquidityNative - liquidityUSD - feesNative - feesUSD - transactionCount -} - -type FactoryHourSnapshot { - """ {factoryId}-hour-{timestamp} """ - id: ID! - factory: Factory! - date: Int! - volumeUSD: BigDecimal! - volumeNative: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - transactionCount: BigInt! -} - -input FactoryHourSnapshot_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!] - factory: String - factory_not: String - factory_gt: String - factory_lt: String - factory_gte: String - factory_lte: String - factory_in: [String!] - factory_not_in: [String!] - factory_contains: String - factory_contains_nocase: String - factory_not_contains: String - factory_not_contains_nocase: String - factory_starts_with: String - factory_starts_with_nocase: String - factory_not_starts_with: String - factory_not_starts_with_nocase: String - factory_ends_with: String - factory_ends_with_nocase: String - factory_not_ends_with: String - factory_not_ends_with_nocase: String - factory_: Factory_filter - date: Int - date_not: Int - date_gt: Int - date_lt: Int - date_gte: Int - date_lte: Int - date_in: [Int!] - date_not_in: [Int!] - volumeUSD: BigDecimal - volumeUSD_not: BigDecimal - volumeUSD_gt: BigDecimal - volumeUSD_lt: BigDecimal - volumeUSD_gte: BigDecimal - volumeUSD_lte: BigDecimal - volumeUSD_in: [BigDecimal!] - volumeUSD_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [FactoryHourSnapshot_filter] - or: [FactoryHourSnapshot_filter] -} - -enum FactoryHourSnapshot_orderBy { - id - factory - factory__id - factory__type - factory__volumeUSD - factory__volumeNative - factory__liquidityUSD - factory__liquidityNative - factory__feesUSD - factory__feesNative - factory__pairCount - factory__transactionCount - factory__tokenCount - factory__userCount - date - volumeUSD - volumeNative - liquidityNative - liquidityUSD - feesNative - feesUSD - transactionCount -} - -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!] - type: PairType - type_not: PairType - type_in: [PairType!] - type_not_in: [PairType!] - volumeUSD: BigDecimal - volumeUSD_not: BigDecimal - volumeUSD_gt: BigDecimal - volumeUSD_lt: BigDecimal - volumeUSD_gte: BigDecimal - volumeUSD_lte: BigDecimal - volumeUSD_in: [BigDecimal!] - volumeUSD_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_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!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_not_in: [BigDecimal!] - pairCount: BigInt - pairCount_not: BigInt - pairCount_gt: BigInt - pairCount_lt: BigInt - pairCount_gte: BigInt - pairCount_lte: BigInt - pairCount_in: [BigInt!] - pairCount_not_in: [BigInt!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] - tokenCount: BigInt - tokenCount_not: BigInt - tokenCount_gt: BigInt - tokenCount_lt: BigInt - tokenCount_gte: BigInt - tokenCount_lte: BigInt - tokenCount_in: [BigInt!] - tokenCount_not_in: [BigInt!] - userCount: BigInt - userCount_not: BigInt - userCount_gt: BigInt - userCount_lt: BigInt - userCount_gte: BigInt - userCount_lte: BigInt - userCount_in: [BigInt!] - userCount_not_in: [BigInt!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Factory_filter] - or: [Factory_filter] -} - -enum Factory_orderBy { - id - type - volumeUSD - volumeNative - liquidityUSD - liquidityNative - feesUSD - feesNative - pairCount - transactionCount - tokenCount - userCount -} - "8 bytes signed integer\n" scalar Int8 type LiquidityPosition { - """pair.id:user.id""" - id: ID! - pair: Pair! + id: Bytes! user: User! - balance: BigInt! - createdAtBlock: BigInt! - createdAtTimestamp: BigInt! + pair: Pair! + liquidityTokenBalance: BigDecimal! } type LiquidityPositionSnapshot { - """ {lp.id}-{timestamp} """ - id: ID! + id: Bytes! liquidityPosition: LiquidityPosition! - - """ saved for fast historical lookups """ timestamp: Int! - - """ saved for fast historical lookups """ block: Int! - - """ reference to user """ user: User! - - """ reference to pair """ pair: Pair! - - """ snapshot of token0 price """ token0PriceUSD: BigDecimal! - - """ snapshot of token1 price """ token1PriceUSD: BigDecimal! - - """ snapshot of pair token0 reserves """ - reserve0: BigInt! - - """ snapshot of pair token1 reserves """ - reserve1: BigInt! - - """ snapshot of pair reserves in USD """ + reserve0: BigDecimal! + reserve1: BigDecimal! reserveUSD: BigDecimal! - - """ snapshot of pool token supply """ - liquidityTokenTotalSupply: BigInt! - - """ snapshot of users pool token balance """ - liquidityTokenBalance: BigInt! + liquidityTokenTotalSupply: BigDecimal! + liquidityTokenBalance: BigDecimal! } input LiquidityPositionSnapshot_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!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes liquidityPosition: String liquidityPosition_not: String liquidityPosition_gt: String @@ -907,22 +402,22 @@ input LiquidityPositionSnapshot_filter { token1PriceUSD_lte: BigDecimal token1PriceUSD_in: [BigDecimal!] token1PriceUSD_not_in: [BigDecimal!] - reserve0: BigInt - reserve0_not: BigInt - reserve0_gt: BigInt - reserve0_lt: BigInt - reserve0_gte: BigInt - reserve0_lte: BigInt - reserve0_in: [BigInt!] - reserve0_not_in: [BigInt!] - reserve1: BigInt - reserve1_not: BigInt - reserve1_gt: BigInt - reserve1_lt: BigInt - reserve1_gte: BigInt - reserve1_lte: BigInt - reserve1_in: [BigInt!] - reserve1_not_in: [BigInt!] + reserve0: BigDecimal + reserve0_not: BigDecimal + reserve0_gt: BigDecimal + reserve0_lt: BigDecimal + reserve0_gte: BigDecimal + reserve0_lte: BigDecimal + reserve0_in: [BigDecimal!] + reserve0_not_in: [BigDecimal!] + reserve1: BigDecimal + reserve1_not: BigDecimal + reserve1_gt: BigDecimal + reserve1_lt: BigDecimal + reserve1_gte: BigDecimal + reserve1_lte: BigDecimal + reserve1_in: [BigDecimal!] + reserve1_not_in: [BigDecimal!] reserveUSD: BigDecimal reserveUSD_not: BigDecimal reserveUSD_gt: BigDecimal @@ -931,22 +426,22 @@ input LiquidityPositionSnapshot_filter { reserveUSD_lte: BigDecimal reserveUSD_in: [BigDecimal!] reserveUSD_not_in: [BigDecimal!] - liquidityTokenTotalSupply: BigInt - liquidityTokenTotalSupply_not: BigInt - liquidityTokenTotalSupply_gt: BigInt - liquidityTokenTotalSupply_lt: BigInt - liquidityTokenTotalSupply_gte: BigInt - liquidityTokenTotalSupply_lte: BigInt - liquidityTokenTotalSupply_in: [BigInt!] - liquidityTokenTotalSupply_not_in: [BigInt!] - liquidityTokenBalance: BigInt - liquidityTokenBalance_not: BigInt - liquidityTokenBalance_gt: BigInt - liquidityTokenBalance_lt: BigInt - liquidityTokenBalance_gte: BigInt - liquidityTokenBalance_lte: BigInt - liquidityTokenBalance_in: [BigInt!] - liquidityTokenBalance_not_in: [BigInt!] + liquidityTokenTotalSupply: BigDecimal + liquidityTokenTotalSupply_not: BigDecimal + liquidityTokenTotalSupply_gt: BigDecimal + liquidityTokenTotalSupply_lt: BigDecimal + liquidityTokenTotalSupply_gte: BigDecimal + liquidityTokenTotalSupply_lte: BigDecimal + liquidityTokenTotalSupply_in: [BigDecimal!] + liquidityTokenTotalSupply_not_in: [BigDecimal!] + liquidityTokenBalance: BigDecimal + liquidityTokenBalance_not: BigDecimal + liquidityTokenBalance_gt: BigDecimal + liquidityTokenBalance_lt: BigDecimal + liquidityTokenBalance_gte: BigDecimal + liquidityTokenBalance_lte: BigDecimal + liquidityTokenBalance_in: [BigDecimal!] + liquidityTokenBalance_not_in: [BigDecimal!] """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -958,45 +453,30 @@ enum LiquidityPositionSnapshot_orderBy { id liquidityPosition liquidityPosition__id - liquidityPosition__balance - liquidityPosition__createdAtBlock - liquidityPosition__createdAtTimestamp + liquidityPosition__liquidityTokenBalance timestamp block user user__id - user__lpSnapshotsCount + user__usdSwapped pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount token0PriceUSD token1PriceUSD reserve0 @@ -1007,35 +487,16 @@ enum LiquidityPositionSnapshot_orderBy { } input LiquidityPosition_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!] - pair: String - pair_not: String - pair_gt: String - pair_lt: String - pair_gte: String - pair_lte: String - pair_in: [String!] - pair_not_in: [String!] - pair_contains: String - pair_contains_nocase: String - pair_not_contains: String - pair_not_contains_nocase: String - pair_starts_with: String - pair_starts_with_nocase: String - pair_not_starts_with: String - pair_not_starts_with_nocase: String - pair_ends_with: String - pair_ends_with_nocase: String - pair_not_ends_with: String - pair_not_ends_with_nocase: String - pair_: Pair_filter + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes user: String user_not: String user_gt: String @@ -1057,30 +518,35 @@ input LiquidityPosition_filter { user_not_ends_with: String user_not_ends_with_nocase: String user_: User_filter - balance: BigInt - balance_not: BigInt - balance_gt: BigInt - balance_lt: BigInt - balance_gte: BigInt - balance_lte: BigInt - balance_in: [BigInt!] - balance_not_in: [BigInt!] - createdAtBlock: BigInt - createdAtBlock_not: BigInt - createdAtBlock_gt: BigInt - createdAtBlock_lt: BigInt - createdAtBlock_gte: BigInt - createdAtBlock_lte: BigInt - createdAtBlock_in: [BigInt!] - createdAtBlock_not_in: [BigInt!] - createdAtTimestamp: BigInt - createdAtTimestamp_not: BigInt - createdAtTimestamp_gt: BigInt - createdAtTimestamp_lt: BigInt - createdAtTimestamp_gte: BigInt - createdAtTimestamp_lte: BigInt - createdAtTimestamp_in: [BigInt!] - createdAtTimestamp_not_in: [BigInt!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_filter + liquidityTokenBalance: BigDecimal + liquidityTokenBalance_not: BigDecimal + liquidityTokenBalance_gt: BigDecimal + liquidityTokenBalance_lt: BigDecimal + liquidityTokenBalance_gte: BigDecimal + liquidityTokenBalance_lte: BigDecimal + liquidityTokenBalance_in: [BigDecimal!] + liquidityTokenBalance_not_in: [BigDecimal!] """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -1090,52 +556,36 @@ input LiquidityPosition_filter { enum LiquidityPosition_orderBy { id + user + user__id + user__usdSwapped pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount - user - user__id - user__lpSnapshotsCount - balance - createdAtBlock - createdAtTimestamp + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount + liquidityTokenBalance } type Mint { - """ transaction.id:transaction.mints.length """ - id: ID! + id: Bytes! transaction: Transaction! timestamp: BigInt! pair: Pair! - to: String! + to: Bytes! liquidity: BigDecimal! sender: Bytes amount0: BigDecimal @@ -1147,14 +597,16 @@ type Mint { } 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!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes transaction: String transaction_not: String transaction_gt: String @@ -1205,26 +657,16 @@ input Mint_filter { pair_not_ends_with: String pair_not_ends_with_nocase: String pair_: Pair_filter - to: String - to_not: String - to_gt: String - to_lt: String - to_gte: String - to_lte: String - to_in: [String!] - to_not_in: [String!] - to_contains: String - to_contains_nocase: String - to_not_contains: String - to_not_contains_nocase: String - to_starts_with: String - to_starts_with_nocase: String - to_not_starts_with: String - to_not_starts_with_nocase: String - to_ends_with: String - to_ends_with_nocase: String - to_not_ends_with: String - to_not_ends_with_nocase: String + to: Bytes + to_not: Bytes + to_gt: Bytes + to_lt: Bytes + to_gte: Bytes + to_lte: Bytes + to_in: [Bytes!] + to_not_in: [Bytes!] + to_contains: Bytes + to_not_contains: Bytes liquidity: BigDecimal liquidity_not: BigDecimal liquidity_gt: BigDecimal @@ -1304,42 +746,27 @@ enum Mint_orderBy { id transaction transaction__id - transaction__gasLimit - transaction__gasPrice - transaction__createdAtBlock - transaction__createdAtTimestamp + transaction__blockNumber + transaction__timestamp timestamp pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount to liquidity sender @@ -1358,145 +785,262 @@ enum OrderDirection { } type Pair { - """ Pair address (contract address) """ - id: ID! - - """ Pair type """ - type: PairType! - - """ Swap fee """ - swapFee: BigInt! - - """ TWAP - time weighted average price """ - twapEnabled: Boolean! - - """ name of the pair, this combines symbol of both tokens, e.g. WETH/SUSHI - """ - name: String! - - """ First Token """ + id: Bytes! token0: Token! - - """ Second Token """ token1: Token! - - """ Which source this pair comes from, in this case it will always be 'LEGACY' - """ - source: String! - - """ Which block this pair was created on """ - createdAtBlock: BigInt! - - """ When this pair was created """ - createdAtTimestamp: BigInt! - - """ Liquidity of first token """ - reserve0: BigInt! - - """ Liquidity of second token """ - reserve1: BigInt! - - """ which block _k was saved """ - _cacheUpdatedAtBlock: BigInt! - - """ Liquidity of first token, this is only updated for the first transaction in a block - """ - _cache_reserve0: BigInt! - - """ Liquidity of second token, this is only updated for the first transaction in a block - """ - _cache_reserve1: BigInt! - - """ Price of the first token in this pair, this is only updated for the first transaction in a block - """ - _cache_token0Price: BigDecimal! - - """ Price of the second token in this pair, this is only updated for the first transaction in a block - """ - _cache_token1Price: BigDecimal! - - """ Liquidity, Total supply of all LP in this pool """ - liquidity: BigInt! - - """ USD liquidity""" - liquidityUSD: BigDecimal! - - """ Native Liquidity """ - liquidityNative: BigDecimal! - - """ Tracked Liquidity native """ - trackedLiquidityNative: BigDecimal! - - """ Price of the first token in this pair, not to be confused with TokenPrice entity - """ + reserve0: BigDecimal! + reserve1: BigDecimal! + totalSupply: BigDecimal! + reserveETH: BigDecimal! + reserveUSD: BigDecimal! + trackedReserveETH: BigDecimal! token0Price: BigDecimal! - - """ Price of the second token in this pair, not to be confused with TokenPrice entity - """ token1Price: BigDecimal! - volumeNative: BigDecimal! - volumeUSD: BigDecimal! volumeToken0: BigDecimal! volumeToken1: BigDecimal! - - """ Fee in Native """ - feesNative: BigDecimal! - - """ Fee in USD """ - feesUSD: BigDecimal! - - """ APR """ - apr: BigDecimal! - - """ When APR was last updated """ - aprUpdatedAtTimestamp: BigInt! - - """ Transaction count """ + volumeUSD: BigDecimal! + untrackedVolumeUSD: BigDecimal! txCount: BigInt! - - """ Liquidity Positions """ + createdAtTimestamp: BigInt! + createdAtBlockNumber: BigInt! + liquidityProviderCount: BigInt! + pairHourData(skip: Int = 0, first: Int = 100, orderBy: PairHourData_orderBy, orderDirection: OrderDirection, where: PairHourData_filter): [PairHourData!]! liquidityPositions(skip: Int = 0, first: Int = 100, orderBy: LiquidityPosition_orderBy, orderDirection: OrderDirection, where: LiquidityPosition_filter): [LiquidityPosition!]! - - """ Liquidity position snapshots """ liquidityPositionSnapshots(skip: Int = 0, first: Int = 100, orderBy: LiquidityPositionSnapshot_orderBy, orderDirection: OrderDirection, where: LiquidityPositionSnapshot_filter): [LiquidityPositionSnapshot!]! - - """ Pair Hour Snapshot """ - hourSnapshots(skip: Int = 0, first: Int = 100, orderBy: PairHourSnapshot_orderBy, orderDirection: OrderDirection, where: PairHourSnapshot_filter): [PairHourSnapshot!]! - - """ Pair Day Snapshot """ - daySnapshots(skip: Int = 0, first: Int = 100, orderBy: PairDaySnapshot_orderBy, orderDirection: OrderDirection, where: PairDaySnapshot_filter): [PairDaySnapshot!]! + mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! + burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! + swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! } -type PairDaySnapshot { - """ {pairId}-day-{timestamp} """ - id: ID! - pair: Pair! +type PairDayData { + id: Bytes! date: Int! + pairAddress: Bytes! + token0: Token! + token1: Token! + reserve0: BigDecimal! + reserve1: BigDecimal! + totalSupply: BigDecimal + reserveUSD: BigDecimal! + dailyVolumeToken0: BigDecimal! + dailyVolumeToken1: BigDecimal! + dailyVolumeUSD: BigDecimal! + dailyTxns: BigInt! +} + +input PairDayData_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + pairAddress: Bytes + pairAddress_not: Bytes + pairAddress_gt: Bytes + pairAddress_lt: Bytes + pairAddress_gte: Bytes + pairAddress_lte: Bytes + pairAddress_in: [Bytes!] + pairAddress_not_in: [Bytes!] + pairAddress_contains: Bytes + pairAddress_not_contains: Bytes + token0: String + token0_not: String + token0_gt: String + token0_lt: String + token0_gte: String + token0_lte: String + token0_in: [String!] + token0_not_in: [String!] + token0_contains: String + token0_contains_nocase: String + token0_not_contains: String + token0_not_contains_nocase: String + token0_starts_with: String + token0_starts_with_nocase: String + token0_not_starts_with: String + token0_not_starts_with_nocase: String + token0_ends_with: String + token0_ends_with_nocase: String + token0_not_ends_with: String + token0_not_ends_with_nocase: String + token0_: Token_filter + token1: String + token1_not: String + token1_gt: String + token1_lt: String + token1_gte: String + token1_lte: String + token1_in: [String!] + token1_not_in: [String!] + token1_contains: String + token1_contains_nocase: String + token1_not_contains: String + token1_not_contains_nocase: String + token1_starts_with: String + token1_starts_with_nocase: String + token1_not_starts_with: String + token1_not_starts_with_nocase: String + token1_ends_with: String + token1_ends_with_nocase: String + token1_not_ends_with: String + token1_not_ends_with_nocase: String + token1_: Token_filter + reserve0: BigDecimal + reserve0_not: BigDecimal + reserve0_gt: BigDecimal + reserve0_lt: BigDecimal + reserve0_gte: BigDecimal + reserve0_lte: BigDecimal + reserve0_in: [BigDecimal!] + reserve0_not_in: [BigDecimal!] + reserve1: BigDecimal + reserve1_not: BigDecimal + reserve1_gt: BigDecimal + reserve1_lt: BigDecimal + reserve1_gte: BigDecimal + reserve1_lte: BigDecimal + reserve1_in: [BigDecimal!] + reserve1_not_in: [BigDecimal!] + totalSupply: BigDecimal + totalSupply_not: BigDecimal + totalSupply_gt: BigDecimal + totalSupply_lt: BigDecimal + totalSupply_gte: BigDecimal + totalSupply_lte: BigDecimal + totalSupply_in: [BigDecimal!] + totalSupply_not_in: [BigDecimal!] + reserveUSD: BigDecimal + reserveUSD_not: BigDecimal + reserveUSD_gt: BigDecimal + reserveUSD_lt: BigDecimal + reserveUSD_gte: BigDecimal + reserveUSD_lte: BigDecimal + reserveUSD_in: [BigDecimal!] + reserveUSD_not_in: [BigDecimal!] + dailyVolumeToken0: BigDecimal + dailyVolumeToken0_not: BigDecimal + dailyVolumeToken0_gt: BigDecimal + dailyVolumeToken0_lt: BigDecimal + dailyVolumeToken0_gte: BigDecimal + dailyVolumeToken0_lte: BigDecimal + dailyVolumeToken0_in: [BigDecimal!] + dailyVolumeToken0_not_in: [BigDecimal!] + dailyVolumeToken1: BigDecimal + dailyVolumeToken1_not: BigDecimal + dailyVolumeToken1_gt: BigDecimal + dailyVolumeToken1_lt: BigDecimal + dailyVolumeToken1_gte: BigDecimal + dailyVolumeToken1_lte: BigDecimal + dailyVolumeToken1_in: [BigDecimal!] + dailyVolumeToken1_not_in: [BigDecimal!] + dailyVolumeUSD: BigDecimal + dailyVolumeUSD_not: BigDecimal + dailyVolumeUSD_gt: BigDecimal + dailyVolumeUSD_lt: BigDecimal + dailyVolumeUSD_gte: BigDecimal + dailyVolumeUSD_lte: BigDecimal + dailyVolumeUSD_in: [BigDecimal!] + dailyVolumeUSD_not_in: [BigDecimal!] + dailyTxns: BigInt + dailyTxns_not: BigInt + dailyTxns_gt: BigInt + dailyTxns_lt: BigInt + dailyTxns_gte: BigInt + dailyTxns_lte: BigInt + dailyTxns_in: [BigInt!] + dailyTxns_not_in: [BigInt!] - """ Used to calculate apr """ - cumulativeVolumeUSD: BigDecimal! - volumeUSD: BigDecimal! - volumeNative: BigDecimal! - volumeToken0: BigDecimal! - volumeToken1: BigDecimal! - liquidity: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - apr: BigDecimal! - transactionCount: BigInt! + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [PairDayData_filter] + or: [PairDayData_filter] } -input PairDaySnapshot_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!] +enum PairDayData_orderBy { + id + date + pairAddress + token0 + token0__id + token0__symbol + token0__name + token0__decimals + token0__totalSupply + token0__tradeVolume + token0__tradeVolumeUSD + token0__untrackedVolumeUSD + token0__txCount + token0__totalLiquidity + token0__derivedETH + token1 + token1__id + token1__symbol + token1__name + token1__decimals + token1__totalSupply + token1__tradeVolume + token1__tradeVolumeUSD + token1__untrackedVolumeUSD + token1__txCount + token1__totalLiquidity + token1__derivedETH + reserve0 + reserve1 + totalSupply + reserveUSD + dailyVolumeToken0 + dailyVolumeToken1 + dailyVolumeUSD + dailyTxns +} + +type PairHourData { + id: Bytes! + hourStartUnix: Int! + pair: Pair! + reserve0: BigDecimal! + reserve1: BigDecimal! + totalSupply: BigDecimal + reserveUSD: BigDecimal! + hourlyVolumeToken0: BigDecimal! + hourlyVolumeToken1: BigDecimal! + hourlyVolumeUSD: BigDecimal! + hourlyTxns: BigInt! +} + +input PairHourData_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + hourStartUnix: Int + hourStartUnix_not: Int + hourStartUnix_gt: Int + hourStartUnix_lt: Int + hourStartUnix_gte: Int + hourStartUnix_lte: Int + hourStartUnix_in: [Int!] + hourStartUnix_not_in: [Int!] pair: String pair_not: String pair_gt: String @@ -1518,424 +1062,119 @@ input PairDaySnapshot_filter { pair_not_ends_with: String pair_not_ends_with_nocase: String pair_: Pair_filter - date: Int - date_not: Int - date_gt: Int - date_lt: Int - date_gte: Int - date_lte: Int - date_in: [Int!] - date_not_in: [Int!] - cumulativeVolumeUSD: BigDecimal - cumulativeVolumeUSD_not: BigDecimal - cumulativeVolumeUSD_gt: BigDecimal - cumulativeVolumeUSD_lt: BigDecimal - cumulativeVolumeUSD_gte: BigDecimal - cumulativeVolumeUSD_lte: BigDecimal - cumulativeVolumeUSD_in: [BigDecimal!] - cumulativeVolumeUSD_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!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] - liquidity: BigDecimal - liquidity_not: BigDecimal - liquidity_gt: BigDecimal - liquidity_lt: BigDecimal - liquidity_gte: BigDecimal - liquidity_lte: BigDecimal - liquidity_in: [BigDecimal!] - liquidity_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - apr: BigDecimal - apr_not: BigDecimal - apr_gt: BigDecimal - apr_lt: BigDecimal - apr_gte: BigDecimal - apr_lte: BigDecimal - apr_in: [BigDecimal!] - apr_not_in: [BigDecimal!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] + reserve0: BigDecimal + reserve0_not: BigDecimal + reserve0_gt: BigDecimal + reserve0_lt: BigDecimal + reserve0_gte: BigDecimal + reserve0_lte: BigDecimal + reserve0_in: [BigDecimal!] + reserve0_not_in: [BigDecimal!] + reserve1: BigDecimal + reserve1_not: BigDecimal + reserve1_gt: BigDecimal + reserve1_lt: BigDecimal + reserve1_gte: BigDecimal + reserve1_lte: BigDecimal + reserve1_in: [BigDecimal!] + reserve1_not_in: [BigDecimal!] + totalSupply: BigDecimal + totalSupply_not: BigDecimal + totalSupply_gt: BigDecimal + totalSupply_lt: BigDecimal + totalSupply_gte: BigDecimal + totalSupply_lte: BigDecimal + totalSupply_in: [BigDecimal!] + totalSupply_not_in: [BigDecimal!] + reserveUSD: BigDecimal + reserveUSD_not: BigDecimal + reserveUSD_gt: BigDecimal + reserveUSD_lt: BigDecimal + reserveUSD_gte: BigDecimal + reserveUSD_lte: BigDecimal + reserveUSD_in: [BigDecimal!] + reserveUSD_not_in: [BigDecimal!] + hourlyVolumeToken0: BigDecimal + hourlyVolumeToken0_not: BigDecimal + hourlyVolumeToken0_gt: BigDecimal + hourlyVolumeToken0_lt: BigDecimal + hourlyVolumeToken0_gte: BigDecimal + hourlyVolumeToken0_lte: BigDecimal + hourlyVolumeToken0_in: [BigDecimal!] + hourlyVolumeToken0_not_in: [BigDecimal!] + hourlyVolumeToken1: BigDecimal + hourlyVolumeToken1_not: BigDecimal + hourlyVolumeToken1_gt: BigDecimal + hourlyVolumeToken1_lt: BigDecimal + hourlyVolumeToken1_gte: BigDecimal + hourlyVolumeToken1_lte: BigDecimal + hourlyVolumeToken1_in: [BigDecimal!] + hourlyVolumeToken1_not_in: [BigDecimal!] + hourlyVolumeUSD: BigDecimal + hourlyVolumeUSD_not: BigDecimal + hourlyVolumeUSD_gt: BigDecimal + hourlyVolumeUSD_lt: BigDecimal + hourlyVolumeUSD_gte: BigDecimal + hourlyVolumeUSD_lte: BigDecimal + hourlyVolumeUSD_in: [BigDecimal!] + hourlyVolumeUSD_not_in: [BigDecimal!] + hourlyTxns: BigInt + hourlyTxns_not: BigInt + hourlyTxns_gt: BigInt + hourlyTxns_lt: BigInt + hourlyTxns_gte: BigInt + hourlyTxns_lte: BigInt + hourlyTxns_in: [BigInt!] + hourlyTxns_not_in: [BigInt!] """Filter for the block changed event.""" _change_block: BlockChangedFilter - and: [PairDaySnapshot_filter] - or: [PairDaySnapshot_filter] + and: [PairHourData_filter] + or: [PairHourData_filter] } -enum PairDaySnapshot_orderBy { +enum PairHourData_orderBy { id + hourStartUnix pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount - date - cumulativeVolumeUSD - volumeUSD - volumeNative - volumeToken0 - volumeToken1 - liquidity - liquidityNative - liquidityUSD - feesNative - feesUSD - apr - transactionCount -} - -type PairHourSnapshot { - """ {pairId}-hour-{timestamp} """ - id: ID! - pair: Pair! - date: Int! - - """ Used to calculate apr """ - cumulativeVolumeUSD: BigDecimal! - volumeUSD: BigDecimal! - volumeNative: BigDecimal! - volumeToken0: BigDecimal! - volumeToken1: BigDecimal! - liquidity: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - apr: BigDecimal! - transactionCount: BigInt! -} - -input PairHourSnapshot_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!] - pair: String - pair_not: String - pair_gt: String - pair_lt: String - pair_gte: String - pair_lte: String - pair_in: [String!] - pair_not_in: [String!] - pair_contains: String - pair_contains_nocase: String - pair_not_contains: String - pair_not_contains_nocase: String - pair_starts_with: String - pair_starts_with_nocase: String - pair_not_starts_with: String - pair_not_starts_with_nocase: String - pair_ends_with: String - pair_ends_with_nocase: String - pair_not_ends_with: String - pair_not_ends_with_nocase: String - pair_: Pair_filter - date: Int - date_not: Int - date_gt: Int - date_lt: Int - date_gte: Int - date_lte: Int - date_in: [Int!] - date_not_in: [Int!] - cumulativeVolumeUSD: BigDecimal - cumulativeVolumeUSD_not: BigDecimal - cumulativeVolumeUSD_gt: BigDecimal - cumulativeVolumeUSD_lt: BigDecimal - cumulativeVolumeUSD_gte: BigDecimal - cumulativeVolumeUSD_lte: BigDecimal - cumulativeVolumeUSD_in: [BigDecimal!] - cumulativeVolumeUSD_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!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] - liquidity: BigDecimal - liquidity_not: BigDecimal - liquidity_gt: BigDecimal - liquidity_lt: BigDecimal - liquidity_gte: BigDecimal - liquidity_lte: BigDecimal - liquidity_in: [BigDecimal!] - liquidity_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - apr: BigDecimal - apr_not: BigDecimal - apr_gt: BigDecimal - apr_lt: BigDecimal - apr_gte: BigDecimal - apr_lte: BigDecimal - apr_in: [BigDecimal!] - apr_not_in: [BigDecimal!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [PairHourSnapshot_filter] - or: [PairHourSnapshot_filter] -} - -enum PairHourSnapshot_orderBy { - id - pair - pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp - pair__reserve0 - pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative - pair__token0Price - pair__token1Price - pair__volumeNative - pair__volumeUSD - pair__volumeToken0 - pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp - pair__txCount - date - cumulativeVolumeUSD - volumeUSD - volumeNative - volumeToken0 - volumeToken1 - liquidity - liquidityNative - liquidityUSD - feesNative - feesUSD - apr - transactionCount -} - -enum PairType { - CONSTANT_PRODUCT_POOL + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount + reserve0 + reserve1 + totalSupply + reserveUSD + hourlyVolumeToken0 + hourlyVolumeToken1 + hourlyVolumeUSD + hourlyTxns } input Pair_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!] - type: PairType - type_not: PairType - type_in: [PairType!] - type_not_in: [PairType!] - swapFee: BigInt - swapFee_not: BigInt - swapFee_gt: BigInt - swapFee_lt: BigInt - swapFee_gte: BigInt - swapFee_lte: BigInt - swapFee_in: [BigInt!] - swapFee_not_in: [BigInt!] - twapEnabled: Boolean - twapEnabled_not: Boolean - twapEnabled_in: [Boolean!] - twapEnabled_not_in: [Boolean!] - name: String - name_not: String - name_gt: String - name_lt: String - name_gte: String - name_lte: String - name_in: [String!] - name_not_in: [String!] - name_contains: String - name_contains_nocase: String - name_not_contains: String - name_not_contains_nocase: String - name_starts_with: String - name_starts_with_nocase: String - name_not_starts_with: String - name_not_starts_with_nocase: String - name_ends_with: String - name_ends_with_nocase: String - name_not_ends_with: String - name_not_ends_with_nocase: String + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes token0: String token0_not: String token0_gt: String @@ -1978,130 +1217,54 @@ input Pair_filter { token1_not_ends_with: String token1_not_ends_with_nocase: String token1_: Token_filter - source: String - source_not: String - source_gt: String - source_lt: String - source_gte: String - source_lte: String - source_in: [String!] - source_not_in: [String!] - source_contains: String - source_contains_nocase: String - source_not_contains: String - source_not_contains_nocase: String - source_starts_with: String - source_starts_with_nocase: String - source_not_starts_with: String - source_not_starts_with_nocase: String - source_ends_with: String - source_ends_with_nocase: String - source_not_ends_with: String - source_not_ends_with_nocase: String - createdAtBlock: BigInt - createdAtBlock_not: BigInt - createdAtBlock_gt: BigInt - createdAtBlock_lt: BigInt - createdAtBlock_gte: BigInt - createdAtBlock_lte: BigInt - createdAtBlock_in: [BigInt!] - createdAtBlock_not_in: [BigInt!] - createdAtTimestamp: BigInt - createdAtTimestamp_not: BigInt - createdAtTimestamp_gt: BigInt - createdAtTimestamp_lt: BigInt - createdAtTimestamp_gte: BigInt - createdAtTimestamp_lte: BigInt - createdAtTimestamp_in: [BigInt!] - createdAtTimestamp_not_in: [BigInt!] - reserve0: BigInt - reserve0_not: BigInt - reserve0_gt: BigInt - reserve0_lt: BigInt - reserve0_gte: BigInt - reserve0_lte: BigInt - reserve0_in: [BigInt!] - reserve0_not_in: [BigInt!] - reserve1: BigInt - reserve1_not: BigInt - reserve1_gt: BigInt - reserve1_lt: BigInt - reserve1_gte: BigInt - reserve1_lte: BigInt - reserve1_in: [BigInt!] - reserve1_not_in: [BigInt!] - _cacheUpdatedAtBlock: BigInt - _cacheUpdatedAtBlock_not: BigInt - _cacheUpdatedAtBlock_gt: BigInt - _cacheUpdatedAtBlock_lt: BigInt - _cacheUpdatedAtBlock_gte: BigInt - _cacheUpdatedAtBlock_lte: BigInt - _cacheUpdatedAtBlock_in: [BigInt!] - _cacheUpdatedAtBlock_not_in: [BigInt!] - _cache_reserve0: BigInt - _cache_reserve0_not: BigInt - _cache_reserve0_gt: BigInt - _cache_reserve0_lt: BigInt - _cache_reserve0_gte: BigInt - _cache_reserve0_lte: BigInt - _cache_reserve0_in: [BigInt!] - _cache_reserve0_not_in: [BigInt!] - _cache_reserve1: BigInt - _cache_reserve1_not: BigInt - _cache_reserve1_gt: BigInt - _cache_reserve1_lt: BigInt - _cache_reserve1_gte: BigInt - _cache_reserve1_lte: BigInt - _cache_reserve1_in: [BigInt!] - _cache_reserve1_not_in: [BigInt!] - _cache_token0Price: BigDecimal - _cache_token0Price_not: BigDecimal - _cache_token0Price_gt: BigDecimal - _cache_token0Price_lt: BigDecimal - _cache_token0Price_gte: BigDecimal - _cache_token0Price_lte: BigDecimal - _cache_token0Price_in: [BigDecimal!] - _cache_token0Price_not_in: [BigDecimal!] - _cache_token1Price: BigDecimal - _cache_token1Price_not: BigDecimal - _cache_token1Price_gt: BigDecimal - _cache_token1Price_lt: BigDecimal - _cache_token1Price_gte: BigDecimal - _cache_token1Price_lte: BigDecimal - _cache_token1Price_in: [BigDecimal!] - _cache_token1Price_not_in: [BigDecimal!] - liquidity: BigInt - liquidity_not: BigInt - liquidity_gt: BigInt - liquidity_lt: BigInt - liquidity_gte: BigInt - liquidity_lte: BigInt - liquidity_in: [BigInt!] - liquidity_not_in: [BigInt!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - trackedLiquidityNative: BigDecimal - trackedLiquidityNative_not: BigDecimal - trackedLiquidityNative_gt: BigDecimal - trackedLiquidityNative_lt: BigDecimal - trackedLiquidityNative_gte: BigDecimal - trackedLiquidityNative_lte: BigDecimal - trackedLiquidityNative_in: [BigDecimal!] - trackedLiquidityNative_not_in: [BigDecimal!] + reserve0: BigDecimal + reserve0_not: BigDecimal + reserve0_gt: BigDecimal + reserve0_lt: BigDecimal + reserve0_gte: BigDecimal + reserve0_lte: BigDecimal + reserve0_in: [BigDecimal!] + reserve0_not_in: [BigDecimal!] + reserve1: BigDecimal + reserve1_not: BigDecimal + reserve1_gt: BigDecimal + reserve1_lt: BigDecimal + reserve1_gte: BigDecimal + reserve1_lte: BigDecimal + reserve1_in: [BigDecimal!] + reserve1_not_in: [BigDecimal!] + totalSupply: BigDecimal + totalSupply_not: BigDecimal + totalSupply_gt: BigDecimal + totalSupply_lt: BigDecimal + totalSupply_gte: BigDecimal + totalSupply_lte: BigDecimal + totalSupply_in: [BigDecimal!] + totalSupply_not_in: [BigDecimal!] + reserveETH: BigDecimal + reserveETH_not: BigDecimal + reserveETH_gt: BigDecimal + reserveETH_lt: BigDecimal + reserveETH_gte: BigDecimal + reserveETH_lte: BigDecimal + reserveETH_in: [BigDecimal!] + reserveETH_not_in: [BigDecimal!] + reserveUSD: BigDecimal + reserveUSD_not: BigDecimal + reserveUSD_gt: BigDecimal + reserveUSD_lt: BigDecimal + reserveUSD_gte: BigDecimal + reserveUSD_lte: BigDecimal + reserveUSD_in: [BigDecimal!] + reserveUSD_not_in: [BigDecimal!] + trackedReserveETH: BigDecimal + trackedReserveETH_not: BigDecimal + trackedReserveETH_gt: BigDecimal + trackedReserveETH_lt: BigDecimal + trackedReserveETH_gte: BigDecimal + trackedReserveETH_lte: BigDecimal + trackedReserveETH_in: [BigDecimal!] + trackedReserveETH_not_in: [BigDecimal!] token0Price: BigDecimal token0Price_not: BigDecimal token0Price_gt: BigDecimal @@ -2118,22 +1281,6 @@ input Pair_filter { token1Price_lte: BigDecimal token1Price_in: [BigDecimal!] token1Price_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] volumeToken0: BigDecimal volumeToken0_not: BigDecimal volumeToken0_gt: BigDecimal @@ -2150,38 +1297,22 @@ input Pair_filter { volumeToken1_lte: BigDecimal volumeToken1_in: [BigDecimal!] volumeToken1_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - apr: BigDecimal - apr_not: BigDecimal - apr_gt: BigDecimal - apr_lt: BigDecimal - apr_gte: BigDecimal - apr_lte: BigDecimal - apr_in: [BigDecimal!] - apr_not_in: [BigDecimal!] - aprUpdatedAtTimestamp: BigInt - aprUpdatedAtTimestamp_not: BigInt - aprUpdatedAtTimestamp_gt: BigInt - aprUpdatedAtTimestamp_lt: BigInt - aprUpdatedAtTimestamp_gte: BigInt - aprUpdatedAtTimestamp_lte: BigInt - aprUpdatedAtTimestamp_in: [BigInt!] - aprUpdatedAtTimestamp_not_in: [BigInt!] + 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!] txCount: BigInt txCount_not: BigInt txCount_gt: BigInt @@ -2190,10 +1321,36 @@ input Pair_filter { txCount_lte: BigInt txCount_in: [BigInt!] txCount_not_in: [BigInt!] + 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!] + pairHourData_: PairHourData_filter liquidityPositions_: LiquidityPosition_filter liquidityPositionSnapshots_: LiquidityPositionSnapshot_filter - hourSnapshots_: PairHourSnapshot_filter - daySnapshots_: PairDaySnapshot_filter + mints_: Mint_filter + burns_: Burn_filter + swaps_: Swap_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -2203,81 +1360,56 @@ input Pair_filter { enum Pair_orderBy { id - type - swapFee - twapEnabled - name token0 token0__id token0__symbol - token0__symbolSuccess token0__name - token0__nameSuccess token0__decimals - token0__decimalsSuccess - token0__liquidity - token0__liquidityNative - token0__liquidityUSD - token0__volume - token0__volumeNative - token0__volumeUSD - token0__feesNative - token0__feesUSD + token0__totalSupply + token0__tradeVolume + token0__tradeVolumeUSD + token0__untrackedVolumeUSD token0__txCount - token0__pairCount - token0__whitelistedPairCount + token0__totalLiquidity + token0__derivedETH token1 token1__id token1__symbol - token1__symbolSuccess token1__name - token1__nameSuccess token1__decimals - token1__decimalsSuccess - token1__liquidity - token1__liquidityNative - token1__liquidityUSD - token1__volume - token1__volumeNative - token1__volumeUSD - token1__feesNative - token1__feesUSD + token1__totalSupply + token1__tradeVolume + token1__tradeVolumeUSD + token1__untrackedVolumeUSD token1__txCount - token1__pairCount - token1__whitelistedPairCount - source - createdAtBlock - createdAtTimestamp + token1__totalLiquidity + token1__derivedETH reserve0 reserve1 - _cacheUpdatedAtBlock - _cache_reserve0 - _cache_reserve1 - _cache_token0Price - _cache_token1Price - liquidity - liquidityUSD - liquidityNative - trackedLiquidityNative + totalSupply + reserveETH + reserveUSD + trackedReserveETH token0Price token1Price - volumeNative - volumeUSD volumeToken0 volumeToken1 - feesNative - feesUSD - apr - aprUpdatedAtTimestamp + volumeUSD + untrackedVolumeUSD txCount + createdAtTimestamp + createdAtBlockNumber + liquidityProviderCount + pairHourData liquidityPositions liquidityPositionSnapshots - hourSnapshots - daySnapshots + mints + burns + swaps } type Query { - version( + uniswapFactory( id: ID! """ @@ -2289,13 +1421,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _Version - versions( + ): UniswapFactory + uniswapFactories( skip: Int = 0 first: Int = 100 - orderBy: _Version_orderBy + orderBy: UniswapFactory_orderBy orderDirection: OrderDirection - where: _Version_filter + where: UniswapFactory_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2306,8 +1438,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_Version!]! - factory( + ): [UniswapFactory!]! + token( id: ID! """ @@ -2319,13 +1451,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Factory - factories( + ): Token + tokens( skip: Int = 0 first: Int = 100 - orderBy: Factory_orderBy + orderBy: Token_orderBy orderDirection: OrderDirection - where: Factory_filter + where: Token_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2336,8 +1468,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Factory!]! - bundle( + ): [Token!]! + pair( id: ID! """ @@ -2349,13 +1481,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Bundle - bundles( + ): Pair + pairs( skip: Int = 0 first: Int = 100 - orderBy: Bundle_orderBy + orderBy: Pair_orderBy orderDirection: OrderDirection - where: Bundle_filter + where: Pair_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2366,8 +1498,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Bundle!]! - token( + ): [Pair!]! + user( id: ID! """ @@ -2379,13 +1511,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Token - tokens( + ): User + users( skip: Int = 0 first: Int = 100 - orderBy: Token_orderBy + orderBy: User_orderBy orderDirection: OrderDirection - where: Token_filter + where: User_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2396,8 +1528,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Token!]! - tokenPrice( + ): [User!]! + liquidityPosition( id: ID! """ @@ -2409,13 +1541,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenPrice - tokenPrices( + ): LiquidityPosition + liquidityPositions( skip: Int = 0 first: Int = 100 - orderBy: TokenPrice_orderBy + orderBy: LiquidityPosition_orderBy orderDirection: OrderDirection - where: TokenPrice_filter + where: LiquidityPosition_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2426,8 +1558,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenPrice!]! - tokenPair( + ): [LiquidityPosition!]! + liquidityPositionSnapshot( id: ID! """ @@ -2439,13 +1571,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _TokenPair - tokenPairs( + ): LiquidityPositionSnapshot + liquidityPositionSnapshots( skip: Int = 0 first: Int = 100 - orderBy: _TokenPair_orderBy + orderBy: LiquidityPositionSnapshot_orderBy orderDirection: OrderDirection - where: _TokenPair_filter + where: LiquidityPositionSnapshot_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2456,8 +1588,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_TokenPair!]! - whitelistedTokenPair( + ): [LiquidityPositionSnapshot!]! + transaction( id: ID! """ @@ -2469,13 +1601,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _WhitelistedTokenPair - whitelistedTokenPairs( + ): Transaction + transactions( skip: Int = 0 first: Int = 100 - orderBy: _WhitelistedTokenPair_orderBy + orderBy: Transaction_orderBy orderDirection: OrderDirection - where: _WhitelistedTokenPair_filter + where: Transaction_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2486,8 +1618,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_WhitelistedTokenPair!]! - pair( + ): [Transaction!]! + mint( id: ID! """ @@ -2499,13 +1631,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Pair - pairs( + ): Mint + mints( skip: Int = 0 first: Int = 100 - orderBy: Pair_orderBy + orderBy: Mint_orderBy orderDirection: OrderDirection - where: Pair_filter + where: Mint_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2516,8 +1648,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Pair!]! - user( + ): [Mint!]! + burn( id: ID! """ @@ -2529,13 +1661,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): User - users( + ): Burn + burns( skip: Int = 0 first: Int = 100 - orderBy: User_orderBy + orderBy: Burn_orderBy orderDirection: OrderDirection - where: User_filter + where: Burn_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2546,8 +1678,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [User!]! - liquidityPosition( + ): [Burn!]! + swap( id: ID! """ @@ -2559,13 +1691,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): LiquidityPosition - liquidityPositions( + ): Swap + swaps( skip: Int = 0 first: Int = 100 - orderBy: LiquidityPosition_orderBy + orderBy: Swap_orderBy orderDirection: OrderDirection - where: LiquidityPosition_filter + where: Swap_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2576,8 +1708,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [LiquidityPosition!]! - mint( + ): [Swap!]! + bundle( id: ID! """ @@ -2589,13 +1721,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Mint - mints( + ): Bundle + bundles( skip: Int = 0 first: Int = 100 - orderBy: Mint_orderBy + orderBy: Bundle_orderBy orderDirection: OrderDirection - where: Mint_filter + where: Bundle_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2606,8 +1738,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Mint!]! - burn( + ): [Bundle!]! + uniswapDayData( id: ID! """ @@ -2619,13 +1751,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Burn - burns( + ): UniswapDayData + uniswapDayDatas( skip: Int = 0 first: Int = 100 - orderBy: Burn_orderBy + orderBy: UniswapDayData_orderBy orderDirection: OrderDirection - where: Burn_filter + where: UniswapDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2636,8 +1768,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Burn!]! - swap( + ): [UniswapDayData!]! + pairHourData( id: ID! """ @@ -2649,13 +1781,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Swap - swaps( + ): PairHourData + pairHourDatas( skip: Int = 0 first: Int = 100 - orderBy: Swap_orderBy + orderBy: PairHourData_orderBy orderDirection: OrderDirection - where: Swap_filter + where: PairHourData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2666,8 +1798,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Swap!]! - transaction( + ): [PairHourData!]! + pairDayData( id: ID! """ @@ -2679,13 +1811,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Transaction - transactions( + ): PairDayData + pairDayDatas( skip: Int = 0 first: Int = 100 - orderBy: Transaction_orderBy + orderBy: PairDayData_orderBy orderDirection: OrderDirection - where: Transaction_filter + where: PairDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2696,8 +1828,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Transaction!]! - liquidityPositionSnapshot( + ): [PairDayData!]! + tokenDayData( id: ID! """ @@ -2709,26 +1841,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): LiquidityPositionSnapshot - liquidityPositionSnapshots( + ): TokenDayData + tokenDayDatas( skip: Int = 0 first: Int = 100 - orderBy: LiquidityPositionSnapshot_orderBy + orderBy: TokenDayData_orderBy orderDirection: OrderDirection - where: LiquidityPositionSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [LiquidityPositionSnapshot!]! - pairHourSnapshot( - id: ID! + where: TokenDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2739,25 +1858,14 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): PairHourSnapshot - pairHourSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: PairHourSnapshot_orderBy - orderDirection: OrderDirection - where: PairHourSnapshot_filter + ): [TokenDayData!]! - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PairHourSnapshot!]! - pairDaySnapshot( +type Subscription { + uniswapFactory( id: ID! """ @@ -2769,13 +1877,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): PairDaySnapshot - pairDaySnapshots( + ): UniswapFactory + uniswapFactories( skip: Int = 0 first: Int = 100 - orderBy: PairDaySnapshot_orderBy + orderBy: UniswapFactory_orderBy orderDirection: OrderDirection - where: PairDaySnapshot_filter + where: UniswapFactory_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2786,8 +1894,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [PairDaySnapshot!]! - tokenHourSnapshot( + ): [UniswapFactory!]! + token( id: ID! """ @@ -2799,13 +1907,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenHourSnapshot - tokenHourSnapshots( + ): Token + tokens( skip: Int = 0 first: Int = 100 - orderBy: TokenHourSnapshot_orderBy + orderBy: Token_orderBy orderDirection: OrderDirection - where: TokenHourSnapshot_filter + where: Token_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2816,8 +1924,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenHourSnapshot!]! - tokenDaySnapshot( + ): [Token!]! + pair( id: ID! """ @@ -2829,13 +1937,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenDaySnapshot - tokenDaySnapshots( + ): Pair + pairs( skip: Int = 0 first: Int = 100 - orderBy: TokenDaySnapshot_orderBy + orderBy: Pair_orderBy orderDirection: OrderDirection - where: TokenDaySnapshot_filter + where: Pair_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2846,8 +1954,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenDaySnapshot!]! - factoryHourSnapshot( + ): [Pair!]! + user( id: ID! """ @@ -2859,13 +1967,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): FactoryHourSnapshot - factoryHourSnapshots( + ): User + users( skip: Int = 0 first: Int = 100 - orderBy: FactoryHourSnapshot_orderBy + orderBy: User_orderBy orderDirection: OrderDirection - where: FactoryHourSnapshot_filter + where: User_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2876,8 +1984,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [FactoryHourSnapshot!]! - factoryDaySnapshot( + ): [User!]! + liquidityPosition( id: ID! """ @@ -2889,13 +1997,13 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): FactoryDaySnapshot - factoryDaySnapshots( + ): LiquidityPosition + liquidityPositions( skip: Int = 0 first: Int = 100 - orderBy: FactoryDaySnapshot_orderBy + orderBy: LiquidityPosition_orderBy orderDirection: OrderDirection - where: FactoryDaySnapshot_filter + where: LiquidityPosition_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2906,14 +2014,8 @@ type Query { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [FactoryDaySnapshot!]! - - """Access to subgraph metadata""" - _meta(block: Block_height): _Meta_ -} - -type Subscription { - version( + ): [LiquidityPosition!]! + liquidityPositionSnapshot( id: ID! """ @@ -2925,13 +2027,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _Version - versions( + ): LiquidityPositionSnapshot + liquidityPositionSnapshots( skip: Int = 0 first: Int = 100 - orderBy: _Version_orderBy + orderBy: LiquidityPositionSnapshot_orderBy orderDirection: OrderDirection - where: _Version_filter + where: LiquidityPositionSnapshot_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2942,8 +2044,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_Version!]! - factory( + ): [LiquidityPositionSnapshot!]! + transaction( id: ID! """ @@ -2955,13 +2057,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Factory - factories( + ): Transaction + transactions( skip: Int = 0 first: Int = 100 - orderBy: Factory_orderBy + orderBy: Transaction_orderBy orderDirection: OrderDirection - where: Factory_filter + where: Transaction_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -2972,8 +2074,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Factory!]! - bundle( + ): [Transaction!]! + mint( id: ID! """ @@ -2985,13 +2087,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Bundle - bundles( + ): Mint + mints( skip: Int = 0 first: Int = 100 - orderBy: Bundle_orderBy + orderBy: Mint_orderBy orderDirection: OrderDirection - where: Bundle_filter + where: Mint_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3002,8 +2104,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Bundle!]! - token( + ): [Mint!]! + burn( id: ID! """ @@ -3015,13 +2117,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Token - tokens( + ): Burn + burns( skip: Int = 0 first: Int = 100 - orderBy: Token_orderBy + orderBy: Burn_orderBy orderDirection: OrderDirection - where: Token_filter + where: Burn_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3032,8 +2134,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Token!]! - tokenPrice( + ): [Burn!]! + swap( id: ID! """ @@ -3045,13 +2147,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenPrice - tokenPrices( + ): Swap + swaps( skip: Int = 0 first: Int = 100 - orderBy: TokenPrice_orderBy + orderBy: Swap_orderBy orderDirection: OrderDirection - where: TokenPrice_filter + where: Swap_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3062,8 +2164,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenPrice!]! - tokenPair( + ): [Swap!]! + bundle( id: ID! """ @@ -3075,13 +2177,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _TokenPair - tokenPairs( + ): Bundle + bundles( skip: Int = 0 first: Int = 100 - orderBy: _TokenPair_orderBy + orderBy: Bundle_orderBy orderDirection: OrderDirection - where: _TokenPair_filter + where: Bundle_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3092,8 +2194,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_TokenPair!]! - whitelistedTokenPair( + ): [Bundle!]! + uniswapDayData( id: ID! """ @@ -3105,13 +2207,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): _WhitelistedTokenPair - whitelistedTokenPairs( + ): UniswapDayData + uniswapDayDatas( skip: Int = 0 first: Int = 100 - orderBy: _WhitelistedTokenPair_orderBy + orderBy: UniswapDayData_orderBy orderDirection: OrderDirection - where: _WhitelistedTokenPair_filter + where: UniswapDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3122,8 +2224,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [_WhitelistedTokenPair!]! - pair( + ): [UniswapDayData!]! + pairHourData( id: ID! """ @@ -3135,13 +2237,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): Pair - pairs( + ): PairHourData + pairHourDatas( skip: Int = 0 first: Int = 100 - orderBy: Pair_orderBy + orderBy: PairHourData_orderBy orderDirection: OrderDirection - where: Pair_filter + where: PairHourData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3152,8 +2254,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [Pair!]! - user( + ): [PairHourData!]! + pairDayData( id: ID! """ @@ -3165,13 +2267,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): User - users( + ): PairDayData + pairDayDatas( skip: Int = 0 first: Int = 100 - orderBy: User_orderBy + orderBy: PairDayData_orderBy orderDirection: OrderDirection - where: User_filter + where: PairDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3182,8 +2284,8 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [User!]! - liquidityPosition( + ): [PairDayData!]! + tokenDayData( id: ID! """ @@ -3195,13 +2297,13 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): LiquidityPosition - liquidityPositions( + ): TokenDayData + tokenDayDatas( skip: Int = 0 first: Int = 100 - orderBy: LiquidityPosition_orderBy + orderBy: TokenDayData_orderBy orderDirection: OrderDirection - where: LiquidityPosition_filter + where: TokenDayData_filter """ The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. @@ -3212,618 +2314,205 @@ type Subscription { Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. """ subgraphError: _SubgraphErrorPolicy_! = deny - ): [LiquidityPosition!]! - mint( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height + ): [TokenDayData!]! - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Mint - mints( - skip: Int = 0 - first: Int = 100 - orderBy: Mint_orderBy - orderDirection: OrderDirection - where: Mint_filter + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height +type Swap { + id: Bytes! + transaction: Transaction! + timestamp: BigInt! + pair: Pair! + sender: Bytes! + from: Bytes! + amount0In: BigDecimal! + amount1In: BigDecimal! + amount0Out: BigDecimal! + amount1Out: BigDecimal! + to: Bytes! + logIndex: BigInt + amountUSD: BigDecimal! +} - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Mint!]! - burn( - id: ID! +input Swap_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + 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_contains: String + transaction_contains_nocase: String + transaction_not_contains: String + transaction_not_contains_nocase: 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_: 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!] + pair: String + pair_not: String + pair_gt: String + pair_lt: String + pair_gte: String + pair_lte: String + pair_in: [String!] + pair_not_in: [String!] + pair_contains: String + pair_contains_nocase: String + pair_not_contains: String + pair_not_contains_nocase: String + pair_starts_with: String + pair_starts_with_nocase: String + pair_not_starts_with: String + pair_not_starts_with_nocase: String + pair_ends_with: String + pair_ends_with_nocase: String + pair_not_ends_with: String + pair_not_ends_with_nocase: String + pair_: Pair_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 + from: Bytes + from_not: Bytes + from_gt: Bytes + from_lt: Bytes + from_gte: Bytes + from_lte: Bytes + from_in: [Bytes!] + from_not_in: [Bytes!] + from_contains: Bytes + from_not_contains: Bytes + amount0In: BigDecimal + amount0In_not: BigDecimal + amount0In_gt: BigDecimal + amount0In_lt: BigDecimal + amount0In_gte: BigDecimal + amount0In_lte: BigDecimal + amount0In_in: [BigDecimal!] + amount0In_not_in: [BigDecimal!] + amount1In: BigDecimal + amount1In_not: BigDecimal + amount1In_gt: BigDecimal + amount1In_lt: BigDecimal + amount1In_gte: BigDecimal + amount1In_lte: BigDecimal + amount1In_in: [BigDecimal!] + amount1In_not_in: [BigDecimal!] + amount0Out: BigDecimal + amount0Out_not: BigDecimal + amount0Out_gt: BigDecimal + amount0Out_lt: BigDecimal + amount0Out_gte: BigDecimal + amount0Out_lte: BigDecimal + amount0Out_in: [BigDecimal!] + amount0Out_not_in: [BigDecimal!] + amount1Out: BigDecimal + amount1Out_not: BigDecimal + amount1Out_gt: BigDecimal + amount1Out_lt: BigDecimal + amount1Out_gte: BigDecimal + amount1Out_lte: BigDecimal + amount1Out_in: [BigDecimal!] + amount1Out_not_in: [BigDecimal!] + to: Bytes + to_not: Bytes + to_gt: Bytes + to_lt: Bytes + to_gte: Bytes + to_lte: Bytes + to_in: [Bytes!] + to_not_in: [Bytes!] + to_contains: Bytes + to_not_contains: Bytes + logIndex: BigInt + logIndex_not: BigInt + logIndex_gt: BigInt + logIndex_lt: BigInt + logIndex_gte: BigInt + logIndex_lte: BigInt + logIndex_in: [BigInt!] + logIndex_not_in: [BigInt!] + amountUSD: BigDecimal + amountUSD_not: BigDecimal + amountUSD_gt: BigDecimal + amountUSD_lt: BigDecimal + amountUSD_gte: BigDecimal + amountUSD_lte: BigDecimal + amountUSD_in: [BigDecimal!] + amountUSD_not_in: [BigDecimal!] - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Burn - burns( - skip: Int = 0 - first: Int = 100 - orderBy: Burn_orderBy - orderDirection: OrderDirection - where: Burn_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Burn!]! - swap( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Swap - swaps( - skip: Int = 0 - first: Int = 100 - orderBy: Swap_orderBy - orderDirection: OrderDirection - where: Swap_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Swap!]! - transaction( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): Transaction - transactions( - skip: Int = 0 - first: Int = 100 - orderBy: Transaction_orderBy - orderDirection: OrderDirection - where: Transaction_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [Transaction!]! - liquidityPositionSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): LiquidityPositionSnapshot - liquidityPositionSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: LiquidityPositionSnapshot_orderBy - orderDirection: OrderDirection - where: LiquidityPositionSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [LiquidityPositionSnapshot!]! - pairHourSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PairHourSnapshot - pairHourSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: PairHourSnapshot_orderBy - orderDirection: OrderDirection - where: PairHourSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PairHourSnapshot!]! - pairDaySnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): PairDaySnapshot - pairDaySnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: PairDaySnapshot_orderBy - orderDirection: OrderDirection - where: PairDaySnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [PairDaySnapshot!]! - tokenHourSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenHourSnapshot - tokenHourSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: TokenHourSnapshot_orderBy - orderDirection: OrderDirection - where: TokenHourSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenHourSnapshot!]! - tokenDaySnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): TokenDaySnapshot - tokenDaySnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: TokenDaySnapshot_orderBy - orderDirection: OrderDirection - where: TokenDaySnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [TokenDaySnapshot!]! - factoryHourSnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): FactoryHourSnapshot - factoryHourSnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: FactoryHourSnapshot_orderBy - orderDirection: OrderDirection - where: FactoryHourSnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [FactoryHourSnapshot!]! - factoryDaySnapshot( - id: ID! - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): FactoryDaySnapshot - factoryDaySnapshots( - skip: Int = 0 - first: Int = 100 - orderBy: FactoryDaySnapshot_orderBy - orderDirection: OrderDirection - where: FactoryDaySnapshot_filter - - """ - The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. - """ - block: Block_height - - """ - Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. - """ - subgraphError: _SubgraphErrorPolicy_! = deny - ): [FactoryDaySnapshot!]! - - """Access to subgraph metadata""" - _meta(block: Block_height): _Meta_ -} - -type Swap { - id: ID! - transaction: Transaction! - timestamp: BigInt! - pair: Pair! - sender: String! - tokenIn: Token! - tokenOut: Token! - amountIn: BigDecimal! - amountOut: BigDecimal! - to: String! - logIndex: BigInt - amountUSD: BigDecimal! -} - -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_contains: String - transaction_contains_nocase: String - transaction_not_contains: String - transaction_not_contains_nocase: 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_: 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!] - pair: String - pair_not: String - pair_gt: String - pair_lt: String - pair_gte: String - pair_lte: String - pair_in: [String!] - pair_not_in: [String!] - pair_contains: String - pair_contains_nocase: String - pair_not_contains: String - pair_not_contains_nocase: String - pair_starts_with: String - pair_starts_with_nocase: String - pair_not_starts_with: String - pair_not_starts_with_nocase: String - pair_ends_with: String - pair_ends_with_nocase: String - pair_not_ends_with: String - pair_not_ends_with_nocase: String - pair_: Pair_filter - sender: String - sender_not: String - sender_gt: String - sender_lt: String - sender_gte: String - sender_lte: String - sender_in: [String!] - sender_not_in: [String!] - sender_contains: String - sender_contains_nocase: String - sender_not_contains: String - sender_not_contains_nocase: String - sender_starts_with: String - sender_starts_with_nocase: String - sender_not_starts_with: String - sender_not_starts_with_nocase: String - sender_ends_with: String - sender_ends_with_nocase: String - sender_not_ends_with: String - sender_not_ends_with_nocase: String - tokenIn: String - tokenIn_not: String - tokenIn_gt: String - tokenIn_lt: String - tokenIn_gte: String - tokenIn_lte: String - tokenIn_in: [String!] - tokenIn_not_in: [String!] - tokenIn_contains: String - tokenIn_contains_nocase: String - tokenIn_not_contains: String - tokenIn_not_contains_nocase: String - tokenIn_starts_with: String - tokenIn_starts_with_nocase: String - tokenIn_not_starts_with: String - tokenIn_not_starts_with_nocase: String - tokenIn_ends_with: String - tokenIn_ends_with_nocase: String - tokenIn_not_ends_with: String - tokenIn_not_ends_with_nocase: String - tokenIn_: Token_filter - tokenOut: String - tokenOut_not: String - tokenOut_gt: String - tokenOut_lt: String - tokenOut_gte: String - tokenOut_lte: String - tokenOut_in: [String!] - tokenOut_not_in: [String!] - tokenOut_contains: String - tokenOut_contains_nocase: String - tokenOut_not_contains: String - tokenOut_not_contains_nocase: String - tokenOut_starts_with: String - tokenOut_starts_with_nocase: String - tokenOut_not_starts_with: String - tokenOut_not_starts_with_nocase: String - tokenOut_ends_with: String - tokenOut_ends_with_nocase: String - tokenOut_not_ends_with: String - tokenOut_not_ends_with_nocase: String - tokenOut_: Token_filter - amountIn: BigDecimal - amountIn_not: BigDecimal - amountIn_gt: BigDecimal - amountIn_lt: BigDecimal - amountIn_gte: BigDecimal - amountIn_lte: BigDecimal - amountIn_in: [BigDecimal!] - amountIn_not_in: [BigDecimal!] - amountOut: BigDecimal - amountOut_not: BigDecimal - amountOut_gt: BigDecimal - amountOut_lt: BigDecimal - amountOut_gte: BigDecimal - amountOut_lte: BigDecimal - amountOut_in: [BigDecimal!] - amountOut_not_in: [BigDecimal!] - to: String - to_not: String - to_gt: String - to_lt: String - to_gte: String - to_lte: String - to_in: [String!] - to_not_in: [String!] - to_contains: String - to_contains_nocase: String - to_not_contains: String - to_not_contains_nocase: String - to_starts_with: String - to_starts_with_nocase: String - to_not_starts_with: String - to_not_starts_with_nocase: String - to_ends_with: String - to_ends_with_nocase: String - to_not_ends_with: String - to_not_ends_with_nocase: String - logIndex: BigInt - logIndex_not: BigInt - logIndex_gt: BigInt - logIndex_lt: BigInt - logIndex_gte: BigInt - logIndex_lte: BigInt - logIndex_in: [BigInt!] - logIndex_not_in: [BigInt!] - amountUSD: BigDecimal - amountUSD_not: BigDecimal - amountUSD_gt: BigDecimal - amountUSD_lt: BigDecimal - amountUSD_gte: BigDecimal - amountUSD_lte: BigDecimal - amountUSD_in: [BigDecimal!] - amountUSD_not_in: [BigDecimal!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [Swap_filter] - or: [Swap_filter] -} + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Swap_filter] + or: [Swap_filter] +} enum Swap_orderBy { id transaction transaction__id - transaction__gasLimit - transaction__gasPrice - transaction__createdAtBlock - transaction__createdAtTimestamp + transaction__blockNumber + transaction__timestamp timestamp pair pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp pair__reserve0 pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative + pair__totalSupply + pair__reserveETH + pair__reserveUSD + pair__trackedReserveETH pair__token0Price pair__token1Price - pair__volumeNative - pair__volumeUSD pair__volumeToken0 pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp + pair__volumeUSD + pair__untrackedVolumeUSD pair__txCount + pair__createdAtTimestamp + pair__createdAtBlockNumber + pair__liquidityProviderCount sender - tokenIn - tokenIn__id - tokenIn__symbol - tokenIn__symbolSuccess - tokenIn__name - tokenIn__nameSuccess - tokenIn__decimals - tokenIn__decimalsSuccess - tokenIn__liquidity - tokenIn__liquidityNative - tokenIn__liquidityUSD - tokenIn__volume - tokenIn__volumeNative - tokenIn__volumeUSD - tokenIn__feesNative - tokenIn__feesUSD - tokenIn__txCount - tokenIn__pairCount - tokenIn__whitelistedPairCount - tokenOut - tokenOut__id - tokenOut__symbol - tokenOut__symbolSuccess - tokenOut__name - tokenOut__nameSuccess - tokenOut__decimals - tokenOut__decimalsSuccess - tokenOut__liquidity - tokenOut__liquidityNative - tokenOut__liquidityUSD - tokenOut__volume - tokenOut__volumeNative - tokenOut__volumeUSD - tokenOut__feesNative - tokenOut__feesUSD - tokenOut__txCount - tokenOut__pairCount - tokenOut__whitelistedPairCount - amountIn - amountOut + from + amount0In + amount1In + amount0Out + amount1Out to logIndex amountUSD @@ -3833,283 +2522,49 @@ enum Swap_orderBy { scalar Timestamp type Token { - """ Token address """ - id: ID! - - """ Token Price """ - price: TokenPrice! - - """ Symbol of the token """ + id: Bytes! symbol: String! - - """ if symbol was successfully retrieved """ - symbolSuccess: Boolean! - - """ Name of the token """ name: String! - - """ if name was successfully retrieved """ - nameSuccess: Boolean! - - """ Decimals of the token """ decimals: BigInt! - - """ if decimals were successfully retrieved """ - decimalsSuccess: Boolean! - - """ Liquidity """ - liquidity: BigInt! - - """ Liquidity in native """ - liquidityNative: BigDecimal! - - """ Liquidity in USD """ - liquidityUSD: BigDecimal! - - """ Volume """ - volume: BigDecimal! - - """ Volume in native """ - volumeNative: BigDecimal! - - """ Volume in USD """ - volumeUSD: BigDecimal! - - """ Fee in USD """ - feesNative: BigDecimal! - - """ Volume in USD """ - feesUSD: BigDecimal! - - """ Count of all the transactions """ + totalSupply: BigInt! + tradeVolume: BigDecimal! + tradeVolumeUSD: BigDecimal! + untrackedVolumeUSD: BigDecimal! txCount: BigInt! - - """ Count of all the pairs """ - pairCount: BigInt! - - """ Count of all the whitelisted pairs """ - whitelistedPairCount: BigInt! - - """ All pairs where this token is involved in """ - pairs(skip: Int = 0, first: Int = 100, orderBy: _TokenPair_orderBy, orderDirection: OrderDirection, where: _TokenPair_filter): [_TokenPair!]! - - """ All whitelisted pairs where this token is involved in """ - whitelistedPairs(skip: Int = 0, first: Int = 100, orderBy: _WhitelistedTokenPair_orderBy, orderDirection: OrderDirection, where: _WhitelistedTokenPair_filter): [_WhitelistedTokenPair!]! -} - -type TokenDaySnapshot { - """ {tokenId}-day-{timestamp} """ - id: ID! - date: Int! - token: Token! - liquidity: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - volume: BigDecimal! - volumeNative: BigDecimal! - volumeUSD: BigDecimal! - priceNative: BigDecimal! - priceUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - transactionCount: BigInt! -} - -input TokenDaySnapshot_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_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - liquidity: BigDecimal - liquidity_not: BigDecimal - liquidity_gt: BigDecimal - liquidity_lt: BigDecimal - liquidity_gte: BigDecimal - liquidity_lte: BigDecimal - liquidity_in: [BigDecimal!] - liquidity_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - volume: BigDecimal - volume_not: BigDecimal - volume_gt: BigDecimal - volume_lt: BigDecimal - volume_gte: BigDecimal - volume_lte: BigDecimal - volume_in: [BigDecimal!] - volume_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] - priceNative: BigDecimal - priceNative_not: BigDecimal - priceNative_gt: BigDecimal - priceNative_lt: BigDecimal - priceNative_gte: BigDecimal - priceNative_lte: BigDecimal - priceNative_in: [BigDecimal!] - priceNative_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!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TokenDaySnapshot_filter] - or: [TokenDaySnapshot_filter] -} - -enum TokenDaySnapshot_orderBy { - id - date - token - token__id - token__symbol - token__symbolSuccess - token__name - token__nameSuccess - token__decimals - token__decimalsSuccess - token__liquidity - token__liquidityNative - token__liquidityUSD - token__volume - token__volumeNative - token__volumeUSD - token__feesNative - token__feesUSD - token__txCount - token__pairCount - token__whitelistedPairCount - liquidity - liquidityNative - liquidityUSD - volume - volumeNative - volumeUSD - priceNative - priceUSD - feesNative - feesUSD - transactionCount + totalLiquidity: BigDecimal! + derivedETH: BigDecimal! + tokenDayData(skip: Int = 0, first: Int = 100, orderBy: TokenDayData_orderBy, orderDirection: OrderDirection, where: TokenDayData_filter): [TokenDayData!]! + pairDayDataBase(skip: Int = 0, first: Int = 100, orderBy: PairDayData_orderBy, orderDirection: OrderDirection, where: PairDayData_filter): [PairDayData!]! + pairDayDataQuote(skip: Int = 0, first: Int = 100, orderBy: PairDayData_orderBy, orderDirection: OrderDirection, where: PairDayData_filter): [PairDayData!]! + pairBase(skip: Int = 0, first: Int = 100, orderBy: Pair_orderBy, orderDirection: OrderDirection, where: Pair_filter): [Pair!]! + pairQuote(skip: Int = 0, first: Int = 100, orderBy: Pair_orderBy, orderDirection: OrderDirection, where: Pair_filter): [Pair!]! } -type TokenHourSnapshot { - """ {tokenId}-hour-{timestamp} """ - id: ID! +type TokenDayData { + id: Bytes! date: Int! token: Token! - liquidity: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - volume: BigDecimal! - volumeNative: BigDecimal! - volumeUSD: BigDecimal! - priceNative: BigDecimal! + dailyVolumeToken: BigDecimal! + dailyVolumeETH: BigDecimal! + dailyVolumeUSD: BigDecimal! + dailyTxns: BigInt! + totalLiquidityToken: BigDecimal! + totalLiquidityETH: BigDecimal! + totalLiquidityUSD: BigDecimal! priceUSD: BigDecimal! - feesNative: BigDecimal! - feesUSD: BigDecimal! - transactionCount: BigInt! } -input TokenHourSnapshot_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!] +input TokenDayData_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes date: Int date_not: Int date_gt: Int @@ -4139,62 +2594,62 @@ input TokenHourSnapshot_filter { token_not_ends_with: String token_not_ends_with_nocase: String token_: Token_filter - liquidity: BigDecimal - liquidity_not: BigDecimal - liquidity_gt: BigDecimal - liquidity_lt: BigDecimal - liquidity_gte: BigDecimal - liquidity_lte: BigDecimal - liquidity_in: [BigDecimal!] - liquidity_not_in: [BigDecimal!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - volume: BigDecimal - volume_not: BigDecimal - volume_gt: BigDecimal - volume_lt: BigDecimal - volume_gte: BigDecimal - volume_lte: BigDecimal - volume_in: [BigDecimal!] - volume_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] - priceNative: BigDecimal - priceNative_not: BigDecimal - priceNative_gt: BigDecimal - priceNative_lt: BigDecimal - priceNative_gte: BigDecimal - priceNative_lte: BigDecimal - priceNative_in: [BigDecimal!] - priceNative_not_in: [BigDecimal!] + dailyVolumeToken: BigDecimal + dailyVolumeToken_not: BigDecimal + dailyVolumeToken_gt: BigDecimal + dailyVolumeToken_lt: BigDecimal + dailyVolumeToken_gte: BigDecimal + dailyVolumeToken_lte: BigDecimal + dailyVolumeToken_in: [BigDecimal!] + dailyVolumeToken_not_in: [BigDecimal!] + dailyVolumeETH: BigDecimal + dailyVolumeETH_not: BigDecimal + dailyVolumeETH_gt: BigDecimal + dailyVolumeETH_lt: BigDecimal + dailyVolumeETH_gte: BigDecimal + dailyVolumeETH_lte: BigDecimal + dailyVolumeETH_in: [BigDecimal!] + dailyVolumeETH_not_in: [BigDecimal!] + dailyVolumeUSD: BigDecimal + dailyVolumeUSD_not: BigDecimal + dailyVolumeUSD_gt: BigDecimal + dailyVolumeUSD_lt: BigDecimal + dailyVolumeUSD_gte: BigDecimal + dailyVolumeUSD_lte: BigDecimal + dailyVolumeUSD_in: [BigDecimal!] + dailyVolumeUSD_not_in: [BigDecimal!] + dailyTxns: BigInt + dailyTxns_not: BigInt + dailyTxns_gt: BigInt + dailyTxns_lt: BigInt + dailyTxns_gte: BigInt + dailyTxns_lte: BigInt + dailyTxns_in: [BigInt!] + dailyTxns_not_in: [BigInt!] + totalLiquidityToken: BigDecimal + totalLiquidityToken_not: BigDecimal + totalLiquidityToken_gt: BigDecimal + totalLiquidityToken_lt: BigDecimal + totalLiquidityToken_gte: BigDecimal + totalLiquidityToken_lte: BigDecimal + totalLiquidityToken_in: [BigDecimal!] + totalLiquidityToken_not_in: [BigDecimal!] + totalLiquidityETH: BigDecimal + totalLiquidityETH_not: BigDecimal + totalLiquidityETH_gt: BigDecimal + totalLiquidityETH_lt: BigDecimal + totalLiquidityETH_gte: BigDecimal + totalLiquidityETH_lte: BigDecimal + totalLiquidityETH_in: [BigDecimal!] + totalLiquidityETH_not_in: [BigDecimal!] + totalLiquidityUSD: BigDecimal + totalLiquidityUSD_not: BigDecimal + totalLiquidityUSD_gt: BigDecimal + totalLiquidityUSD_lt: BigDecimal + totalLiquidityUSD_gte: BigDecimal + totalLiquidityUSD_lte: BigDecimal + totalLiquidityUSD_in: [BigDecimal!] + totalLiquidityUSD_not_in: [BigDecimal!] priceUSD: BigDecimal priceUSD_not: BigDecimal priceUSD_gt: BigDecimal @@ -4203,294 +2658,49 @@ input TokenHourSnapshot_filter { priceUSD_lte: BigDecimal priceUSD_in: [BigDecimal!] priceUSD_not_in: [BigDecimal!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] - transactionCount: BigInt - transactionCount_not: BigInt - transactionCount_gt: BigInt - transactionCount_lt: BigInt - transactionCount_gte: BigInt - transactionCount_lte: BigInt - transactionCount_in: [BigInt!] - transactionCount_not_in: [BigInt!] """Filter for the block changed event.""" _change_block: BlockChangedFilter - and: [TokenHourSnapshot_filter] - or: [TokenHourSnapshot_filter] + and: [TokenDayData_filter] + or: [TokenDayData_filter] } -enum TokenHourSnapshot_orderBy { +enum TokenDayData_orderBy { id date token token__id token__symbol - token__symbolSuccess token__name - token__nameSuccess token__decimals - token__decimalsSuccess - token__liquidity - token__liquidityNative - token__liquidityUSD - token__volume - token__volumeNative - token__volumeUSD - token__feesNative - token__feesUSD + token__totalSupply + token__tradeVolume + token__tradeVolumeUSD + token__untrackedVolumeUSD token__txCount - token__pairCount - token__whitelistedPairCount - liquidity - liquidityNative - liquidityUSD - volume - volumeNative - volumeUSD - priceNative + token__totalLiquidity + token__derivedETH + dailyVolumeToken + dailyVolumeETH + dailyVolumeUSD + dailyTxns + totalLiquidityToken + totalLiquidityETH + totalLiquidityUSD priceUSD - feesNative - feesUSD - transactionCount -} - -type TokenPrice { - """ same as token entity id, address of token """ - id: ID! - - """ Token """ - token: Token! - - """ derived native, this is useful for calculating price. (derivedNative * bundle.nativePrice = USD price) - """ - derivedNative: BigDecimal! - - """ price in USD. NOTE: this will not always be up to date, it only updates when onSync event is emitted, bundle.nativePrice could have changed. - """ - lastUsdPrice: BigDecimal! - - """ Which token this price is based on """ - pricedOffToken: Token - - """ Which pair this price is based on """ - pricedOffPair: Pair -} - -input TokenPrice_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!] - token: String - token_not: String - token_gt: String - token_lt: String - token_gte: String - token_lte: String - token_in: [String!] - token_not_in: [String!] - token_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - derivedNative: BigDecimal - derivedNative_not: BigDecimal - derivedNative_gt: BigDecimal - derivedNative_lt: BigDecimal - derivedNative_gte: BigDecimal - derivedNative_lte: BigDecimal - derivedNative_in: [BigDecimal!] - derivedNative_not_in: [BigDecimal!] - lastUsdPrice: BigDecimal - lastUsdPrice_not: BigDecimal - lastUsdPrice_gt: BigDecimal - lastUsdPrice_lt: BigDecimal - lastUsdPrice_gte: BigDecimal - lastUsdPrice_lte: BigDecimal - lastUsdPrice_in: [BigDecimal!] - lastUsdPrice_not_in: [BigDecimal!] - pricedOffToken: String - pricedOffToken_not: String - pricedOffToken_gt: String - pricedOffToken_lt: String - pricedOffToken_gte: String - pricedOffToken_lte: String - pricedOffToken_in: [String!] - pricedOffToken_not_in: [String!] - pricedOffToken_contains: String - pricedOffToken_contains_nocase: String - pricedOffToken_not_contains: String - pricedOffToken_not_contains_nocase: String - pricedOffToken_starts_with: String - pricedOffToken_starts_with_nocase: String - pricedOffToken_not_starts_with: String - pricedOffToken_not_starts_with_nocase: String - pricedOffToken_ends_with: String - pricedOffToken_ends_with_nocase: String - pricedOffToken_not_ends_with: String - pricedOffToken_not_ends_with_nocase: String - pricedOffToken_: Token_filter - pricedOffPair: String - pricedOffPair_not: String - pricedOffPair_gt: String - pricedOffPair_lt: String - pricedOffPair_gte: String - pricedOffPair_lte: String - pricedOffPair_in: [String!] - pricedOffPair_not_in: [String!] - pricedOffPair_contains: String - pricedOffPair_contains_nocase: String - pricedOffPair_not_contains: String - pricedOffPair_not_contains_nocase: String - pricedOffPair_starts_with: String - pricedOffPair_starts_with_nocase: String - pricedOffPair_not_starts_with: String - pricedOffPair_not_starts_with_nocase: String - pricedOffPair_ends_with: String - pricedOffPair_ends_with_nocase: String - pricedOffPair_not_ends_with: String - pricedOffPair_not_ends_with_nocase: String - pricedOffPair_: Pair_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [TokenPrice_filter] - or: [TokenPrice_filter] -} - -enum TokenPrice_orderBy { - id - token - token__id - token__symbol - token__symbolSuccess - token__name - token__nameSuccess - token__decimals - token__decimalsSuccess - token__liquidity - token__liquidityNative - token__liquidityUSD - token__volume - token__volumeNative - token__volumeUSD - token__feesNative - token__feesUSD - token__txCount - token__pairCount - token__whitelistedPairCount - derivedNative - lastUsdPrice - pricedOffToken - pricedOffToken__id - pricedOffToken__symbol - pricedOffToken__symbolSuccess - pricedOffToken__name - pricedOffToken__nameSuccess - pricedOffToken__decimals - pricedOffToken__decimalsSuccess - pricedOffToken__liquidity - pricedOffToken__liquidityNative - pricedOffToken__liquidityUSD - pricedOffToken__volume - pricedOffToken__volumeNative - pricedOffToken__volumeUSD - pricedOffToken__feesNative - pricedOffToken__feesUSD - pricedOffToken__txCount - pricedOffToken__pairCount - pricedOffToken__whitelistedPairCount - pricedOffPair - pricedOffPair__id - pricedOffPair__type - pricedOffPair__swapFee - pricedOffPair__twapEnabled - pricedOffPair__name - pricedOffPair__source - pricedOffPair__createdAtBlock - pricedOffPair__createdAtTimestamp - pricedOffPair__reserve0 - pricedOffPair__reserve1 - pricedOffPair___cacheUpdatedAtBlock - pricedOffPair___cache_reserve0 - pricedOffPair___cache_reserve1 - pricedOffPair___cache_token0Price - pricedOffPair___cache_token1Price - pricedOffPair__liquidity - pricedOffPair__liquidityUSD - pricedOffPair__liquidityNative - pricedOffPair__trackedLiquidityNative - pricedOffPair__token0Price - pricedOffPair__token1Price - pricedOffPair__volumeNative - pricedOffPair__volumeUSD - pricedOffPair__volumeToken0 - pricedOffPair__volumeToken1 - pricedOffPair__feesNative - pricedOffPair__feesUSD - pricedOffPair__apr - pricedOffPair__aprUpdatedAtTimestamp - pricedOffPair__txCount } 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!] - price: String - price_not: String - price_gt: String - price_lt: String - price_gte: String - price_lte: String - price_in: [String!] - price_not_in: [String!] - price_contains: String - price_contains_nocase: String - price_not_contains: String - price_not_contains_nocase: String - price_starts_with: String - price_starts_with_nocase: String - price_not_starts_with: String - price_not_starts_with_nocase: String - price_ends_with: String - price_ends_with_nocase: String - price_not_ends_with: String - price_not_ends_with_nocase: String - price_: TokenPrice_filter + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes symbol: String symbol_not: String symbol_gt: String @@ -4511,10 +2721,6 @@ input Token_filter { symbol_ends_with_nocase: String symbol_not_ends_with: String symbol_not_ends_with_nocase: String - symbolSuccess: Boolean - symbolSuccess_not: Boolean - symbolSuccess_in: [Boolean!] - symbolSuccess_not_in: [Boolean!] name: String name_not: String name_gt: String @@ -4535,10 +2741,6 @@ input Token_filter { name_ends_with_nocase: String name_not_ends_with: String name_not_ends_with_nocase: String - nameSuccess: Boolean - nameSuccess_not: Boolean - nameSuccess_in: [Boolean!] - nameSuccess_not_in: [Boolean!] decimals: BigInt decimals_not: BigInt decimals_gt: BigInt @@ -4547,74 +2749,38 @@ input Token_filter { decimals_lte: BigInt decimals_in: [BigInt!] decimals_not_in: [BigInt!] - decimalsSuccess: Boolean - decimalsSuccess_not: Boolean - decimalsSuccess_in: [Boolean!] - decimalsSuccess_not_in: [Boolean!] - liquidity: BigInt - liquidity_not: BigInt - liquidity_gt: BigInt - liquidity_lt: BigInt - liquidity_gte: BigInt - liquidity_lte: BigInt - liquidity_in: [BigInt!] - liquidity_not_in: [BigInt!] - liquidityNative: BigDecimal - liquidityNative_not: BigDecimal - liquidityNative_gt: BigDecimal - liquidityNative_lt: BigDecimal - liquidityNative_gte: BigDecimal - liquidityNative_lte: BigDecimal - liquidityNative_in: [BigDecimal!] - liquidityNative_not_in: [BigDecimal!] - liquidityUSD: BigDecimal - liquidityUSD_not: BigDecimal - liquidityUSD_gt: BigDecimal - liquidityUSD_lt: BigDecimal - liquidityUSD_gte: BigDecimal - liquidityUSD_lte: BigDecimal - liquidityUSD_in: [BigDecimal!] - liquidityUSD_not_in: [BigDecimal!] - volume: BigDecimal - volume_not: BigDecimal - volume_gt: BigDecimal - volume_lt: BigDecimal - volume_gte: BigDecimal - volume_lte: BigDecimal - volume_in: [BigDecimal!] - volume_not_in: [BigDecimal!] - volumeNative: BigDecimal - volumeNative_not: BigDecimal - volumeNative_gt: BigDecimal - volumeNative_lt: BigDecimal - volumeNative_gte: BigDecimal - volumeNative_lte: BigDecimal - volumeNative_in: [BigDecimal!] - volumeNative_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!] - feesNative: BigDecimal - feesNative_not: BigDecimal - feesNative_gt: BigDecimal - feesNative_lt: BigDecimal - feesNative_gte: BigDecimal - feesNative_lte: BigDecimal - feesNative_in: [BigDecimal!] - feesNative_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!] + totalSupply: BigInt + totalSupply_not: BigInt + totalSupply_gt: BigInt + totalSupply_lt: BigInt + totalSupply_gte: BigInt + totalSupply_lte: BigInt + totalSupply_in: [BigInt!] + totalSupply_not_in: [BigInt!] + tradeVolume: BigDecimal + tradeVolume_not: BigDecimal + tradeVolume_gt: BigDecimal + tradeVolume_lt: BigDecimal + tradeVolume_gte: BigDecimal + tradeVolume_lte: BigDecimal + tradeVolume_in: [BigDecimal!] + tradeVolume_not_in: [BigDecimal!] + tradeVolumeUSD: BigDecimal + tradeVolumeUSD_not: BigDecimal + tradeVolumeUSD_gt: BigDecimal + tradeVolumeUSD_lt: BigDecimal + tradeVolumeUSD_gte: BigDecimal + tradeVolumeUSD_lte: BigDecimal + tradeVolumeUSD_in: [BigDecimal!] + tradeVolumeUSD_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!] txCount: BigInt txCount_not: BigInt txCount_gt: BigInt @@ -4623,24 +2789,27 @@ input Token_filter { txCount_lte: BigInt txCount_in: [BigInt!] txCount_not_in: [BigInt!] - pairCount: BigInt - pairCount_not: BigInt - pairCount_gt: BigInt - pairCount_lt: BigInt - pairCount_gte: BigInt - pairCount_lte: BigInt - pairCount_in: [BigInt!] - pairCount_not_in: [BigInt!] - whitelistedPairCount: BigInt - whitelistedPairCount_not: BigInt - whitelistedPairCount_gt: BigInt - whitelistedPairCount_lt: BigInt - whitelistedPairCount_gte: BigInt - whitelistedPairCount_lte: BigInt - whitelistedPairCount_in: [BigInt!] - whitelistedPairCount_not_in: [BigInt!] - pairs_: _TokenPair_filter - whitelistedPairs_: _WhitelistedTokenPair_filter + totalLiquidity: BigDecimal + totalLiquidity_not: BigDecimal + totalLiquidity_gt: BigDecimal + totalLiquidity_lt: BigDecimal + totalLiquidity_gte: BigDecimal + totalLiquidity_lte: BigDecimal + totalLiquidity_in: [BigDecimal!] + totalLiquidity_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!] + tokenDayData_: TokenDayData_filter + pairDayDataBase_: PairDayData_filter + pairDayDataQuote_: PairDayData_filter + pairBase_: Pair_filter + pairQuote_: Pair_filter """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -4650,68 +2819,59 @@ input Token_filter { enum Token_orderBy { id - price - price__id - price__derivedNative - price__lastUsdPrice symbol - symbolSuccess name - nameSuccess decimals - decimalsSuccess - liquidity - liquidityNative - liquidityUSD - volume - volumeNative - volumeUSD - feesNative - feesUSD + totalSupply + tradeVolume + tradeVolumeUSD + untrackedVolumeUSD txCount - pairCount - whitelistedPairCount - pairs - whitelistedPairs + totalLiquidity + derivedETH + tokenDayData + pairDayDataBase + pairDayDataQuote + pairBase + pairQuote } type Transaction { - """ Tx hash """ - id: ID! - gasLimit: BigInt! - gasPrice: BigInt! + id: Bytes! + blockNumber: BigInt! + timestamp: BigInt! mints(skip: Int = 0, first: Int = 100, orderBy: Mint_orderBy, orderDirection: OrderDirection, where: Mint_filter): [Mint!]! burns(skip: Int = 0, first: Int = 100, orderBy: Burn_orderBy, orderDirection: OrderDirection, where: Burn_filter): [Burn!]! swaps(skip: Int = 0, first: Int = 100, orderBy: Swap_orderBy, orderDirection: OrderDirection, where: Swap_filter): [Swap!]! - createdAtBlock: BigInt! - createdAtTimestamp: BigInt! } 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!] - gasLimit: BigInt - gasLimit_not: BigInt - gasLimit_gt: BigInt - gasLimit_lt: BigInt - gasLimit_gte: BigInt - gasLimit_lte: BigInt - gasLimit_in: [BigInt!] - gasLimit_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!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + 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!] mints: [String!] mints_not: [String!] mints_contains: [String!] @@ -4733,22 +2893,6 @@ input Transaction_filter { swaps_not_contains: [String!] swaps_not_contains_nocase: [String!] swaps_: Swap_filter - createdAtBlock: BigInt - createdAtBlock_not: BigInt - createdAtBlock_gt: BigInt - createdAtBlock_lt: BigInt - createdAtBlock_gte: BigInt - createdAtBlock_lte: BigInt - createdAtBlock_in: [BigInt!] - createdAtBlock_not_in: [BigInt!] - createdAtTimestamp: BigInt - createdAtTimestamp_not: BigInt - createdAtTimestamp_gt: BigInt - createdAtTimestamp_lt: BigInt - createdAtTimestamp_gte: BigInt - createdAtTimestamp_lte: BigInt - createdAtTimestamp_in: [BigInt!] - createdAtTimestamp_not_in: [BigInt!] """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -4758,39 +2902,251 @@ input Transaction_filter { enum Transaction_orderBy { id - gasLimit - gasPrice + blockNumber + timestamp mints burns swaps - createdAtBlock - createdAtTimestamp +} + +type UniswapDayData { + id: Bytes! + date: Int! + dailyVolumeETH: BigDecimal! + dailyVolumeUSD: BigDecimal! + dailyVolumeUntracked: BigDecimal! + totalVolumeETH: BigDecimal! + totalLiquidityETH: BigDecimal! + totalVolumeUSD: BigDecimal! + totalLiquidityUSD: BigDecimal! + txCount: BigInt! +} + +input UniswapDayData_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + dailyVolumeETH: BigDecimal + dailyVolumeETH_not: BigDecimal + dailyVolumeETH_gt: BigDecimal + dailyVolumeETH_lt: BigDecimal + dailyVolumeETH_gte: BigDecimal + dailyVolumeETH_lte: BigDecimal + dailyVolumeETH_in: [BigDecimal!] + dailyVolumeETH_not_in: [BigDecimal!] + dailyVolumeUSD: BigDecimal + dailyVolumeUSD_not: BigDecimal + dailyVolumeUSD_gt: BigDecimal + dailyVolumeUSD_lt: BigDecimal + dailyVolumeUSD_gte: BigDecimal + dailyVolumeUSD_lte: BigDecimal + dailyVolumeUSD_in: [BigDecimal!] + dailyVolumeUSD_not_in: [BigDecimal!] + dailyVolumeUntracked: BigDecimal + dailyVolumeUntracked_not: BigDecimal + dailyVolumeUntracked_gt: BigDecimal + dailyVolumeUntracked_lt: BigDecimal + dailyVolumeUntracked_gte: BigDecimal + dailyVolumeUntracked_lte: BigDecimal + dailyVolumeUntracked_in: [BigDecimal!] + dailyVolumeUntracked_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!] + totalLiquidityETH: BigDecimal + totalLiquidityETH_not: BigDecimal + totalLiquidityETH_gt: BigDecimal + totalLiquidityETH_lt: BigDecimal + totalLiquidityETH_gte: BigDecimal + totalLiquidityETH_lte: BigDecimal + totalLiquidityETH_in: [BigDecimal!] + totalLiquidityETH_not_in: [BigDecimal!] + totalVolumeUSD: BigDecimal + totalVolumeUSD_not: BigDecimal + totalVolumeUSD_gt: BigDecimal + totalVolumeUSD_lt: BigDecimal + totalVolumeUSD_gte: BigDecimal + totalVolumeUSD_lte: BigDecimal + totalVolumeUSD_in: [BigDecimal!] + totalVolumeUSD_not_in: [BigDecimal!] + totalLiquidityUSD: BigDecimal + totalLiquidityUSD_not: BigDecimal + totalLiquidityUSD_gt: BigDecimal + totalLiquidityUSD_lt: BigDecimal + totalLiquidityUSD_gte: BigDecimal + totalLiquidityUSD_lte: BigDecimal + totalLiquidityUSD_in: [BigDecimal!] + totalLiquidityUSD_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniswapDayData_filter] + or: [UniswapDayData_filter] +} + +enum UniswapDayData_orderBy { + id + date + dailyVolumeETH + dailyVolumeUSD + dailyVolumeUntracked + totalVolumeETH + totalLiquidityETH + totalVolumeUSD + totalLiquidityUSD + txCount +} + +type UniswapFactory { + id: Bytes! + pairCount: Int! + totalVolumeUSD: BigDecimal! + totalVolumeETH: BigDecimal! + untrackedVolumeUSD: BigDecimal! + totalLiquidityUSD: BigDecimal! + totalLiquidityETH: BigDecimal! + txCount: BigInt! +} + +input UniswapFactory_filter { + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes + pairCount: Int + pairCount_not: Int + pairCount_gt: Int + pairCount_lt: Int + pairCount_gte: Int + pairCount_lte: Int + pairCount_in: [Int!] + pairCount_not_in: [Int!] + 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!] + untrackedVolumeUSD: BigDecimal + untrackedVolumeUSD_not: BigDecimal + untrackedVolumeUSD_gt: BigDecimal + untrackedVolumeUSD_lt: BigDecimal + untrackedVolumeUSD_gte: BigDecimal + untrackedVolumeUSD_lte: BigDecimal + untrackedVolumeUSD_in: [BigDecimal!] + untrackedVolumeUSD_not_in: [BigDecimal!] + totalLiquidityUSD: BigDecimal + totalLiquidityUSD_not: BigDecimal + totalLiquidityUSD_gt: BigDecimal + totalLiquidityUSD_lt: BigDecimal + totalLiquidityUSD_gte: BigDecimal + totalLiquidityUSD_lte: BigDecimal + totalLiquidityUSD_in: [BigDecimal!] + totalLiquidityUSD_not_in: [BigDecimal!] + totalLiquidityETH: BigDecimal + totalLiquidityETH_not: BigDecimal + totalLiquidityETH_gt: BigDecimal + totalLiquidityETH_lt: BigDecimal + totalLiquidityETH_gte: BigDecimal + totalLiquidityETH_lte: BigDecimal + totalLiquidityETH_in: [BigDecimal!] + totalLiquidityETH_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [UniswapFactory_filter] + or: [UniswapFactory_filter] +} + +enum UniswapFactory_orderBy { + id + pairCount + totalVolumeUSD + totalVolumeETH + untrackedVolumeUSD + totalLiquidityUSD + totalLiquidityETH + txCount } type User { - id: ID! - lpSnapshotsCount: BigInt! + id: Bytes! liquidityPositions(skip: Int = 0, first: Int = 100, orderBy: LiquidityPosition_orderBy, orderDirection: OrderDirection, where: LiquidityPosition_filter): [LiquidityPosition!] + usdSwapped: BigDecimal! } input User_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!] - lpSnapshotsCount: BigInt - lpSnapshotsCount_not: BigInt - lpSnapshotsCount_gt: BigInt - lpSnapshotsCount_lt: BigInt - lpSnapshotsCount_gte: BigInt - lpSnapshotsCount_lte: BigInt - lpSnapshotsCount_in: [BigInt!] - lpSnapshotsCount_not_in: [BigInt!] + id: Bytes + id_not: Bytes + id_gt: Bytes + id_lt: Bytes + id_gte: Bytes + id_lte: Bytes + id_in: [Bytes!] + id_not_in: [Bytes!] + id_contains: Bytes + id_not_contains: Bytes liquidityPositions_: LiquidityPosition_filter + usdSwapped: BigDecimal + usdSwapped_not: BigDecimal + usdSwapped_gt: BigDecimal + usdSwapped_lt: BigDecimal + usdSwapped_gte: BigDecimal + usdSwapped_lte: BigDecimal + usdSwapped_in: [BigDecimal!] + usdSwapped_not_in: [BigDecimal!] """Filter for the block changed event.""" _change_block: BlockChangedFilter @@ -4800,8 +3156,8 @@ input User_filter { enum User_orderBy { id - lpSnapshotsCount liquidityPositions + usdSwapped } type _Block_ { @@ -4838,296 +3194,4 @@ enum _SubgraphErrorPolicy_ { If the subgraph has indexing errors, data will be omitted. The default. """ deny -} - -type _TokenPair { - """ id is created by combining token.id and count, e.g. 0x00x00:1 """ - id: ID! - - """ Pair """ - pair: Pair! - - """ Token """ - token: Token! -} - -input _TokenPair_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!] - pair: String - pair_not: String - pair_gt: String - pair_lt: String - pair_gte: String - pair_lte: String - pair_in: [String!] - pair_not_in: [String!] - pair_contains: String - pair_contains_nocase: String - pair_not_contains: String - pair_not_contains_nocase: String - pair_starts_with: String - pair_starts_with_nocase: String - pair_not_starts_with: String - pair_not_starts_with_nocase: String - pair_ends_with: String - pair_ends_with_nocase: String - pair_not_ends_with: String - pair_not_ends_with_nocase: String - pair_: Pair_filter - token: String - token_not: String - token_gt: String - token_lt: String - token_gte: String - token_lte: String - token_in: [String!] - token_not_in: [String!] - token_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [_TokenPair_filter] - or: [_TokenPair_filter] -} - -enum _TokenPair_orderBy { - id - pair - pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp - pair__reserve0 - pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative - pair__token0Price - pair__token1Price - pair__volumeNative - pair__volumeUSD - pair__volumeToken0 - pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp - pair__txCount - token - token__id - token__symbol - token__symbolSuccess - token__name - token__nameSuccess - token__decimals - token__decimalsSuccess - token__liquidity - token__liquidityNative - token__liquidityUSD - token__volume - token__volumeNative - token__volumeUSD - token__feesNative - token__feesUSD - token__txCount - token__pairCount - token__whitelistedPairCount -} - -type _Version { - id: ID! - version: String! -} - -input _Version_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!] - version: String - version_not: String - version_gt: String - version_lt: String - version_gte: String - version_lte: String - version_in: [String!] - version_not_in: [String!] - version_contains: String - version_contains_nocase: String - version_not_contains: String - version_not_contains_nocase: String - version_starts_with: String - version_starts_with_nocase: String - version_not_starts_with: String - version_not_starts_with_nocase: String - version_ends_with: String - version_ends_with_nocase: String - version_not_ends_with: String - version_not_ends_with_nocase: String - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [_Version_filter] - or: [_Version_filter] -} - -enum _Version_orderBy { - id - version -} - -type _WhitelistedTokenPair { - """ id is created by combining token.id and count, e.g. 0x00x00:1 """ - id: ID! - - """ Pair """ - pair: Pair! - - """ Token """ - token: Token! -} - -input _WhitelistedTokenPair_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!] - pair: String - pair_not: String - pair_gt: String - pair_lt: String - pair_gte: String - pair_lte: String - pair_in: [String!] - pair_not_in: [String!] - pair_contains: String - pair_contains_nocase: String - pair_not_contains: String - pair_not_contains_nocase: String - pair_starts_with: String - pair_starts_with_nocase: String - pair_not_starts_with: String - pair_not_starts_with_nocase: String - pair_ends_with: String - pair_ends_with_nocase: String - pair_not_ends_with: String - pair_not_ends_with_nocase: String - pair_: Pair_filter - token: String - token_not: String - token_gt: String - token_lt: String - token_gte: String - token_lte: String - token_in: [String!] - token_not_in: [String!] - token_contains: String - token_contains_nocase: String - token_not_contains: String - token_not_contains_nocase: String - token_starts_with: String - token_starts_with_nocase: String - token_not_starts_with: String - token_not_starts_with_nocase: String - token_ends_with: String - token_ends_with_nocase: String - token_not_ends_with: String - token_not_ends_with_nocase: String - token_: Token_filter - - """Filter for the block changed event.""" - _change_block: BlockChangedFilter - and: [_WhitelistedTokenPair_filter] - or: [_WhitelistedTokenPair_filter] -} - -enum _WhitelistedTokenPair_orderBy { - id - pair - pair__id - pair__type - pair__swapFee - pair__twapEnabled - pair__name - pair__source - pair__createdAtBlock - pair__createdAtTimestamp - pair__reserve0 - pair__reserve1 - pair___cacheUpdatedAtBlock - pair___cache_reserve0 - pair___cache_reserve1 - pair___cache_token0Price - pair___cache_token1Price - pair__liquidity - pair__liquidityUSD - pair__liquidityNative - pair__trackedLiquidityNative - pair__token0Price - pair__token1Price - pair__volumeNative - pair__volumeUSD - pair__volumeToken0 - pair__volumeToken1 - pair__feesNative - pair__feesUSD - pair__apr - pair__aprUpdatedAtTimestamp - pair__txCount - token - token__id - token__symbol - token__symbolSuccess - token__name - token__nameSuccess - token__decimals - token__decimalsSuccess - token__liquidity - token__liquidityNative - token__liquidityUSD - token__volume - token__volumeNative - token__volumeUSD - token__feesNative - token__feesUSD - token__txCount - token__pairCount - token__whitelistedPairCount } \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts index c41725b415..6d06f157bd 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts @@ -4,25 +4,25 @@ import type { TadaDocumentNode, $tada } from 'gql.tada'; declare module 'gql.tada' { interface setupCache { - "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": - TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "to" | "complete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Factories {\n factories(first: 1) {\n id\n liquidityUSD\n volumeUSD\n poolCount: pairCount\n }\n }\n": - TadaDocumentNode<{ factories: { poolCount: string; volumeUSD: string; liquidityUSD: string; id: string; }[]; }, {}, void>; - "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": - TadaDocumentNode<{ liquidityPositions: { user: { id: string; }; pair: { id: string; }; balance: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: any; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: any; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "user" | "balance" | "createdAtTimestamp" | "createdAtBlock" | "user__id" | "user__lpSnapshotsCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": - TadaDocumentNode<{ mints: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "to" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n fragment PoolFields on Pair @_unmask {\n id\n type\n swapFee\n twapEnabled\n name\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n source\n createdAtBlock\n createdAtTimestamp\n reserve0\n reserve1\n liquidity\n liquidityUSD\n liquidityNative\n volumeUSD\n volumeNative\n volumeToken0\n volumeToken1\n feesNative\n feesUSD\n txCount\n apr\n aprUpdatedAtTimestamp\n }\n": - TadaDocumentNode<{ aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }, {}, { fragment: "PoolFields"; on: "Pair"; masked: false; }>; + "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "needsComplete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Factories {\n factories: uniswapFactories(first: 1) {\n id\n totalLiquidityUSD\n untrackedVolumeUSD\n totalVolumeUSD\n poolCount: pairCount\n }\n }\n": + TadaDocumentNode<{ factories: { poolCount: number; totalVolumeUSD: string; untrackedVolumeUSD: string; totalLiquidityUSD: string; id: `0x${string}`; }[]; }, {}, void>; + "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance: liquidityTokenBalance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": + TadaDocumentNode<{ liquidityPositions: { user: { id: `0x${string}`; }; pair: { id: `0x${string}`; }; balance: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: any; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "user" | "liquidityTokenBalance" | "user__id" | "user__usdSwapped"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ mints: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: any; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n fragment PoolFields on Pair @_unmask {\n id\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n createdAtBlockNumber\n createdAtTimestamp\n reserve0\n reserve1\n totalSupply\n reserveUSD\n reserveETH\n trackedReserveETH\n # token0Price\n # token1Price\n volumeUSD\n volumeToken0\n volumeToken1\n txCount\n }\n": + TadaDocumentNode<{ txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }, {}, { fragment: "PoolFields"; on: "Pair"; masked: false; }>; "\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pool: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; + TadaDocumentNode<{ pool: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; "\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pools: { aprUpdatedAtTimestamp: string; apr: string; txCount: string; feesUSD: string; feesNative: string; volumeToken1: string; volumeToken0: string; volumeNative: string; volumeUSD: string; liquidityNative: string; liquidityUSD: string; liquidity: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlock: string; source: string; token1: { symbol: string; decimals: string; id: string; name: string; }; token0: { symbol: string; decimals: string; id: string; name: string; }; name: string; twapEnabled: boolean; swapFee: string; type: "CONSTANT_PRODUCT_POOL"; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: any; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "liquidity" | "createdAtTimestamp" | "createdAtBlock" | "liquidityUSD" | "volumeUSD" | "type" | "hourSnapshots" | "apr" | "daySnapshots" | "swapFee" | "twapEnabled" | "token0" | "token1" | "source" | "reserve0" | "reserve1" | "_cacheUpdatedAtBlock" | "_cache_reserve0" | "_cache_reserve1" | "_cache_token0Price" | "_cache_token1Price" | "liquidityNative" | "trackedLiquidityNative" | "token0Price" | "token1Price" | "volumeNative" | "volumeToken0" | "volumeToken1" | "feesNative" | "feesUSD" | "aprUpdatedAtTimestamp" | "txCount" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__symbolSuccess" | "token0__name" | "token0__nameSuccess" | "token0__decimals" | "token0__decimalsSuccess" | "token0__liquidity" | "token0__liquidityNative" | "token0__liquidityUSD" | "token0__volume" | "token0__volumeNative" | "token0__volumeUSD" | "token0__feesNative" | "token0__feesUSD" | "token0__txCount" | "token0__pairCount" | "token0__whitelistedPairCount" | "token1__id" | "token1__symbol" | "token1__symbolSuccess" | "token1__name" | "token1__nameSuccess" | "token1__decimals" | "token1__decimalsSuccess" | "token1__liquidity" | "token1__liquidityNative" | "token1__liquidityUSD" | "token1__volume" | "token1__volumeNative" | "token1__volumeUSD" | "token1__feesNative" | "token1__feesUSD" | "token1__txCount" | "token1__pairCount" | "token1__whitelistedPairCount" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp\n createdAtBlock\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: string; }; logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "pair" | "sender" | "amountUSD" | "logIndex" | "transaction" | "to" | "transaction__id" | "transaction__gasLimit" | "transaction__gasPrice" | "transaction__createdAtBlock" | "transaction__createdAtTimestamp" | "pair__id" | "pair__type" | "pair__swapFee" | "pair__twapEnabled" | "pair__name" | "pair__source" | "pair__createdAtBlock" | "pair__createdAtTimestamp" | "pair__reserve0" | "pair__reserve1" | "pair___cacheUpdatedAtBlock" | "pair___cache_reserve0" | "pair___cache_reserve1" | "pair___cache_token0Price" | "pair___cache_token1Price" | "pair__liquidity" | "pair__liquidityUSD" | "pair__liquidityNative" | "pair__trackedLiquidityNative" | "pair__token0Price" | "pair__token1Price" | "pair__volumeNative" | "pair__volumeUSD" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__feesNative" | "pair__feesUSD" | "pair__apr" | "pair__aprUpdatedAtTimestamp" | "pair__txCount" | "tokenIn" | "tokenOut" | "amountIn" | "amountOut" | "tokenIn__id" | "tokenIn__symbol" | "tokenIn__symbolSuccess" | "tokenIn__name" | "tokenIn__nameSuccess" | "tokenIn__decimals" | "tokenIn__decimalsSuccess" | "tokenIn__liquidity" | "tokenIn__liquidityNative" | "tokenIn__liquidityUSD" | "tokenIn__volume" | "tokenIn__volumeNative" | "tokenIn__volumeUSD" | "tokenIn__feesNative" | "tokenIn__feesUSD" | "tokenIn__txCount" | "tokenIn__pairCount" | "tokenIn__whitelistedPairCount" | "tokenOut__id" | "tokenOut__symbol" | "tokenOut__symbolSuccess" | "tokenOut__name" | "tokenOut__nameSuccess" | "tokenOut__decimals" | "tokenOut__decimalsSuccess" | "tokenOut__liquidity" | "tokenOut__liquidityNative" | "tokenOut__liquidityUSD" | "tokenOut__volume" | "tokenOut__volumeNative" | "tokenOut__volumeUSD" | "tokenOut__feesNative" | "tokenOut__feesUSD" | "tokenOut__txCount" | "tokenOut__pairCount" | "tokenOut__whitelistedPairCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n liquidityUSD\n symbol\n decimals\n volumeUSD\n feesUSD\n price {\n derivedNative\n }\n }\n }\n": - TadaDocumentNode<{ tokens: { price: { derivedNative: string; }; feesUSD: string; volumeUSD: string; decimals: string; symbol: string; liquidityUSD: string; name: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "liquidity" | "liquidityUSD" | "volumeUSD" | "liquidityNative" | "volumeNative" | "feesNative" | "feesUSD" | "txCount" | "volume" | "pairCount" | "price" | "symbolSuccess" | "nameSuccess" | "decimals" | "decimalsSuccess" | "whitelistedPairCount" | "pairs" | "price__id" | "price__derivedNative" | "price__lastUsdPrice" | "whitelistedPairs"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp\n createdAtBlock\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amountIn\n tokenIn {\n symbol\n }\n amountOut\n tokenOut {\n symbol\n }\n amountUSD\n logIndex\n }\n }\n }\n": - TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; tokenOut: { symbol: string; }; amountOut: string; tokenIn: { symbol: string; }; amountIn: string; to: string; sender: string; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: string; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: string; }[]; createdAtBlock: string; createdAtTimestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amountOut_not_in?: string[]; amountOut_in?: string[]; amountOut_lte?: string; amountOut_gte?: string; amountOut_lt?: string; amountOut_gt?: string; amountOut_not?: string; amountOut?: string; amountIn_not_in?: string[]; amountIn_in?: string[]; amountIn_lte?: string; amountIn_gte?: string; amountIn_lt?: string; amountIn_gt?: string; amountIn_not?: string; amountIn?: string; tokenOut_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenOut_not_ends_with_nocase?: string; tokenOut_not_ends_with?: string; tokenOut_ends_with_nocase?: string; tokenOut_ends_with?: string; tokenOut_not_starts_with_nocase?: string; tokenOut_not_starts_with?: string; tokenOut_starts_with_nocase?: string; tokenOut_starts_with?: string; tokenOut_not_contains_nocase?: string; tokenOut_not_contains?: string; tokenOut_contains_nocase?: string; tokenOut_contains?: string; tokenOut_not_in?: string[]; tokenOut_in?: string[]; tokenOut_lte?: string; tokenOut_gte?: string; tokenOut_lt?: string; tokenOut_gt?: string; tokenOut_not?: string; tokenOut?: string; tokenIn_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; whitelistedPairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pairs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistedPairCount_not_in?: string[]; whitelistedPairCount_in?: string[]; whitelistedPairCount_lte?: string; whitelistedPairCount_gte?: string; whitelistedPairCount_lt?: string; whitelistedPairCount_gt?: string; whitelistedPairCount_not?: string; whitelistedPairCount?: string; pairCount_not_in?: string[]; pairCount_in?: string[]; pairCount_lte?: string; pairCount_gte?: string; pairCount_lt?: string; pairCount_gt?: string; pairCount_not?: string; pairCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; decimalsSuccess_not_in?: boolean[]; decimalsSuccess_in?: boolean[]; decimalsSuccess_not?: boolean; decimalsSuccess?: boolean; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; nameSuccess_not_in?: boolean[]; nameSuccess_in?: boolean[]; nameSuccess_not?: boolean; nameSuccess?: boolean; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbolSuccess_not_in?: boolean[]; symbolSuccess_in?: boolean[]; symbolSuccess_not?: boolean; symbolSuccess?: boolean; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; price_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pricedOffPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pricedOffPair_not_ends_with_nocase?: string; pricedOffPair_not_ends_with?: string; pricedOffPair_ends_with_nocase?: string; pricedOffPair_ends_with?: string; pricedOffPair_not_starts_with_nocase?: string; pricedOffPair_not_starts_with?: string; pricedOffPair_starts_with_nocase?: string; pricedOffPair_starts_with?: string; pricedOffPair_not_contains_nocase?: string; pricedOffPair_not_contains?: string; pricedOffPair_contains_nocase?: string; pricedOffPair_contains?: string; pricedOffPair_not_in?: string[]; pricedOffPair_in?: string[]; pricedOffPair_lte?: string; pricedOffPair_gte?: string; pricedOffPair_lt?: string; pricedOffPair_gt?: string; pricedOffPair_not?: string; pricedOffPair?: string; pricedOffToken_?: any; pricedOffToken_not_ends_with_nocase?: string; pricedOffToken_not_ends_with?: string; pricedOffToken_ends_with_nocase?: string; pricedOffToken_ends_with?: string; pricedOffToken_not_starts_with_nocase?: string; pricedOffToken_not_starts_with?: string; pricedOffToken_starts_with_nocase?: string; pricedOffToken_starts_with?: string; pricedOffToken_not_contains_nocase?: string; pricedOffToken_not_contains?: string; pricedOffToken_contains_nocase?: string; pricedOffToken_contains?: string; pricedOffToken_not_in?: string[]; pricedOffToken_in?: string[]; pricedOffToken_lte?: string; pricedOffToken_gte?: string; pricedOffToken_lt?: string; pricedOffToken_gt?: string; pricedOffToken_not?: string; pricedOffToken?: string; lastUsdPrice_not_in?: string[]; lastUsdPrice_in?: string[]; lastUsdPrice_lte?: string; lastUsdPrice_gte?: string; lastUsdPrice_lt?: string; lastUsdPrice_gt?: string; lastUsdPrice_not?: string; lastUsdPrice?: string; derivedNative_not_in?: string[]; derivedNative_in?: string[]; derivedNative_lte?: string; derivedNative_gte?: string; derivedNative_lt?: string; derivedNative_gt?: string; derivedNative_not?: string; derivedNative?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; price_not_ends_with_nocase?: string; price_not_ends_with?: string; price_ends_with_nocase?: string; price_ends_with?: string; price_not_starts_with_nocase?: string; price_not_starts_with?: string; price_starts_with_nocase?: string; price_starts_with?: string; price_not_contains_nocase?: string; price_not_contains?: string; price_contains_nocase?: string; price_contains?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tokenIn_not_ends_with_nocase?: string; tokenIn_not_ends_with?: string; tokenIn_ends_with_nocase?: string; tokenIn_ends_with?: string; tokenIn_not_starts_with_nocase?: string; tokenIn_not_starts_with?: string; tokenIn_starts_with_nocase?: string; tokenIn_starts_with?: string; tokenIn_not_contains_nocase?: string; tokenIn_not_contains?: string; tokenIn_contains_nocase?: string; tokenIn_contains?: string; tokenIn_not_in?: string[]; tokenIn_in?: string[]; tokenIn_lte?: string; tokenIn_gte?: string; tokenIn_lt?: string; tokenIn_gt?: string; tokenIn_not?: string; tokenIn?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_ends_with_nocase?: string; feeTo_not_ends_with?: string; feeTo_ends_with_nocase?: string; feeTo_ends_with?: string; feeTo_not_starts_with_nocase?: string; feeTo_not_starts_with?: string; feeTo_starts_with_nocase?: string; feeTo_starts_with?: string; feeTo_not_contains_nocase?: string; feeTo_not_contains?: string; feeTo_contains_nocase?: string; feeTo_contains?: string; feeTo_not_in?: string[]; feeTo_in?: string[]; feeTo_lte?: string; feeTo_gte?: string; feeTo_lt?: string; feeTo_gt?: string; feeTo_not?: string; feeTo?: string; complete_not_in?: boolean[]; complete_in?: boolean[]; complete_not?: boolean; complete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_ends_with_nocase?: string; sender_not_ends_with?: string; sender_ends_with_nocase?: string; sender_ends_with?: string; sender_not_starts_with_nocase?: string; sender_not_starts_with?: string; sender_starts_with_nocase?: string; sender_starts_with?: string; sender_not_contains_nocase?: string; sender_not_contains?: string; sender_contains_nocase?: string; sender_contains?: string; sender_not_in?: string[]; sender_in?: string[]; sender_lte?: string; sender_gte?: string; sender_lt?: string; sender_gt?: string; sender_not?: string; sender?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_ends_with_nocase?: string; to_not_ends_with?: string; to_ends_with_nocase?: string; to_ends_with?: string; to_not_starts_with_nocase?: string; to_not_starts_with?: string; to_starts_with_nocase?: string; to_starts_with?: string; to_not_contains_nocase?: string; to_not_contains?: string; to_contains_nocase?: string; to_contains?: string; to_not_in?: string[]; to_in?: string[]; to_lte?: string; to_gte?: string; to_lt?: string; to_gt?: string; to_not?: string; to?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; daySnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; hourSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; transactionCount_not_in?: string[]; transactionCount_in?: string[]; transactionCount_lte?: string; transactionCount_gte?: string; transactionCount_lt?: string; transactionCount_gt?: string; transactionCount_not?: string; transactionCount?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; cumulativeVolumeUSD_not_in?: string[]; cumulativeVolumeUSD_in?: string[]; cumulativeVolumeUSD_lte?: string; cumulativeVolumeUSD_gte?: string; cumulativeVolumeUSD_lt?: string; cumulativeVolumeUSD_gt?: string; cumulativeVolumeUSD_not?: string; cumulativeVolumeUSD?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpSnapshotsCount_not_in?: string[]; lpSnapshotsCount_in?: string[]; lpSnapshotsCount_lte?: string; lpSnapshotsCount_gte?: string; lpSnapshotsCount_lt?: string; lpSnapshotsCount_gt?: string; lpSnapshotsCount_not?: string; lpSnapshotsCount?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; aprUpdatedAtTimestamp_not_in?: string[]; aprUpdatedAtTimestamp_in?: string[]; aprUpdatedAtTimestamp_lte?: string; aprUpdatedAtTimestamp_gte?: string; aprUpdatedAtTimestamp_lt?: string; aprUpdatedAtTimestamp_gt?: string; aprUpdatedAtTimestamp_not?: string; aprUpdatedAtTimestamp?: string; apr_not_in?: string[]; apr_in?: string[]; apr_lte?: string; apr_gte?: string; apr_lt?: string; apr_gt?: string; apr_not?: string; apr?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; feesNative_not_in?: string[]; feesNative_in?: string[]; feesNative_lte?: string; feesNative_gte?: string; feesNative_lt?: string; feesNative_gt?: string; feesNative_not?: string; feesNative?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeNative_not_in?: string[]; volumeNative_in?: string[]; volumeNative_lte?: string; volumeNative_gte?: string; volumeNative_lt?: string; volumeNative_gt?: string; volumeNative_not?: string; volumeNative?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedLiquidityNative_not_in?: string[]; trackedLiquidityNative_in?: string[]; trackedLiquidityNative_lte?: string; trackedLiquidityNative_gte?: string; trackedLiquidityNative_lt?: string; trackedLiquidityNative_gt?: string; trackedLiquidityNative_not?: string; trackedLiquidityNative?: string; liquidityNative_not_in?: string[]; liquidityNative_in?: string[]; liquidityNative_lte?: string; liquidityNative_gte?: string; liquidityNative_lt?: string; liquidityNative_gt?: string; liquidityNative_not?: string; liquidityNative?: string; liquidityUSD_not_in?: string[]; liquidityUSD_in?: string[]; liquidityUSD_lte?: string; liquidityUSD_gte?: string; liquidityUSD_lt?: string; liquidityUSD_gt?: string; liquidityUSD_not?: string; liquidityUSD?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; _cache_token1Price_not_in?: string[]; _cache_token1Price_in?: string[]; _cache_token1Price_lte?: string; _cache_token1Price_gte?: string; _cache_token1Price_lt?: string; _cache_token1Price_gt?: string; _cache_token1Price_not?: string; _cache_token1Price?: string; _cache_token0Price_not_in?: string[]; _cache_token0Price_in?: string[]; _cache_token0Price_lte?: string; _cache_token0Price_gte?: string; _cache_token0Price_lt?: string; _cache_token0Price_gt?: string; _cache_token0Price_not?: string; _cache_token0Price?: string; _cache_reserve1_not_in?: string[]; _cache_reserve1_in?: string[]; _cache_reserve1_lte?: string; _cache_reserve1_gte?: string; _cache_reserve1_lt?: string; _cache_reserve1_gt?: string; _cache_reserve1_not?: string; _cache_reserve1?: string; _cache_reserve0_not_in?: string[]; _cache_reserve0_in?: string[]; _cache_reserve0_lte?: string; _cache_reserve0_gte?: string; _cache_reserve0_lt?: string; _cache_reserve0_gt?: string; _cache_reserve0_not?: string; _cache_reserve0?: string; _cacheUpdatedAtBlock_not_in?: string[]; _cacheUpdatedAtBlock_in?: string[]; _cacheUpdatedAtBlock_lte?: string; _cacheUpdatedAtBlock_gte?: string; _cacheUpdatedAtBlock_lt?: string; _cacheUpdatedAtBlock_gt?: string; _cacheUpdatedAtBlock_not?: string; _cacheUpdatedAtBlock?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; createdAtBlock_not_in?: string[]; createdAtBlock_in?: string[]; createdAtBlock_lte?: string; createdAtBlock_gte?: string; createdAtBlock_lt?: string; createdAtBlock_gt?: string; createdAtBlock_not?: string; createdAtBlock?: string; source_not_ends_with_nocase?: string; source_not_ends_with?: string; source_ends_with_nocase?: string; source_ends_with?: string; source_not_starts_with_nocase?: string; source_not_starts_with?: string; source_starts_with_nocase?: string; source_starts_with?: string; source_not_contains_nocase?: string; source_not_contains?: string; source_contains_nocase?: string; source_contains?: string; source_not_in?: string[]; source_in?: string[]; source_lte?: string; source_gte?: string; source_lt?: string; source_gt?: string; source_not?: string; source?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; twapEnabled_not_in?: boolean[]; twapEnabled_in?: boolean[]; twapEnabled_not?: boolean; twapEnabled?: boolean; swapFee_not_in?: string[]; swapFee_in?: string[]; swapFee_lte?: string; swapFee_gte?: string; swapFee_lt?: string; swapFee_gt?: string; swapFee_not?: string; swapFee?: string; type_not_in?: "CONSTANT_PRODUCT_POOL"[]; type_in?: "CONSTANT_PRODUCT_POOL"[]; type_not?: "CONSTANT_PRODUCT_POOL"; type?: "CONSTANT_PRODUCT_POOL"; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "createdAtTimestamp" | "createdAtBlock" | "gasLimit" | "burns" | "gasPrice" | "mints" | "swaps"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ pools: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "burns" | "createdAtTimestamp" | "token0" | "token1" | "reserve0" | "reserve1" | "totalSupply" | "reserveETH" | "reserveUSD" | "trackedReserveETH" | "token0Price" | "token1Price" | "volumeToken0" | "volumeToken1" | "volumeUSD" | "untrackedVolumeUSD" | "txCount" | "createdAtBlockNumber" | "liquidityProviderCount" | "mints" | "swaps" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__tradeVolume" | "token0__tradeVolumeUSD" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__totalLiquidity" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__tradeVolume" | "token1__tradeVolumeUSD" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__totalLiquidity" | "token1__derivedETH" | "pairHourData" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": + TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "from" | "amount0In" | "amount1In" | "amount0Out" | "amount1Out"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n symbol\n decimals\n tradeVolumeUSD\n totalLiquidity\n }\n }\n": + TadaDocumentNode<{ tokens: { totalLiquidity: string; tradeVolumeUSD: string; decimals: string; symbol: string; name: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "totalSupply" | "untrackedVolumeUSD" | "txCount" | "decimals" | "tradeVolume" | "tradeVolumeUSD" | "totalLiquidity" | "derivedETH" | "tokenDayData" | "pairDayDataBase" | "pairDayDataQuote" | "pairBase" | "pairQuote"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n }\n }\n }\n": + TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "mints" | "swaps" | "blockNumber"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts index eabaf74d35..dc553450c2 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts @@ -21,82 +21,63 @@ export type introspection = { 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; 'Boolean': unknown; - 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'nativePrice': { name: 'nativePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'nativePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'nativePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'nativePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'nativePrice'; }; - 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'complete': { name: 'complete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'complete'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'complete_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'complete_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'complete_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'to' | 'logIndex' | 'amountUSD' | 'complete' | 'feeTo' | 'feeLiquidity'; }; + 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPrice': { name: 'ethPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; + 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPrice'; }; + 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'needsComplete': { name: 'needsComplete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'to' | 'logIndex' | 'amountUSD' | 'needsComplete' | 'feeTo' | 'feeLiquidity'; }; 'Bytes': unknown; - 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tokenCount': { name: 'tokenCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'FactoryDaySnapshot': { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'factory': { name: 'factory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'FactoryDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_'; type: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'FactoryDaySnapshot_orderBy': { name: 'FactoryDaySnapshot_orderBy'; enumValues: 'id' | 'factory' | 'factory__id' | 'factory__type' | 'factory__volumeUSD' | 'factory__volumeNative' | 'factory__liquidityUSD' | 'factory__liquidityNative' | 'factory__feesUSD' | 'factory__feesNative' | 'factory__pairCount' | 'factory__transactionCount' | 'factory__tokenCount' | 'factory__userCount' | 'date' | 'volumeUSD' | 'volumeNative' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; - 'FactoryHourSnapshot': { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'factory': { name: 'factory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'FactoryHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'factory_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'factory_'; type: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FactoryHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'FactoryHourSnapshot_orderBy': { name: 'FactoryHourSnapshot_orderBy'; enumValues: 'id' | 'factory' | 'factory__id' | 'factory__type' | 'factory__volumeUSD' | 'factory__volumeNative' | 'factory__liquidityUSD' | 'factory__liquidityNative' | 'factory__feesUSD' | 'factory__feesNative' | 'factory__pairCount' | 'factory__transactionCount' | 'factory__tokenCount' | 'factory__userCount' | 'date' | 'volumeUSD' | 'volumeNative' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; - 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'type' | 'volumeUSD' | 'volumeNative' | 'liquidityUSD' | 'liquidityNative' | 'feesUSD' | 'feesNative' | 'pairCount' | 'transactionCount' | 'tokenCount' | 'userCount'; }; 'ID': unknown; 'Int': unknown; 'Int8': unknown; - 'LiquidityPosition': { kind: 'OBJECT'; name: 'LiquidityPosition'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot': { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityTokenTotalSupply': { name: 'liquidityTokenTotalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'token0PriceUSD': { name: 'token0PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1PriceUSD': { name: 'token1PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPositionSnapshot_orderBy': { name: 'LiquidityPositionSnapshot_orderBy'; enumValues: 'id' | 'liquidityPosition' | 'liquidityPosition__id' | 'liquidityPosition__balance' | 'liquidityPosition__createdAtBlock' | 'liquidityPosition__createdAtTimestamp' | 'timestamp' | 'block' | 'user' | 'user__id' | 'user__lpSnapshotsCount' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token0PriceUSD' | 'token1PriceUSD' | 'reserve0' | 'reserve1' | 'reserveUSD' | 'liquidityTokenTotalSupply' | 'liquidityTokenBalance'; }; - 'LiquidityPosition_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPosition_orderBy': { name: 'LiquidityPosition_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'user' | 'user__id' | 'user__lpSnapshotsCount' | 'balance' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'to' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'logIndex' | 'amountUSD' | 'feeTo' | 'feeLiquidity'; }; + 'LiquidityPosition': { kind: 'OBJECT'; name: 'LiquidityPosition'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; + 'LiquidityPositionSnapshot': { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityTokenTotalSupply': { name: 'liquidityTokenTotalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'token0PriceUSD': { name: 'token0PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1PriceUSD': { name: 'token1PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; + 'LiquidityPositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'LiquidityPositionSnapshot_orderBy': { name: 'LiquidityPositionSnapshot_orderBy'; enumValues: 'id' | 'liquidityPosition' | 'liquidityPosition__id' | 'liquidityPosition__liquidityTokenBalance' | 'timestamp' | 'block' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'token0PriceUSD' | 'token1PriceUSD' | 'reserve0' | 'reserve1' | 'reserveUSD' | 'liquidityTokenTotalSupply' | 'liquidityTokenBalance'; }; + 'LiquidityPosition_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'LiquidityPosition_orderBy': { name: 'LiquidityPosition_orderBy'; enumValues: 'id' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidityTokenBalance'; }; + 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'to' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'logIndex' | 'amountUSD' | 'feeTo' | 'feeLiquidity'; }; 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { '_cacheUpdatedAtBlock': { name: '_cacheUpdatedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_reserve0': { name: '_cache_reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_reserve1': { name: '_cache_reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; '_cache_token0Price': { name: '_cache_token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; '_cache_token1Price': { name: '_cache_token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'aprUpdatedAtTimestamp': { name: 'aprUpdatedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'source': { name: 'source'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'swapFee': { name: 'swapFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'trackedLiquidityNative': { name: 'trackedLiquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'twapEnabled': { name: 'twapEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PairDaySnapshot': { kind: 'OBJECT'; name: 'PairDaySnapshot'; fields: { 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'cumulativeVolumeUSD': { name: 'cumulativeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PairDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairDaySnapshot_orderBy': { name: 'PairDaySnapshot_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'date' | 'cumulativeVolumeUSD' | 'volumeUSD' | 'volumeNative' | 'volumeToken0' | 'volumeToken1' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'apr' | 'transactionCount'; }; - 'PairHourSnapshot': { kind: 'OBJECT'; name: 'PairHourSnapshot'; fields: { 'apr': { name: 'apr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'cumulativeVolumeUSD': { name: 'cumulativeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PairHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'cumulativeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairHourSnapshot_orderBy': { name: 'PairHourSnapshot_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'date' | 'cumulativeVolumeUSD' | 'volumeUSD' | 'volumeNative' | 'volumeToken0' | 'volumeToken1' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'feesNative' | 'feesUSD' | 'apr' | 'transactionCount'; }; - 'PairType': { name: 'PairType'; enumValues: 'CONSTANT_PRODUCT_POOL'; }; - 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PairType'; ofType: null; }; }; }; defaultValue: null }, { name: 'swapFee'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'swapFee_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'swapFee_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'twapEnabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twapEnabled_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'twapEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'twapEnabled_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'source'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'source_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'source_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cacheUpdatedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: '_cache_reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: '_cache_token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_cache_token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedLiquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedLiquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedLiquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositionSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'hourSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'PairHourSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'daySnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDaySnapshot_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'type' | 'swapFee' | 'twapEnabled' | 'name' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__symbolSuccess' | 'token0__name' | 'token0__nameSuccess' | 'token0__decimals' | 'token0__decimalsSuccess' | 'token0__liquidity' | 'token0__liquidityNative' | 'token0__liquidityUSD' | 'token0__volume' | 'token0__volumeNative' | 'token0__volumeUSD' | 'token0__feesNative' | 'token0__feesUSD' | 'token0__txCount' | 'token0__pairCount' | 'token0__whitelistedPairCount' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__symbolSuccess' | 'token1__name' | 'token1__nameSuccess' | 'token1__decimals' | 'token1__decimalsSuccess' | 'token1__liquidity' | 'token1__liquidityNative' | 'token1__liquidityUSD' | 'token1__volume' | 'token1__volumeNative' | 'token1__volumeUSD' | 'token1__feesNative' | 'token1__feesUSD' | 'token1__txCount' | 'token1__pairCount' | 'token1__whitelistedPairCount' | 'source' | 'createdAtBlock' | 'createdAtTimestamp' | 'reserve0' | 'reserve1' | '_cacheUpdatedAtBlock' | '_cache_reserve0' | '_cache_reserve1' | '_cache_token0Price' | '_cache_token1Price' | 'liquidity' | 'liquidityUSD' | 'liquidityNative' | 'trackedLiquidityNative' | 'token0Price' | 'token1Price' | 'volumeNative' | 'volumeUSD' | 'volumeToken0' | 'volumeToken1' | 'feesNative' | 'feesUSD' | 'apr' | 'aprUpdatedAtTimestamp' | 'txCount' | 'liquidityPositions' | 'liquidityPositionSnapshots' | 'hourSnapshots' | 'daySnapshots'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'factoryDaySnapshot': { name: 'factoryDaySnapshot'; type: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; } }; 'factoryDaySnapshots': { name: 'factoryDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; }; }; }; } }; 'factoryHourSnapshot': { name: 'factoryHourSnapshot'; type: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; } }; 'factoryHourSnapshots': { name: 'factoryHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDaySnapshot': { name: 'pairDaySnapshot'; type: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; } }; 'pairDaySnapshots': { name: 'pairDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'pairHourSnapshot': { name: 'pairHourSnapshot'; type: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; } }; 'pairHourSnapshots': { name: 'pairHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDaySnapshot': { name: 'tokenDaySnapshot'; type: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; } }; 'tokenDaySnapshots': { name: 'tokenDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; }; }; }; } }; 'tokenHourSnapshot': { name: 'tokenHourSnapshot'; type: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; } }; 'tokenHourSnapshots': { name: 'tokenHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; }; }; }; } }; 'tokenPair': { name: 'tokenPair'; type: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; } }; 'tokenPairs': { name: 'tokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'tokenPrice': { name: 'tokenPrice'; type: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; } }; 'tokenPrices': { name: 'tokenPrices'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'version': { name: 'version'; type: { kind: 'OBJECT'; name: '_Version'; ofType: null; } }; 'versions': { name: 'versions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Version'; ofType: null; }; }; }; } }; 'whitelistedTokenPair': { name: 'whitelistedTokenPair'; type: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; } }; 'whitelistedTokenPairs': { name: 'whitelistedTokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; + 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveETH': { name: 'reserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'trackedReserveETH': { name: 'trackedReserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'PairDayData': { kind: 'OBJECT'; name: 'PairDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeToken0': { name: 'dailyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken1': { name: 'dailyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairAddress': { name: 'pairAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; + 'PairDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PairDayData_orderBy': { name: 'PairDayData_orderBy'; enumValues: 'id' | 'date' | 'pairAddress' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'dailyVolumeToken0' | 'dailyVolumeToken1' | 'dailyVolumeUSD' | 'dailyTxns'; }; + 'PairHourData': { kind: 'OBJECT'; name: 'PairHourData'; fields: { 'hourStartUnix': { name: 'hourStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'hourlyTxns': { name: 'hourlyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hourlyVolumeToken0': { name: 'hourlyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeToken1': { name: 'hourlyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeUSD': { name: 'hourlyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; + 'PairHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'PairHourData_orderBy': { name: 'PairHourData_orderBy'; enumValues: 'id' | 'hourStartUnix' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'hourlyVolumeToken0' | 'hourlyVolumeToken1' | 'hourlyVolumeUSD' | 'hourlyTxns'; }; + 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositionSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveETH' | 'reserveUSD' | 'trackedReserveETH' | 'token0Price' | 'token1Price' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'createdAtTimestamp' | 'createdAtBlockNumber' | 'liquidityProviderCount' | 'pairHourData' | 'liquidityPositions' | 'liquidityPositionSnapshots' | 'mints' | 'burns' | 'swaps'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'factoryDaySnapshot': { name: 'factoryDaySnapshot'; type: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; } }; 'factoryDaySnapshots': { name: 'factoryDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryDaySnapshot'; ofType: null; }; }; }; } }; 'factoryHourSnapshot': { name: 'factoryHourSnapshot'; type: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; } }; 'factoryHourSnapshots': { name: 'factoryHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FactoryHourSnapshot'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDaySnapshot': { name: 'pairDaySnapshot'; type: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; } }; 'pairDaySnapshots': { name: 'pairDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDaySnapshot'; ofType: null; }; }; }; } }; 'pairHourSnapshot': { name: 'pairHourSnapshot'; type: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; } }; 'pairHourSnapshots': { name: 'pairHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourSnapshot'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDaySnapshot': { name: 'tokenDaySnapshot'; type: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; } }; 'tokenDaySnapshots': { name: 'tokenDaySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDaySnapshot'; ofType: null; }; }; }; } }; 'tokenHourSnapshot': { name: 'tokenHourSnapshot'; type: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; } }; 'tokenHourSnapshots': { name: 'tokenHourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourSnapshot'; ofType: null; }; }; }; } }; 'tokenPair': { name: 'tokenPair'; type: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; } }; 'tokenPairs': { name: 'tokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'tokenPrice': { name: 'tokenPrice'; type: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; } }; 'tokenPrices': { name: 'tokenPrices'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'version': { name: 'version'; type: { kind: 'OBJECT'; name: '_Version'; ofType: null; } }; 'versions': { name: 'versions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Version'; ofType: null; }; }; }; } }; 'whitelistedTokenPair': { name: 'whitelistedTokenPair'; type: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; } }; 'whitelistedTokenPairs': { name: 'whitelistedTokenPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; - 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amountIn': { name: 'amountIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountOut': { name: 'amountOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenIn': { name: 'tokenIn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenOut': { name: 'tokenOut'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenIn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenIn_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenIn_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenOut'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenOut_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenOut_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenOut_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'amountIn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountIn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountIn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountOut'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountOut_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountOut_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__gasLimit' | 'transaction__gasPrice' | 'transaction__createdAtBlock' | 'transaction__createdAtTimestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'sender' | 'tokenIn' | 'tokenIn__id' | 'tokenIn__symbol' | 'tokenIn__symbolSuccess' | 'tokenIn__name' | 'tokenIn__nameSuccess' | 'tokenIn__decimals' | 'tokenIn__decimalsSuccess' | 'tokenIn__liquidity' | 'tokenIn__liquidityNative' | 'tokenIn__liquidityUSD' | 'tokenIn__volume' | 'tokenIn__volumeNative' | 'tokenIn__volumeUSD' | 'tokenIn__feesNative' | 'tokenIn__feesUSD' | 'tokenIn__txCount' | 'tokenIn__pairCount' | 'tokenIn__whitelistedPairCount' | 'tokenOut' | 'tokenOut__id' | 'tokenOut__symbol' | 'tokenOut__symbolSuccess' | 'tokenOut__name' | 'tokenOut__nameSuccess' | 'tokenOut__decimals' | 'tokenOut__decimalsSuccess' | 'tokenOut__liquidity' | 'tokenOut__liquidityNative' | 'tokenOut__liquidityUSD' | 'tokenOut__volume' | 'tokenOut__volumeNative' | 'tokenOut__volumeUSD' | 'tokenOut__feesNative' | 'tokenOut__feesUSD' | 'tokenOut__txCount' | 'tokenOut__pairCount' | 'tokenOut__whitelistedPairCount' | 'amountIn' | 'amountOut' | 'to' | 'logIndex' | 'amountUSD'; }; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; + 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0In': { name: 'amount0In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Out': { name: 'amount0Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1In': { name: 'amount1In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Out': { name: 'amount1Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; + 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'sender' | 'from' | 'amount0In' | 'amount1In' | 'amount0Out' | 'amount1Out' | 'to' | 'logIndex' | 'amountUSD'; }; 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimalsSuccess': { name: 'decimalsSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'nameSuccess': { name: 'nameSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_TokenPair'; ofType: null; }; }; }; } }; 'price': { name: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenPrice'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbolSuccess': { name: 'symbolSuccess'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistedPairCount': { name: 'whitelistedPairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'whitelistedPairs': { name: 'whitelistedPairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; ofType: null; }; }; }; } }; }; }; - 'TokenDaySnapshot': { kind: 'OBJECT'; name: 'TokenDaySnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceNative': { name: 'priceNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenDaySnapshot_orderBy': { name: 'TokenDaySnapshot_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'priceNative' | 'priceUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; - 'TokenHourSnapshot': { kind: 'OBJECT'; name: 'TokenHourSnapshot'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesNative': { name: 'feesNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityNative': { name: 'liquidityNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityUSD': { name: 'liquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceNative': { name: 'priceNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeNative': { name: 'volumeNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenHourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenHourSnapshot_orderBy': { name: 'TokenHourSnapshot_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'priceNative' | 'priceUSD' | 'feesNative' | 'feesUSD' | 'transactionCount'; }; - 'TokenPrice': { kind: 'OBJECT'; name: 'TokenPrice'; fields: { 'derivedNative': { name: 'derivedNative'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastUsdPrice': { name: 'lastUsdPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pricedOffPair': { name: 'pricedOffPair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pricedOffToken': { name: 'pricedOffToken'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'TokenPrice_filter': { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'derivedNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastUsdPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'lastUsdPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastUsdPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffPair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pricedOffPair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pricedOffPair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenPrice_orderBy': { name: 'TokenPrice_orderBy'; enumValues: 'id' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount' | 'derivedNative' | 'lastUsdPrice' | 'pricedOffToken' | 'pricedOffToken__id' | 'pricedOffToken__symbol' | 'pricedOffToken__symbolSuccess' | 'pricedOffToken__name' | 'pricedOffToken__nameSuccess' | 'pricedOffToken__decimals' | 'pricedOffToken__decimalsSuccess' | 'pricedOffToken__liquidity' | 'pricedOffToken__liquidityNative' | 'pricedOffToken__liquidityUSD' | 'pricedOffToken__volume' | 'pricedOffToken__volumeNative' | 'pricedOffToken__volumeUSD' | 'pricedOffToken__feesNative' | 'pricedOffToken__feesUSD' | 'pricedOffToken__txCount' | 'pricedOffToken__pairCount' | 'pricedOffToken__whitelistedPairCount' | 'pricedOffPair' | 'pricedOffPair__id' | 'pricedOffPair__type' | 'pricedOffPair__swapFee' | 'pricedOffPair__twapEnabled' | 'pricedOffPair__name' | 'pricedOffPair__source' | 'pricedOffPair__createdAtBlock' | 'pricedOffPair__createdAtTimestamp' | 'pricedOffPair__reserve0' | 'pricedOffPair__reserve1' | 'pricedOffPair___cacheUpdatedAtBlock' | 'pricedOffPair___cache_reserve0' | 'pricedOffPair___cache_reserve1' | 'pricedOffPair___cache_token0Price' | 'pricedOffPair___cache_token1Price' | 'pricedOffPair__liquidity' | 'pricedOffPair__liquidityUSD' | 'pricedOffPair__liquidityNative' | 'pricedOffPair__trackedLiquidityNative' | 'pricedOffPair__token0Price' | 'pricedOffPair__token1Price' | 'pricedOffPair__volumeNative' | 'pricedOffPair__volumeUSD' | 'pricedOffPair__volumeToken0' | 'pricedOffPair__volumeToken1' | 'pricedOffPair__feesNative' | 'pricedOffPair__feesUSD' | 'pricedOffPair__apr' | 'pricedOffPair__aprUpdatedAtTimestamp' | 'pricedOffPair__txCount'; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'price_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenPrice_filter'; ofType: null; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'symbolSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbolSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'nameSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'nameSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimalsSuccess'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'decimalsSuccess_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'decimalsSuccess_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimalsSuccess_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesNative_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesNative_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistedPairCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistedPairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairs_'; type: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; defaultValue: null }, { name: 'whitelistedPairs_'; type: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'price' | 'price__id' | 'price__derivedNative' | 'price__lastUsdPrice' | 'symbol' | 'symbolSuccess' | 'name' | 'nameSuccess' | 'decimals' | 'decimalsSuccess' | 'liquidity' | 'liquidityNative' | 'liquidityUSD' | 'volume' | 'volumeNative' | 'volumeUSD' | 'feesNative' | 'feesUSD' | 'txCount' | 'pairCount' | 'whitelistedPairCount' | 'pairs' | 'whitelistedPairs'; }; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; }; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'gasLimit' | 'gasPrice' | 'mints' | 'burns' | 'swaps' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; } }; 'lpSnapshotsCount': { name: 'lpSnapshotsCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpSnapshotsCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lpSnapshotsCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpSnapshotsCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'lpSnapshotsCount' | 'liquidityPositions'; }; + 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pairBase': { name: 'pairBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'pairDayDataBase': { name: 'pairDayDataBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairDayDataQuote': { name: 'pairDayDataQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairQuote': { name: 'pairQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalLiquidity': { name: 'totalLiquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tradeVolume': { name: 'tradeVolume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tradeVolumeUSD': { name: 'tradeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken': { name: 'dailyVolumeToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityToken': { name: 'totalLiquidityToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__name' | 'token__decimals' | 'token__totalSupply' | 'token__tradeVolume' | 'token__tradeVolumeUSD' | 'token__untrackedVolumeUSD' | 'token__txCount' | 'token__totalLiquidity' | 'token__derivedETH' | 'dailyVolumeToken' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyTxns' | 'totalLiquidityToken' | 'totalLiquidityETH' | 'totalLiquidityUSD' | 'priceUSD'; }; + 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataBase_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairBase_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'pairQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'tradeVolume' | 'tradeVolumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'totalLiquidity' | 'derivedETH' | 'tokenDayData' | 'pairDayDataBase' | 'pairDayDataQuote' | 'pairBase' | 'pairQuote'; }; + 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'mints' | 'burns' | 'swaps'; }; + 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUntracked': { name: 'dailyVolumeUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyVolumeUntracked' | 'totalVolumeETH' | 'totalLiquidityETH' | 'totalVolumeUSD' | 'totalLiquidityUSD' | 'txCount'; }; + 'UniswapFactory': { kind: 'OBJECT'; name: 'UniswapFactory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'UniswapFactory_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'UniswapFactory_orderBy': { name: 'UniswapFactory_orderBy'; enumValues: 'id' | 'pairCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'untrackedVolumeUSD' | 'totalLiquidityUSD' | 'totalLiquidityETH' | 'txCount'; }; + 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; } }; 'usdSwapped': { name: 'usdSwapped'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'usdSwapped_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'liquidityPositions' | 'usdSwapped'; }; '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - '_TokenPair': { kind: 'OBJECT'; name: '_TokenPair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - '_TokenPair_filter': { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_TokenPair_filter'; ofType: null; }; }; defaultValue: null }]; }; - '_TokenPair_orderBy': { name: '_TokenPair_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount'; }; - '_Version': { kind: 'OBJECT'; name: '_Version'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'version': { name: 'version'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - '_Version_filter': { kind: 'INPUT_OBJECT'; name: '_Version_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'version'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'version_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'version_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_Version_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_Version_filter'; ofType: null; }; }; defaultValue: null }]; }; - '_Version_orderBy': { name: '_Version_orderBy'; enumValues: 'id' | 'version'; }; - '_WhitelistedTokenPair': { kind: 'OBJECT'; name: '_WhitelistedTokenPair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - '_WhitelistedTokenPair_filter': { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: '_WhitelistedTokenPair_filter'; ofType: null; }; }; defaultValue: null }]; }; - '_WhitelistedTokenPair_orderBy': { name: '_WhitelistedTokenPair_orderBy'; enumValues: 'id' | 'pair' | 'pair__id' | 'pair__type' | 'pair__swapFee' | 'pair__twapEnabled' | 'pair__name' | 'pair__source' | 'pair__createdAtBlock' | 'pair__createdAtTimestamp' | 'pair__reserve0' | 'pair__reserve1' | 'pair___cacheUpdatedAtBlock' | 'pair___cache_reserve0' | 'pair___cache_reserve1' | 'pair___cache_token0Price' | 'pair___cache_token1Price' | 'pair__liquidity' | 'pair__liquidityUSD' | 'pair__liquidityNative' | 'pair__trackedLiquidityNative' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeNative' | 'pair__volumeUSD' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__feesNative' | 'pair__feesUSD' | 'pair__apr' | 'pair__aprUpdatedAtTimestamp' | 'pair__txCount' | 'token' | 'token__id' | 'token__symbol' | 'token__symbolSuccess' | 'token__name' | 'token__nameSuccess' | 'token__decimals' | 'token__decimalsSuccess' | 'token__liquidity' | 'token__liquidityNative' | 'token__liquidityUSD' | 'token__volume' | 'token__volumeNative' | 'token__volumeUSD' | 'token__feesNative' | 'token__feesUSD' | 'token__txCount' | 'token__pairCount' | 'token__whitelistedPairCount'; }; }; }; diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index a26e698634..7d9e1c68ff 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -10,6 +10,7 @@ import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const SushiV3FactoriesQuery = graphql(` @@ -39,8 +40,12 @@ export async function getSushiV3Factory({ }) if (result.factories[0]) { + const factory = result.factories[0] + return convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, result.factories[0])), + copyIdToAddress( + addChainId(chainId, factory as typeof factory & { id: Hex }), + ), ) } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index e74a7200e0..9af4f7c527 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -10,6 +10,7 @@ import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const SushiV3PoolQuery = graphql(` @@ -77,7 +78,9 @@ export async function getSushiV3Pool({ if (result.pool) { return convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, result.pool)), + copyIdToAddress( + addChainId(chainId, result.pool as typeof result.pool & { id: Hex }), + ), ) } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index fab76ba2e5..64d815a455 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -10,6 +10,7 @@ import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const SushiV3PoolsByTokenPairQuery = graphql(` @@ -74,7 +75,9 @@ export async function getSushiV3PoolsByTokenPair({ if (result) { return result.pools.map((pool) => - convertIdToMultichainId(copyIdToAddress(addChainId(chainId, pool))), + convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, pool as typeof pool & { id: Hex })), + ), ) } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql b/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql index 766d37e403..81ac3333f6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql @@ -301,6 +301,7 @@ enum Burn_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount token0 token0__id @@ -522,6 +523,7 @@ enum Collect_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount owner amount0 @@ -727,6 +729,7 @@ enum DecreaseEvent_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount tokenID position @@ -1118,6 +1121,7 @@ enum Flash_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount sender recipient @@ -1324,6 +1328,7 @@ enum IncreaseEvent_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount tokenID position @@ -1638,6 +1643,7 @@ enum Mint_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount token0 token0__id @@ -1718,6 +1724,7 @@ type Pool { totalValueLockedETH: BigDecimal! totalValueLockedUSD: BigDecimal! totalValueLockedUSDUntracked: BigDecimal! + isProtocolFeeEnabled: Boolean! liquidityProviderCount: BigInt! poolHourData(skip: Int = 0, first: Int = 100, orderBy: PoolHourData_orderBy, orderDirection: OrderDirection, where: PoolHourData_filter): [PoolHourData!]! poolDayData(skip: Int = 0, first: Int = 100, orderBy: PoolDayData_orderBy, orderDirection: OrderDirection, where: PoolDayData_filter): [PoolDayData!]! @@ -1962,6 +1969,7 @@ enum PoolDayData_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount liquidity sqrtPrice @@ -2216,6 +2224,7 @@ enum PoolHourData_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount liquidity sqrtPrice @@ -2487,6 +2496,10 @@ input Pool_filter { totalValueLockedUSDUntracked_lte: BigDecimal totalValueLockedUSDUntracked_in: [BigDecimal!] totalValueLockedUSDUntracked_not_in: [BigDecimal!] + isProtocolFeeEnabled: Boolean + isProtocolFeeEnabled_not: Boolean + isProtocolFeeEnabled_in: [Boolean!] + isProtocolFeeEnabled_not_in: [Boolean!] liquidityProviderCount: BigInt liquidityProviderCount_not: BigInt liquidityProviderCount_gt: BigInt @@ -2568,6 +2581,7 @@ enum Pool_orderBy { totalValueLockedETH totalValueLockedUSD totalValueLockedUSDUntracked + isProtocolFeeEnabled liquidityProviderCount poolHourData poolDayData @@ -2831,6 +2845,7 @@ enum PositionSnapshot_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount position position__id @@ -3164,6 +3179,7 @@ enum Position_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount token0 token0__id @@ -3924,11 +3940,176 @@ type Query { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [DecreaseEvent!]! + setProtocolFeeEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): SetProtocolFeeEvent + setProtocolFeeEvents( + skip: Int = 0 + first: Int = 100 + orderBy: SetProtocolFeeEvent_orderBy + orderDirection: OrderDirection + where: SetProtocolFeeEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [SetProtocolFeeEvent!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ } +type SetProtocolFeeEvent { + id: ID! + pool: Pool! + logIndex: BigInt! + new0: BigInt! + new1: BigInt! + old0: BigInt! + old1: BigInt! + timestamp: BigInt! +} + +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_contains: String + pool_contains_nocase: String + pool_not_contains: String + pool_not_contains_nocase: String + pool_starts_with: String + pool_starts_with_nocase: String + pool_not_starts_with: String + pool_not_starts_with_nocase: String + pool_ends_with: String + pool_ends_with_nocase: String + pool_not_ends_with: String + pool_not_ends_with_nocase: String + pool_: Pool_filter + 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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [SetProtocolFeeEvent_filter] + or: [SetProtocolFeeEvent_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 +} + type Subscription { factory( id: ID! @@ -4590,6 +4771,36 @@ type Subscription { """ subgraphError: _SubgraphErrorPolicy_! = deny ): [DecreaseEvent!]! + setProtocolFeeEvent( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): SetProtocolFeeEvent + setProtocolFeeEvents( + skip: Int = 0 + first: Int = 100 + orderBy: SetProtocolFeeEvent_orderBy + orderDirection: OrderDirection + where: SetProtocolFeeEvent_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [SetProtocolFeeEvent!]! """Access to subgraph metadata""" _meta(block: Block_height): _Meta_ @@ -4835,6 +5046,7 @@ enum Swap_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount token0 token0__id @@ -5078,6 +5290,7 @@ enum TickDayData_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount tick tick__id @@ -5267,6 +5480,7 @@ enum TickHourData_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount tick tick__id @@ -5529,6 +5743,7 @@ enum Tick_orderBy { pool__totalValueLockedETH pool__totalValueLockedUSD pool__totalValueLockedUSDUntracked + pool__isProtocolFeeEnabled pool__liquidityProviderCount liquidityGross liquidityNet diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts index dbbce5623d..a548c5a86d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts @@ -5,22 +5,22 @@ import type { TadaDocumentNode, $tada } from 'gql.tada'; declare module 'gql.tada' { interface setupCache { "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ burns: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ burns: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Collects($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Collect_orderBy, $orderDirection: OrderDirection, $where: Collect_filter) {\n collects(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ collects: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "owner" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ collects: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "owner" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) {\n uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n date\n volumeETH\n volumeUSD\n volumeUSDUntracked\n feesUSD\n txCount\n tvlUSD\n }\n }\n": - TadaDocumentNode<{ uniswapDayDatas: { tvlUSD: string; txCount: string; feesUSD: string; volumeUSDUntracked: string; volumeUSD: string; volumeETH: string; date: number; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSDUntracked_not_in?: string[]; volumeUSDUntracked_in?: string[]; volumeUSDUntracked_lte?: string; volumeUSDUntracked_gte?: string; volumeUSDUntracked_lt?: string; volumeUSDUntracked_gt?: string; volumeUSDUntracked_not?: string; volumeUSDUntracked?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeETH_not_in?: string[]; volumeETH_in?: string[]; volumeETH_lte?: string; volumeETH_gte?: string; volumeETH_lt?: string; volumeETH_gt?: string; volumeETH_not?: string; volumeETH?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "volumeUSD" | "feesUSD" | "txCount" | "date" | "tvlUSD" | "volumeETH" | "volumeUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ uniswapDayDatas: { tvlUSD: string; txCount: string; feesUSD: string; volumeUSDUntracked: string; volumeUSD: string; volumeETH: string; date: number; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSDUntracked_not_in?: string[]; volumeUSDUntracked_in?: string[]; volumeUSDUntracked_lte?: string; volumeUSDUntracked_gte?: string; volumeUSDUntracked_lt?: string; volumeUSDUntracked_gt?: string; volumeUSDUntracked_not?: string; volumeUSDUntracked?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeETH_not_in?: string[]; volumeETH_in?: string[]; volumeETH_lte?: string; volumeETH_gte?: string; volumeETH_lt?: string; volumeETH_gt?: string; volumeETH_not?: string; volumeETH?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "volumeUSD" | "txCount" | "feesUSD" | "date" | "tvlUSD" | "volumeETH" | "volumeUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Factories {\n factories(first: 1) {\n id\n totalValueLockedUSD\n totalVolumeUSD\n poolCount\n }\n }\n": TadaDocumentNode<{ factories: { poolCount: string; totalVolumeUSD: string; totalValueLockedUSD: string; id: string; }[]; }, {}, void>; "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ mints: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ mints: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Pool($id: ID!, $block: Block_height) {\n pool(id: $id, block: $block) {\n id\n token0 {\n id\n symbol\n name\n decimals\n }\n token1 {\n id\n symbol\n name\n decimals\n }\n feeTier\n liquidity\n volumeToken0\n volumeToken1\n volumeUSD\n feesUSD\n txCount\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n\n createdAtTimestamp\n createdAtBlockNumber\n\n poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) {\n id\n periodStartUnix\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n\n poolDayData(first: 730, orderBy: date, orderDirection: desc) {\n id\n date\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n }\n }\n": TadaDocumentNode<{ pool: { poolDayData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; date: number; id: string; }[]; poolHourData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; periodStartUnix: number; id: string; }[]; createdAtBlockNumber: string; createdAtTimestamp: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; txCount: string; feesUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; liquidity: string; feeTier: string; token1: { decimals: string; name: string; symbol: string; id: string; }; token0: { decimals: string; name: string; symbol: string; id: string; }; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; "\n query PoolsByTokenPair($where: Pool_filter!) {\n pools(first: 1000, where: $where) {\n id\n feeTier\n liquidity\n sqrtPrice\n feeGrowthGlobal0X128\n feeGrowthGlobal1X128\n token0Price\n token1Price\n tick\n observationIndex\n volumeToken0\n volumeToken1\n volumeUSD\n untrackedVolumeUSD\n feesUSD\n collectedFeesToken0\n collectedFeesToken1\n collectedFeesUSD\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n totalValueLockedUSDUntracked\n liquidityProviderCount\n }\n }\n": - TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; + TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__gasPrice" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__txCount" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__txCount" | "origin" | "transaction__blockNumber" | "transaction__timestamp" | "transaction__gasUsed" | "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__liquidityProviderCount" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token0__derivedETH" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "token1__derivedETH" | "recipient" | "tick" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "origin" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "tick" | "recipient" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n timestamp\n blockNumber\n mints {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n }\n collects {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n }\n }\n }\n": - TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "gasPrice" | "mints" | "swaps" | "gasUsed" | "blockNumber" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "mints" | "swaps" | "blockNumber" | "gasUsed" | "gasPrice" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts index 4e69c9fce7..7899d268a0 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts @@ -26,60 +26,63 @@ export type introspection = { 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPriceUSD'; }; 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: '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__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'; }; + 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: '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'; }; 'Bytes': unknown; 'Collect': { kind: 'OBJECT'; name: 'Collect'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'Collect_filter': { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Collect_orderBy': { name: 'Collect_orderBy'; enumValues: '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__liquidityProviderCount' | 'owner' | 'amount0' | 'amount1' | 'amountUSD' | 'tickLower' | 'tickUpper' | 'logIndex'; }; + 'Collect_orderBy': { name: 'Collect_orderBy'; enumValues: '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'; }; 'DecreaseEvent': { kind: 'OBJECT'; name: 'DecreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'DecreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'DecreaseEvent_orderBy': { name: 'DecreaseEvent_orderBy'; enumValues: '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__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'; }; + 'DecreaseEvent_orderBy': { name: 'DecreaseEvent_orderBy'; enumValues: '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'; }; 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeesETH': { name: 'totalFeesETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeesUSD': { name: 'totalFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETHUntracked': { name: 'totalValueLockedETHUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'poolCount' | 'txCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'totalFeesUSD' | 'totalFeesETH' | 'untrackedVolumeUSD' | 'totalValueLockedUSD' | 'totalValueLockedETH' | 'totalValueLockedUSDUntracked' | 'totalValueLockedETHUntracked' | 'owner'; }; 'Flash': { kind: 'OBJECT'; name: 'Flash'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Paid': { name: 'amount0Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Paid': { name: 'amount1Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'Flash_filter': { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Flash_orderBy': { name: 'Flash_orderBy'; enumValues: '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__liquidityProviderCount' | 'sender' | 'recipient' | 'amount0' | 'amount1' | 'amountUSD' | 'amount0Paid' | 'amount1Paid' | 'logIndex'; }; + 'Flash_orderBy': { name: 'Flash_orderBy'; enumValues: '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'; }; 'ID': unknown; 'IncreaseEvent': { kind: 'OBJECT'; name: 'IncreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'IncreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'IncreaseEvent_orderBy': { name: 'IncreaseEvent_orderBy'; enumValues: '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__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'; }; + 'IncreaseEvent_orderBy': { name: 'IncreaseEvent_orderBy'; enumValues: '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'; }; 'Int': unknown; 'Int8': unknown; 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: '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__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'; }; + 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: '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'; }; 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeTier': { name: 'feeTier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'observationIndex': { name: 'observationIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken0': { name: 'totalValueLockedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken1': { name: 'totalValueLockedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; + 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeTier': { name: 'feeTier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isProtocolFeeEnabled': { name: 'isProtocolFeeEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'observationIndex': { name: 'observationIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken0': { name: 'totalValueLockedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken1': { name: 'totalValueLockedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'PoolDayData': { kind: 'OBJECT'; name: 'PoolDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'PoolDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolDayData_orderBy': { name: 'PoolDayData_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidity' | 'sqrtPrice' | 'token0Price' | 'token1Price' | 'tick' | 'feeGrowthGlobal0X128' | 'feeGrowthGlobal1X128' | 'tvlUSD' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'feesUSD' | 'txCount' | 'open' | 'high' | 'low' | 'close'; }; + 'PoolDayData_orderBy': { name: 'PoolDayData_orderBy'; enumValues: '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'; }; 'PoolHourData': { kind: 'OBJECT'; name: 'PoolHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'PoolHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolHourData_orderBy': { name: 'PoolHourData_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidity' | 'sqrtPrice' | 'token0Price' | 'token1Price' | 'tick' | 'feeGrowthGlobal0X128' | 'feeGrowthGlobal1X128' | 'tvlUSD' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'feesUSD' | 'txCount' | 'open' | 'high' | 'low' | 'close'; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'feeTier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'poolDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: 'ticks_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: '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' | 'liquidityProviderCount' | 'poolHourData' | 'poolDayData' | 'mints' | 'burns' | 'swaps' | 'collects' | 'ticks'; }; + 'PoolHourData_orderBy': { name: 'PoolHourData_orderBy'; enumValues: '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'; }; + 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'feeTier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'poolDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: 'ticks_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: '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'; }; 'Position': { kind: 'OBJECT'; name: 'Position'; fields: { 'amountCollectedUSD': { name: 'amountCollectedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountDepositedUSD': { name: 'amountDepositedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountWithdrawnUSD': { name: 'amountWithdrawnUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken0': { name: 'collectedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken1': { name: 'collectedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'PositionSnapshot': { kind: 'OBJECT'; name: 'PositionSnapshot'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'PositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PositionSnapshot_orderBy': { name: 'PositionSnapshot_orderBy'; enumValues: '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__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'; }; + 'PositionSnapshot_orderBy': { name: 'PositionSnapshot_orderBy'; enumValues: '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'; }; 'Position_filter': { kind: 'INPUT_OBJECT'; name: 'Position_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'increaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: 'decreaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Position_orderBy': { name: 'Position_orderBy'; enumValues: '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__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'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; + 'Position_orderBy': { name: 'Position_orderBy'; enumValues: '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'; }; + 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; + 'SetProtocolFeeEvent': { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new0': { name: 'new0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new1': { name: 'new1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old0': { name: 'old0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old1': { name: 'old1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; + 'SetProtocolFeeEvent_filter': { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; + 'SetProtocolFeeEvent_orderBy': { name: 'SetProtocolFeeEvent_orderBy'; enumValues: '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'; }; 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; + 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sqrtPriceX96': { name: 'sqrtPriceX96'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: '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__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'; }; + 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: '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'; }; 'Tick': { kind: 'OBJECT'; name: 'Tick'; fields: { 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'poolAddress': { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'price0': { name: 'price0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'price1': { name: 'price1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tickIdx': { name: 'tickIdx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'TickDayData': { kind: 'OBJECT'; name: 'TickDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'TickDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickDayData_orderBy': { name: 'TickDayData_orderBy'; enumValues: '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__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'; }; + 'TickDayData_orderBy': { name: 'TickDayData_orderBy'; enumValues: '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'; }; 'TickHourData': { kind: 'OBJECT'; name: 'TickHourData'; fields: { 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; 'TickHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickHourData_orderBy': { name: 'TickHourData_orderBy'; enumValues: '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__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'; }; + 'TickHourData_orderBy': { name: 'TickHourData_orderBy'; enumValues: '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'; }; 'Tick_filter': { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickIdx'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickIdx_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Tick_orderBy': { name: 'Tick_orderBy'; enumValues: '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__liquidityProviderCount' | 'liquidityGross' | 'liquidityNet' | 'price0' | 'price1' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'untrackedVolumeUSD' | 'feesUSD' | 'collectedFeesToken0' | 'collectedFeesToken1' | 'collectedFeesUSD' | 'createdAtTimestamp' | 'createdAtBlockNumber' | 'liquidityProviderCount' | 'feeGrowthOutside0X128' | 'feeGrowthOutside1X128'; }; + 'Tick_orderBy': { name: 'Tick_orderBy'; enumValues: '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'; }; 'Timestamp': unknown; 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistPools': { name: 'whitelistPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; }; }; 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index aee692553c..4bd970a1e4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1805,6 +1805,9 @@ importers: gql.tada: specifier: ^1.7.5 version: 1.7.5(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2) + graphql: + specifier: 16.6.0 + version: 16.6.0 graphql-request: specifier: ^7.0.1 version: 7.0.1(graphql@16.6.0) From 42f30624e9cdca60456dd983a5d6b46e21042b7c Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 27 May 2024 17:50:59 +0000 Subject: [PATCH 032/119] feat(pkgs/sushi): move graph config to sushi pkg --- apis/extractor/src/config.ts | 2 +- apps/evm/package.json | 1 - apps/evm/src/app/(landing)/api/stats/route.ts | 16 +- .../src/app/api/campaign/taskon/core/route.ts | 4 +- .../internal/tokens/components/TokenTable.tsx | 3 +- apps/evm/src/app/internal/tokens/config.ts | 10 +- apps/evm/src/app/pool/incentivize/page.tsx | 6 +- .../app/tokenlist-request/api/submit/route.ts | 11 +- apps/evm/src/config.ts | 7 +- apps/evm/src/lib/schema.ts | 10 +- .../ConcentratedPositionsTable.tsx | 8 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV3.tsx | 2 +- apps/evm/src/ui/pool/RewardsSection.tsx | 6 +- config/graph/CHANGELOG.md | 40 -- config/graph/README.md | 3 - config/graph/package.json | 53 -- config/graph/src/index.ts | 533 ------------------ config/graph/tsconfig.json | 16 - jobs/pool/package.json | 1 - .../pool/resolvers/blocks/blocksByChainIds.ts | 3 +- jobs/pool/src/incentives.ts | 6 +- jobs/pool/src/lib/chefs/masterChefV1/index.ts | 2 +- jobs/pool/src/lib/chefs/masterChefV2/index.ts | 2 +- jobs/pool/src/lib/chefs/minichef/fetchers.ts | 15 +- jobs/pool/src/lib/chefs/minichef/index.ts | 5 +- jobs/pool/src/lib/common/pairs.ts | 11 +- jobs/pool/src/lib/common/tokens.ts | 10 +- jobs/pool/src/pools.ts | 42 +- packages/graph-client-new/package.json | 1 - .../src/composite/chef-user-positions.ts | 25 +- .../src/composite/combined-user-positions.ts | 17 +- .../graph-client-new/src/lib/request-paged.ts | 2 +- .../src/subgraphs/blocks/queries/blocks.ts | 2 +- .../master-chef-v1/queries/user-positions.ts | 2 +- .../master-chef-v2/queries/user-positions.ts | 4 +- .../mini-chef/queries/user-positions.ts | 6 +- .../sushi-bar/queries/bar-history.ts | 2 +- .../src/subgraphs/sushi-bar/queries/bar.ts | 2 +- .../src/subgraphs/sushi-v2/queries/burns.ts | 8 +- .../src/subgraphs/sushi-v2/queries/factory.ts | 8 +- .../sushi-v2/queries/liquidity-positions.ts | 11 +- .../src/subgraphs/sushi-v2/queries/mints.ts | 15 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 8 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 8 +- .../src/subgraphs/sushi-v2/queries/swaps.ts | 15 +- .../src/subgraphs/sushi-v2/queries/tokens.ts | 19 +- .../sushi-v2/queries/transactions.ts | 8 +- .../src/subgraphs/sushi-v3/queries/burns.ts | 13 +- .../subgraphs/sushi-v3/queries/collects.ts | 13 +- .../subgraphs/sushi-v3/queries/day-datas.ts | 13 +- .../src/subgraphs/sushi-v3/queries/factory.ts | 6 +- .../src/subgraphs/sushi-v3/queries/mints.ts | 6 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 6 +- .../sushi-v3/queries/pools-by-token-pair.ts | 21 +- .../src/subgraphs/sushi-v3/queries/swaps.ts | 13 +- .../sushi-v3/queries/transactions.ts | 13 +- .../__tests__/furo-tokens.test.ts | 5 +- packages/graph-client/package.json | 1 - .../bentobox/crossChainBentoBoxKpis.ts | 6 +- .../bentobox/crossChainStrategyKpis.ts | 3 +- .../resolvers/bentobox/rebasesByChainIds.ts | 2 +- .../resolvers/blocks/blocksByChainIds.ts | 2 +- .../resolvers/bundles/bundlesByChainIds.ts | 12 +- .../resolvers/depreciated/crossChainToken.ts | 9 +- .../factories/factoriesByChainIds.ts | 17 +- .../factoryDaySnapshotsByChainIds.ts | 32 +- .../resolvers/furo/tokensByChainIds.ts | 2 +- .../liquidityPositionsByChainIds.ts | 10 +- .../resolvers/masterchef/index.ts | 57 +- .../graph-client/resolvers/pairs/pairById.ts | 41 +- .../resolvers/pairs/pairsByChainIds.ts | 12 +- .../resolvers/tokens/tokensByChainIds.ts | 10 +- .../resolvers/v3/poolsByTokenPair.ts | 103 ++-- .../resolvers/v3/v3factoriesByChainIds.ts | 101 ++-- packages/sushi/package.json | 7 + packages/sushi/src/config/angle.ts | 6 +- packages/sushi/src/config/furo.ts | 24 + packages/sushi/src/config/index.ts | 2 + packages/sushi/src/config/mini-chef.ts | 28 + packages/sushi/src/config/subgraph/hosts.ts | 31 + packages/sushi/src/config/subgraph/index.ts | 4 + .../sushi/src/config/subgraph/max-first.ts | 11 + .../config/subgraph/seconds-between-blocks.ts | 30 + .../src/config/subgraph/subgraphs/bentobox.ts | 22 + .../src/config/subgraph/subgraphs/blocks.ts | 50 ++ .../src/config/subgraph/subgraphs/furo.ts | 27 + .../src/config/subgraph/subgraphs/index.ts | 9 + .../subgraph/subgraphs/master-chef-v1.ts | 3 + .../subgraph/subgraphs/master-chef-v2.ts | 3 + .../config/subgraph/subgraphs/mini-chef.ts | 35 ++ .../config/subgraph/subgraphs/sushi-bar.ts | 2 + .../config/subgraph/subgraphs/sushiswap-v2.ts | 46 ++ .../config/subgraph/subgraphs/sushiswap-v3.ts | 42 ++ packages/sushi/src/config/sushiswap-v2.ts | 80 +-- pnpm-lock.yaml | 191 ------- 96 files changed, 803 insertions(+), 1372 deletions(-) delete mode 100644 config/graph/CHANGELOG.md delete mode 100644 config/graph/README.md delete mode 100644 config/graph/package.json delete mode 100644 config/graph/src/index.ts delete mode 100644 config/graph/tsconfig.json create mode 100644 packages/sushi/src/config/furo.ts create mode 100644 packages/sushi/src/config/mini-chef.ts create mode 100644 packages/sushi/src/config/subgraph/hosts.ts create mode 100644 packages/sushi/src/config/subgraph/index.ts create mode 100644 packages/sushi/src/config/subgraph/max-first.ts create mode 100644 packages/sushi/src/config/subgraph/seconds-between-blocks.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/bentobox.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/blocks.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/furo.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/index.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts create mode 100644 packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts diff --git a/apis/extractor/src/config.ts b/apis/extractor/src/config.ts index 5d660f58c5..cc939171a4 100644 --- a/apis/extractor/src/config.ts +++ b/apis/extractor/src/config.ts @@ -645,7 +645,7 @@ export const EXTRACTOR_CONFIG: Record< }, [ChainId.TELOS]: { client: createPublicClient(extractorClientConfig(ChainId.TELOS)), - factoriesV2: [sushiswapV2Factory(ChainId.TELOS)], + factoriesV2: [], factoriesV3: [], factoriesAlgebra: [ { diff --git a/apps/evm/package.json b/apps/evm/package.json index 150727bcf7..979686a249 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -31,7 +31,6 @@ "@sushiswap/dexie": "workspace:*", "@sushiswap/graph-client": "workspace:*", "@sushiswap/graph-client-new": "workspace:*", - "@sushiswap/graph-config": "workspace:*", "@sushiswap/hooks": "workspace:*", "@sushiswap/nextjs-config": "workspace:*", "@sushiswap/react-query": "workspace:*", diff --git a/apps/evm/src/app/(landing)/api/stats/route.ts b/apps/evm/src/app/(landing)/api/stats/route.ts index 293ab00a85..a644f51f51 100644 --- a/apps/evm/src/app/(landing)/api/stats/route.ts +++ b/apps/evm/src/app/(landing)/api/stats/route.ts @@ -1,10 +1,12 @@ import { getBuiltGraphSDK } from '@sushiswap/graph-client' -import { BENTOBOX_ENABLED_NETWORKS } from '@sushiswap/graph-config' +import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' +import { getSushiV2Factory } from '@sushiswap/graph-client-new/sushi-v2' import { NextResponse } from 'next/server' import { DISABLED_ANALYTICS_CHAIN_IDS } from 'src/config' import { getAllPrices } from 'src/lib/get-all-prices' import { ChainId } from 'sushi/chain' import { + BENTOBOX_SUPPORTED_CHAIN_IDS, SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, } from 'sushi/config' @@ -30,6 +32,16 @@ interface ExchangeData { const getV2Data = async () => { const sdk = getBuiltGraphSDK() + // const { data } = await fetchMultichain({ + // chainIds: SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.filter( + // (c) => + // !DISABLED_ANALYTICS_CHAIN_IDS.includes( + // c as (typeof DISABLED_ANALYTICS_CHAIN_IDS)[number], + // ), + // ), + // fetch: getSushiV2Factory, + // }) + const { factories } = await sdk.Factories({ chainIds: SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.filter( (c) => @@ -79,7 +91,7 @@ const getBentoTvl = async () => { const sdk = getBuiltGraphSDK() const { rebases } = await sdk.RebasesByChainIds({ first: 1000, - chainIds: BENTOBOX_ENABLED_NETWORKS, + chainIds: BENTOBOX_SUPPORTED_CHAIN_IDS, }) const prices = await getAllPrices() return rebases.reduce((acc, cur) => { diff --git a/apps/evm/src/app/api/campaign/taskon/core/route.ts b/apps/evm/src/app/api/campaign/taskon/core/route.ts index 3a236a0515..a11d80b6c0 100644 --- a/apps/evm/src/app/api/campaign/taskon/core/route.ts +++ b/apps/evm/src/app/api/campaign/taskon/core/route.ts @@ -1,7 +1,7 @@ import { getBuiltGraphSDK } from '@sushiswap/graph-client' -import { SUSHISWAP_V3_SUBGRAPH_URL } from '@sushiswap/graph-config' import { NextRequest, NextResponse } from 'next/server' -import { ChainId } from 'sushi' +import { ChainId } from 'sushi/chain' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { getAddress } from 'viem' import { z } from 'zod' diff --git a/apps/evm/src/app/internal/tokens/components/TokenTable.tsx b/apps/evm/src/app/internal/tokens/components/TokenTable.tsx index 969d487d6e..22894282ff 100644 --- a/apps/evm/src/app/internal/tokens/components/TokenTable.tsx +++ b/apps/evm/src/app/internal/tokens/components/TokenTable.tsx @@ -1,7 +1,6 @@ 'use client' import { XIcon } from '@heroicons/react-v1/outline' -import { CHAIN_NAME } from '@sushiswap/graph-config' import { DataTable } from '@sushiswap/ui' import { CheckIcon, NetworkIcon } from '@sushiswap/ui/components/icons' import { createColumnHelper } from '@tanstack/react-table' @@ -31,7 +30,7 @@ function useColumns() { width={20} height={20} /> -
{CHAIN_NAME[chainId] ?? chainName[chainId]}
+
{chainName[chainId]}
) }, diff --git a/apps/evm/src/app/internal/tokens/config.ts b/apps/evm/src/app/internal/tokens/config.ts index f41c7e5066..2571963a2c 100644 --- a/apps/evm/src/app/internal/tokens/config.ts +++ b/apps/evm/src/app/internal/tokens/config.ts @@ -1,9 +1,3 @@ -import { - SUSHISWAP_ENABLED_NETWORKS, - TRIDENT_ENABLED_NETWORKS, -} from '@sushiswap/graph-config' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' -export const TOKENS_SUPPORTED_CHAIN_IDS = [ - ...TRIDENT_ENABLED_NETWORKS, - ...SUSHISWAP_ENABLED_NETWORKS, -] +export const TOKENS_SUPPORTED_CHAIN_IDS = [...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS] diff --git a/apps/evm/src/app/pool/incentivize/page.tsx b/apps/evm/src/app/pool/incentivize/page.tsx index e75f2aa6b5..3d4391ba29 100644 --- a/apps/evm/src/app/pool/incentivize/page.tsx +++ b/apps/evm/src/app/pool/incentivize/page.tsx @@ -43,7 +43,7 @@ import { } from 'src/lib/wagmi/systems/Checker/Provider' import { Chain } from 'sushi/chain' import { - ANGLE_ENABLED_NETWORKS, + ANGLE_SUPPORTED_CHAIN_IDS, SushiSwapV3ChainId, isWNativeSupported, } from 'sushi/config' @@ -65,7 +65,7 @@ const APPROVE_TAG = 'approve-incentivize' export default function Page() { return ( @@ -202,7 +202,7 @@ const Incentivize = withCheckerRoot(() => { title="On which network would you like to add rewards?" selectedNetwork={chainId} onSelect={setNetwork} - networks={ANGLE_ENABLED_NETWORKS} + networks={ANGLE_SUPPORTED_CHAIN_IDS} /> - SWAP_API_ENABLED_NETWORKS.includes(chainId as SwapApiEnabledChainId) + SWAP_API_SUPPORTED_CHAIN_IDS.includes(chainId as SwapApiEnabledChainId) export const DISABLED_CHAIN_IDS = [ ChainId.BOBA_AVAX, diff --git a/apps/evm/src/lib/schema.ts b/apps/evm/src/lib/schema.ts index d10bf1d8cc..e5ee0fd561 100644 --- a/apps/evm/src/lib/schema.ts +++ b/apps/evm/src/lib/schema.ts @@ -1,7 +1,5 @@ -import { - BENTOBOX_ENABLED_NETWORKS, - FURO_ENABLED_NETWORKS, -} from '@sushiswap/graph-config' +import { FURO_SUPPORTED_CHAIN_IDS } from 'node_modules/sushi/dist/config/furo' +import { BENTOBOX_SUPPORTED_CHAIN_IDS } from 'sushi/config' import { z } from 'zod' export const bentoBoxTokensSchema = z.object({ @@ -12,7 +10,7 @@ export const bentoBoxTokensSchema = z.object({ chainIds: z .string() .optional() - .default(BENTOBOX_ENABLED_NETWORKS.join(',')) + .default(BENTOBOX_SUPPORTED_CHAIN_IDS.join(',')) .transform((val) => val.split(',').map((v) => parseInt(v))), }) @@ -28,6 +26,6 @@ export const furoTokensSchema = z.object({ chainIds: z .string() .optional() - .default(FURO_ENABLED_NETWORKS.join(',')) + .default(FURO_SUPPORTED_CHAIN_IDS.join(',')) .transform((val) => val.split(',').map((v) => parseInt(v))), }) diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx index ecdd7fbda7..01d2852a49 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx @@ -1,7 +1,6 @@ 'use client' import { PlusIcon } from '@heroicons/react/20/solid' -import { SUSHISWAP_V3_ENABLED_NETWORKS } from '@sushiswap/graph-config' import { Button, Card, @@ -16,7 +15,10 @@ import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' import { useConcentratedLiquidityPositions } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions' import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' -import { SushiSwapV3ChainId } from 'sushi/config' +import { + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + SushiSwapV3ChainId, +} from 'sushi/config' import { useAccount } from 'wagmi' import { usePoolFilters } from '../PoolsFiltersProvider' import { @@ -57,7 +59,7 @@ export const ConcentratedPositionsTable: FC = const chainIds = useMemo(() => { if (chainId) return [chainId] as SushiSwapV3ChainId[] - return SUSHISWAP_V3_ENABLED_NETWORKS + return [...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS] }, [chainId]) const [paginationState, setPaginationState] = useState({ diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 9319d64d78..0d0104b3ae 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -2,7 +2,6 @@ import { Pool } from '@sushiswap/client' import { getBuiltGraphSDK } from '@sushiswap/graph-client' -import { SUSHISWAP_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' import { Card, CardContent, @@ -17,6 +16,7 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV2ChainId, isSushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { TX_AMOUNT_IN_V2_COLUMN, TX_AMOUNT_OUT_V2_COLUMN, diff --git a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx index 3d36c607ff..ad4e1472f2 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx @@ -2,7 +2,6 @@ import { Pool } from '@sushiswap/client' import { getBuiltGraphSDK } from '@sushiswap/graph-client' -import { SUSHISWAP_V3_SUBGRAPH_URL } from '@sushiswap/graph-config' import { Card, CardContent, @@ -17,6 +16,7 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV3ChainId, isSushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { TX_AMOUNT_IN_V3_COLUMN, TX_AMOUNT_OUT_V3_COLUMN, diff --git a/apps/evm/src/ui/pool/RewardsSection.tsx b/apps/evm/src/ui/pool/RewardsSection.tsx index 45d8546130..49f3a26b08 100644 --- a/apps/evm/src/ui/pool/RewardsSection.tsx +++ b/apps/evm/src/ui/pool/RewardsSection.tsx @@ -14,7 +14,7 @@ import { import { Carousel } from '@sushiswap/ui/components/carousel' import { ColumnDef, PaginationState } from '@tanstack/react-table' import React, { FC, useCallback, useMemo, useState } from 'react' -import { ANGLE_ENABLED_NETWORKS } from 'sushi/config' +import { ANGLE_SUPPORTED_CHAIN_IDS } from 'sushi/config' import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' @@ -37,7 +37,7 @@ export const RewardsSection: FC = () => { const { address } = useAccount() const { chainIds, tokenSymbols } = usePoolFilters() const { data, isInitialLoading } = useAngleRewardsMultipleChains({ - chainIds: ANGLE_ENABLED_NETWORKS, + chainIds: ANGLE_SUPPORTED_CHAIN_IDS, account: address, }) @@ -87,7 +87,7 @@ export const RewardsSection: FC = () => { <> [0] | number> containerWidth={1280} - slides={chainsSorted || ANGLE_ENABLED_NETWORKS} + slides={chainsSorted || ANGLE_SUPPORTED_CHAIN_IDS} render={(row) => typeof row === 'number' ? ( diff --git a/config/graph/CHANGELOG.md b/config/graph/CHANGELOG.md deleted file mode 100644 index 6f5813dbdb..0000000000 --- a/config/graph/CHANGELOG.md +++ /dev/null @@ -1,40 +0,0 @@ -# @sushiswap/graph-config - -## 1.0.0 - -### Patch Changes - -- Updated dependencies [[`83d813fb3`](https://github.com/sushiswap/sushiswap/commit/83d813fb338eb5488cbd47513fd525342fbcf81b)]: - - sushi@3.0.0 - -## 0.1.3 - -### Patch Changes - -- Updated dependencies [[`c6d6cc5db`](https://github.com/sushiswap/sushiswap/commit/c6d6cc5db4cc614f3931ee3a325547967c86c51a)]: - - @sushiswap/chain@0.1.2 - -## 0.1.2 - -### Patch Changes - -- Updated dependencies [d6b7f8443] - - @sushiswap/chain@0.1.1 - -## 0.1.1 - -### Patch Changes - -- 06a133ae: @sushiswap/graph-client rewrite - - @sushiswap/cli revenue action - -## 0.1.0 - -### Minor Changes - -- b3761c7c: initial release - -### Patch Changes - -- @sushiswap/chain@0.1.0 diff --git a/config/graph/README.md b/config/graph/README.md deleted file mode 100644 index 9c03981ac3..0000000000 --- a/config/graph/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Graph Config - -... diff --git a/config/graph/package.json b/config/graph/package.json deleted file mode 100644 index a033061442..0000000000 --- a/config/graph/package.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "name": "@sushiswap/graph-config", - "version": "1.0.0", - "description": "Sushi Graph Config", - "keywords": [ - "sushi", - "graph", - "config" - ], - "homepage": "https://www.sushi.com", - "repository": { - "type": "git", - "url": "https://github.com/sushiswap/sushiswap.git", - "directory": "packages/config/graph" - }, - "license": "MIT", - "author": "LufyCZ ", - "sideEffects": false, - "type": "module", - "main": "dist/index.js", - "source": "src/index.ts", - "typings": "dist/index.d.ts", - "files": [ - "dist" - ], - "scripts": { - "build": "tsc", - "check": "tsc --pretty --noEmit", - "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", - "dev": "tsc -w", - "test": "jest --passWithNoTests" - }, - "jest": { - "preset": "@sushiswap/jest-config" - }, - "devDependencies": { - "@sushiswap/jest-config": "workspace:*", - "@tsconfig/esm": "1.0.4", - "@tsconfig/node18": "18.2.2", - "@tsconfig/strictest": "2.0.2", - "jest": "29.7.0", - "sushi": "workspace:*", - "typescript": "5.2.2" - }, - "peerDependencies": { - "sushi": "workspace:*" - }, - "peerDependenciesMeta": { - "sushi": { - "optional": false - } - } -} diff --git a/config/graph/src/index.ts b/config/graph/src/index.ts deleted file mode 100644 index 6da54ae08f..0000000000 --- a/config/graph/src/index.ts +++ /dev/null @@ -1,533 +0,0 @@ -import { ChainId } from 'sushi/chain' - -const MAX_FIRST_PARTIAL: Partial> = { - [ChainId.METIS]: 100, -} - -export const MAX_FIRST = new Proxy(MAX_FIRST_PARTIAL, { - get: (target, name: any) => { - return name in target ? target[name as ChainId] : 1000 - }, -}) as Record - -export const TRIDENT_ENABLED_NETWORKS = [ - ChainId.OPTIMISM, - ChainId.POLYGON, - ChainId.KAVA, - ChainId.METIS, - ChainId.BTTC, - ChainId.ARBITRUM, - ChainId.AVALANCHE, - ChainId.BSC, -] as const - -export type TridentChainId = (typeof TRIDENT_ENABLED_NETWORKS)[number] - -export const SUSHISWAP_ENABLED_NETWORKS = [ - ChainId.ARBITRUM, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.CELO, - ChainId.ETHEREUM, - ChainId.FANTOM, - ChainId.FUSE, - ChainId.GNOSIS, - ChainId.MOONBEAM, - ChainId.MOONRIVER, - ChainId.POLYGON, - ChainId.HARMONY, - ChainId.ARBITRUM_NOVA, - ChainId.BOBA, - // ChainId.BOBA_AVAX, - ChainId.BOBA_BNB, - ChainId.BASE, - ChainId.SCROLL, - ChainId.KAVA, - ChainId.METIS, - ChainId.BTTC, - ChainId.FILECOIN, - ChainId.ZETACHAIN, - ChainId.THUNDERCORE, - ChainId.CORE, - ChainId.HAQQ, - ChainId.OPTIMISM, - ChainId.LINEA, - ChainId.POLYGON_ZKEVM, - ChainId.BLAST, - ChainId.SKALE_EUROPA, - // ChainId.PALM, - // ChainId.HECO, - // ChainId.OKEX -] as const - -export type SushiSwapChainId = (typeof SUSHISWAP_ENABLED_NETWORKS)[number] - -export const SUSHISWAP_V3_ENABLED_NETWORKS = [ - ChainId.ETHEREUM, - ChainId.ARBITRUM_NOVA, - ChainId.ARBITRUM, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.BOBA, - ChainId.FANTOM, - ChainId.FUSE, - ChainId.GNOSIS, - ChainId.MOONRIVER, - ChainId.OPTIMISM, - ChainId.POLYGON, - ChainId.POLYGON_ZKEVM, - ChainId.THUNDERCORE, - ChainId.CORE, - ChainId.BASE, - ChainId.LINEA, - ChainId.SCROLL, - ChainId.KAVA, - ChainId.METIS, - ChainId.BTTC, - ChainId.FILECOIN, - ChainId.HAQQ, - ChainId.ZETACHAIN, - ChainId.BLAST, - ChainId.SKALE_EUROPA, -] -export type SushiSwapV3ChainId = (typeof SUSHISWAP_V3_ENABLED_NETWORKS)[number] - -export const SWAP_ENABLED_NETWORKS = Array.from( - new Set([ - ...SUSHISWAP_ENABLED_NETWORKS, - ...SUSHISWAP_V3_ENABLED_NETWORKS, - ...TRIDENT_ENABLED_NETWORKS, - ]), -) - -export type SwapSupportedChainIds = typeof SWAP_ENABLED_NETWORKS -export type SwapSupportedChainId = SwapSupportedChainIds[number] - -export const GRAPH_HOST = 'api.thegraph.com/subgraphs/name' -export const PENDING_GRAPH_HOST = 'api.thegraph.com/subgraphs/id' - -export const KAVA_HOST = 'pvt.graph.kava.io/subgraphs/name' -export const PENDING_KAVA_HOST = 'pvt.graph.kava.io/subgraphs/id' - -export const METIS_HOST = 'andromeda.thegraph.metis.io/subgraphs/name' -export const PENDING_METIS_HOST = 'andromeda.thegraph.metis.io/subgraphs/id' - -export const FILECOIN_HOST = 'sushi.laconic.com/subgraphs/name' -export const STUDIO_HOST = 'api.studio.thegraph.com/query/32073' -export const THUNDERCORE_HOST = 'graph-node.thundercore.com/subgraphs/name' -export const CORE_HOST = 'thegraph.coredao.org/subgraphs/name' -export const HAQQ_HOST = 'haqq.graph.p2p.org/subgraphs/name' -export const PCS_STUDIO_HOST = 'api.studio.thegraph.com/query/45376' -export const SUSHI_GOLDSKY_HOST = - 'api.goldsky.com/api/public/project_cls39ugcfyhbq01xl9tsf6g38/subgraphs' -export const SUSHI_DEDICATED_GOLDSKY_HOST = - 'api.goldsky.com/api/public/project_clslspm3c0knv01wvgfb2fqyq/subgraphs' -export const GOLDSKY_COMMUNITY_HOST = - 'api.goldsky.com/api/public/project_cl8ylkiw00krx0hvza0qw17vn/subgraphs' -export const WAGMI_METIS_HOST = 'metis.graph.wagmi.com/subgraphs/name' -export const WAGMI_KAVA_HOST = 'kava.graph.wagmi.com/subgraphs/name' -export const METIS_0XGRAPH_HOST = 'metisapi.0xgraph.xyz/subgraphs/name' -export const SKALE_HOST = - 'elated-tan-skat-graph.skalenodes.com:8000/subgraphs/name' - -const SUSHI_DOMAIN_RESTRICTED_API_KEY = '5d5d00365d2b8f675e12952d6eb5b9b0' -export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${ - process.env['SUSHI_GRAPH_KEY'] ?? SUSHI_DOMAIN_RESTRICTED_API_KEY -}/subgraphs/id` - -export const CHAIN_NAME: Record = { - [ChainId.ARBITRUM]: 'Arbitrum', - [ChainId.AVALANCHE]: 'Avalanche', - [ChainId.BSC]: 'Bsc', - [ChainId.ETHEREUM]: 'Ethereum', - [ChainId.FANTOM]: 'Fantom', - [ChainId.GNOSIS]: 'Gnosis', - // [ChainId.GÖRLI]: 'Görli', - [ChainId.HARMONY]: 'Harmony', - [ChainId.MOONBEAM]: 'Moonbeam', - [ChainId.MOONRIVER]: 'Moonriver', - [ChainId.OPTIMISM]: 'Optimism', - [ChainId.POLYGON]: 'Polygon', - [ChainId.TELOS]: 'Telos', - [ChainId.CELO]: 'Celo', - [ChainId.FUSE]: 'Fuse', - [ChainId.OKEX]: 'OKEx', - [ChainId.HECO]: 'HECO', - [ChainId.PALM]: 'Palm', - [ChainId.KAVA]: 'Kava', - [ChainId.METIS]: 'Metis', - [ChainId.BOBA]: 'Boba', - [ChainId.ARBITRUM_NOVA]: 'Arbitrum Nova', - [ChainId.BOBA_AVAX]: 'Boba Avax', - [ChainId.BOBA_BNB]: 'Boba BNB', - [ChainId.BTTC]: 'BitTorrent', - [ChainId.THUNDERCORE]: 'ThunderCore', - [ChainId.POLYGON_ZKEVM]: 'Polygon zkEVM', - [ChainId.CORE]: 'Core', - [ChainId.BASE]: 'Base', - [ChainId.LINEA]: 'Linea', - [ChainId.SCROLL]: 'Scroll', - [ChainId.FILECOIN]: 'Filecoin', - [ChainId.HAQQ]: 'HAQQ', - [ChainId.ZETACHAIN]: 'ZetaChain', - [ChainId.BLAST]: 'Blast', - [ChainId.SKALE_EUROPA]: 'Skale Europa', -} as const - -export const SUBGRAPH_HOST: Record = { - [ChainId.ARBITRUM]: GRAPH_HOST, - [ChainId.ARBITRUM_NOVA]: SUSHI_DEDICATED_GOLDSKY_HOST, - [ChainId.AVALANCHE]: GRAPH_HOST, - [ChainId.BSC]: GRAPH_HOST, - [ChainId.CELO]: GRAPH_HOST, - [ChainId.ETHEREUM]: GRAPH_HOST, - [ChainId.FANTOM]: GRAPH_HOST, - [ChainId.FUSE]: GRAPH_HOST, - [ChainId.GNOSIS]: GRAPH_HOST, - // [ChainId.GÖRLI]: GRAPH_HOST, - [ChainId.HARMONY]: GRAPH_HOST, - [ChainId.KAVA]: KAVA_HOST, - [ChainId.METIS]: METIS_HOST, - [ChainId.MOONBEAM]: GRAPH_HOST, - [ChainId.MOONRIVER]: GRAPH_HOST, - [ChainId.OPTIMISM]: GRAPH_HOST, - [ChainId.POLYGON]: GRAPH_HOST, - [ChainId.POLYGON_ZKEVM]: STUDIO_HOST, - [ChainId.BOBA]: GRAPH_HOST, - // [ChainId.BOBA_AVAX]: SUSHI_HOST, - [ChainId.BOBA_BNB]: SUSHI_DEDICATED_GOLDSKY_HOST, - [ChainId.BTTC]: SUSHI_DEDICATED_GOLDSKY_HOST, - [ChainId.OKEX]: '', - [ChainId.HECO]: '', - // [ChainId.KOVAN]: '', - [ChainId.THUNDERCORE]: THUNDERCORE_HOST, - [ChainId.CORE]: CORE_HOST, - [ChainId.BASE]: STUDIO_HOST, - [ChainId.LINEA]: DECENTRALIZED_NETWORK_HOST, - [ChainId.SCROLL]: STUDIO_HOST, - [ChainId.FILECOIN]: FILECOIN_HOST, - [ChainId.HAQQ]: HAQQ_HOST, - [ChainId.ZETACHAIN]: SUSHI_GOLDSKY_HOST, - [ChainId.BLAST]: SUSHI_DEDICATED_GOLDSKY_HOST, - [ChainId.SKALE_EUROPA]: SKALE_HOST, -} as const - -export const BENTOBOX_ENABLED_NETWORKS = [ - ChainId.ETHEREUM, - ChainId.POLYGON, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.FANTOM, - ChainId.GNOSIS, - ChainId.ARBITRUM, - ChainId.CELO, - ChainId.MOONRIVER, - ChainId.MOONBEAM, - ChainId.OPTIMISM, - ChainId.HARMONY, - ChainId.KAVA, - ChainId.BTTC, -] as const - -export const bentoBoxChainIds = BENTOBOX_ENABLED_NETWORKS - -export type BentoBoxChainId = (typeof BENTOBOX_ENABLED_NETWORKS)[number] - -export const isBentoBoxChainId = ( - chainId: ChainId, -): chainId is BentoBoxChainId => - BENTOBOX_ENABLED_NETWORKS.includes(chainId as BentoBoxChainId) - -export const BENTOBOX_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/8HYeoDopVqqvb5RJEV2TtSzFsouYPz8cownnG3mbhiGy`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/6kJg5kFoQY8B8Ge2hqswHMqZDcmsR1TLUUz7AKov69fy`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/EhYaJodF1WQjKgxx1ZC63goeCwp5swD4AQRdaKXBm2xk`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/BggyE3r5snDsjx19jgZcbiBH7cbtrkpjvyGLFHMdXekd`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/AWD9Ca7KNZg7grfWosKTRqZTjPrJVgS5P5b37pDpN4CT`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/9jn9kA6SKCNxXQSqb93zZPLdLaru4FeZBwLNWAK4nfZ2`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/JZFyMKR4jnsFQ58q7dT6nbXenTzNgE176zTejc6Gf8Z`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/5DwkvjxPGVFFaWEMM68g1yztDdhCgJEYAxS6FuhkajzR`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/73XEV6UQKpPSJn68WZBAYTwALcZtFJkFYn58ZoZUb7tn`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/7wA5gqWNP4E1dPWBsTYvz5eQSDbtYDFgyU5BGdHr2UKp`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8b4Hy4Kn7jCNAf9JFrqHb24LsqmapG4HrAsCrwdJf9Nu`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/Bioj7N3Rf2n7iBq9PVoaMie3WiuzPze9NMi7aSye7LFc`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/bentobox-bttc/gn`, -} - -export const BLOCKS_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/236pc6mnPH2EdGJxR5wunibyGsagq1JsSx5e2hx5tdoE`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/HHpzhtyGrTNSbhtjgZyYG4aG538fKpV21dsCBshLnKDg`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 52% synced - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 88% synced - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 36% synced - // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, - // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/9JvasV5RyonCHn4bFR22VtsXGNuHsQCUiMJPQoGxqeVX`, - // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 62% synced - [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/blocks-kava`, - [ChainId.METIS]: `${METIS_HOST}/sushiswap/blocks-metis`, - // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/5d1ZCJQCEqsfCqLRRU5iQ9ewg79tuNqZLPMkgUcpmLsD`, - [ChainId.BOBA_BNB]: `${SUSHI_GOLDSKY_HOST}/blocks/boba-bnb/gn`, - [ChainId.BTTC]: `${SUSHI_GOLDSKY_HOST}/blocks/bttc-mainnet/gn`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushiswap/blocks-thundercore`, - [ChainId.CORE]: `${CORE_HOST}/sushiswap/blocks-core`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/GU5jJMiEHpomqddtbsXC3Avj3EweLHk6up1pvy2TCQQZ`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/4rj8wdVvkDGzj9w9UfT48zyXGQtLbULW4ygxDBG9Xza1`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/F4oYLjz8kVPFcY1iGc8S4rAaHnEZsUt6ixXSvFXACcGh`, - [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/blocks`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/blocks-haqq`, - [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/blocks-zetachain/1.0.0/gn`, - [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/blocks-blast/gn`, - [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/blocks-skale-europa`, -} as const - -export const SECONDS_BETWEEN_BLOCKS: Record = { - [ChainId.ETHEREUM]: 12, - [ChainId.GNOSIS]: 5, - [ChainId.POLYGON]: 2, - [ChainId.POLYGON_ZKEVM]: 5, - [ChainId.FANTOM]: 2, - [ChainId.BSC]: 3, - [ChainId.HARMONY]: 2, - [ChainId.AVALANCHE]: 2, - [ChainId.CELO]: 5, - [ChainId.ARBITRUM]: 0.25, - [ChainId.OKEX]: 3.8, - [ChainId.HECO]: 3, - [ChainId.MOONRIVER]: 12.2, - [ChainId.FUSE]: 5, - // [ChainId.KOVAN]: 4, - [ChainId.MOONBEAM]: 12.2, - [ChainId.OPTIMISM]: 2, - [ChainId.KAVA]: 6.3, - [ChainId.METIS]: 4.5, - [ChainId.ARBITRUM_NOVA]: 1, - [ChainId.BOBA]: 250, - [ChainId.BOBA_AVAX]: 612, - [ChainId.BOBA_BNB]: 0.5, - [ChainId.BTTC]: 2, - [ChainId.THUNDERCORE]: 1, - [ChainId.SCROLL]: 3, -} as const - -export const SUSHI_BAR_SUBGRAPH_URL = - 'api.thegraph.com/subgraphs/name/sushi-labs/xsushi' as const - -export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/5DpWu6oLUEwKYLcya5fJf3MW5CE6yEMnZ8iwekmTNAbV`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8yBXBTMfdhsoE5QCf7KnoPmQb7QAWtRzESfYjiCjGEM9`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/24xqSifM5xPfGrW8MDwRhgaDsq7uaP2762fmxjyxJzot`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/8WcZLSs8QUSJptPbpBScoDafmp8E9whnSqYJc9TMyYFs`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/J7wEPt9nDHCno143dk6whAUesPyszxPqCDKhqDqWJHuz`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/FrcJbZ3j9GZ3vF8G9uVEFQZeTD8uiCc1A1eujtxYUwYH`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/7czeiia7ZXvsW45szX2w8EK1ZNgZWZET83zYCwE6JT9x`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/6MMVBsG9hgS8BzLZfPnU8KJdGiEFbd3CyNXVG6gQKCdQ`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/DuB755c1VYFSLLhq4b783ryPcvYdsvimGuZzBpFqoapX`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/3k9M7aZqeJXWLUogc2FSFBgXuxej2qstKSUNBXcPCcK5`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-arbitrum-nova/gn`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/4KvWjKY89DefJ6mPMASCTUDAZ6dyHSu7osCNQqaaaY3y`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/9cssJAh4EyzEWqZySBFguiXyygwZZAGBE3ETsGetNUK`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/8obLTNcEuGMieUt6jmrDaQUhWyj2pys26ULeP3gFiGNv`, - [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-boba-bnb/gn`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/7pXNLCc12pRM3bBPUAP9ZoEvkgUCjaBe9QC3DV9L2qzE`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/CiW3nquNZjKDoMfR4TbSpB4ox8Pq66FDxwSsohigSdxw`, - [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-kava/gn`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v2-metis`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-bttc/gn`, - [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/v2-filecoin`, - [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/v2-zetachain/1.0.0/gn`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/v2-thundercore`, - [ChainId.CORE]: `${CORE_HOST}/sushi-v2/v2-core`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v2-haqq`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/G4sRz1YAcEFYFewGLQ9bt76gQuP1oyuzhVSTvs9bj7qn`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, - [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-blast/gn`, - [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v2-skale-europa`, -} as const - -export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/96EYD64NqmnFxMELu2QLWB95gqCmA9N96ssYsZfFiYHg`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/4BxsTB5ADnYdgJgdmzyddmnDGCauctDia28uxB1hgTBE`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/FiJDXMFCBv88GP17g2TtPh8BcA8jZozn5WRW7hCN7cUT`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/71VWMKCvsWRqrJouxmEQwSEMqqnqiiVYSxTZvzR8PHRx`, - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/5nnoU1nUFeWqtXgbpC54L9PWdpgo7Y9HYinR3uTMsfzs`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/4BzEvR229mwKjneCbJTDM8dsS3rjgoKcXt5C7J1DaUxK`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/8P62wYTJvhd6Aas656hVYhsccsGo2ihrJShaEnCoLJRK`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/GFvGfWBX47RNnvgwL6SjAAf2mrqrPxF91eA53F4eNegW`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/F46W9YVQXGism5iN9NZNhKm2DQCvjhr4u847rL1tRebS`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/Dr3FkshPgTMMDwxckz3oZdwLxaPcbzZuAbE92i6arYtJ`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/CqLnQY1d6DLcBYu7aZvGmt17LoNdTe4fDYnGbE2EgotR`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/E2x2gmtYdm2HX3QXorUBY4KegfGu79Za6TEQYjVrx15c`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v3/v3-thundercore`, - [ChainId.CORE]: `${CORE_HOST}/sushi-v3/v3-core-fix`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/Cz4Snpih41NNNPZcbj1gd3fYXPwFr5q92iWMoZjCarEb`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/E2vqqvSzDdUiPP1r7PFnPKZQ34pAhNZjc6rEcdj3uE5t`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/5gyhoHx768oHn3GxsHsEc7oKFMPFg9AH8ud1dY8EirRc`, - [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-kava/gn`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v3-metis`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-bttc/gn`, - [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/v3-filecoin`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v3-haqq`, - [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/v3-zetachain/1.0.0/gn`, - [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v3-blast/gn`, - [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v3-skale-europa`, -} - -export const TRIDENT_SUBGRAPH_URL: Record = { - [ChainId.POLYGON]: `${GRAPH_HOST}/sushi-v2/trident-polygon`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushi-v2/trident-optimism`, - [ChainId.KAVA]: `${KAVA_HOST}/sushi-qa/trident-kava`, - [ChainId.METIS]: `${METIS_HOST}/sushi-v2/trident-metis`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/trident-bttc/gn`, - [ChainId.ARBITRUM]: `${GRAPH_HOST}/sushi-v2/trident-arbitrum`, - [ChainId.BSC]: `${GRAPH_HOST}/sushi-v2/trident-bsc`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushi-v2/trident-avalanche`, -} as const - -export const MINICHEF_ENABLED_NETWORKS = [ - ChainId.POLYGON, - ChainId.GNOSIS, - // ChainId.HARMONY, - ChainId.ARBITRUM, - ChainId.CELO, - ChainId.MOONRIVER, - ChainId.FUSE, - ChainId.FANTOM, - ChainId.MOONBEAM, - ChainId.KAVA, - ChainId.METIS, - ChainId.BOBA, - ChainId.ARBITRUM_NOVA, - ChainId.BTTC, - ChainId.OPTIMISM, - ChainId.AVALANCHE, - ChainId.BSC, -] as const - -export type MiniChefChainId = (typeof MINICHEF_ENABLED_NETWORKS)[number] - -export const isMiniChefChainId = ( - chainId: ChainId, -): chainId is MiniChefChainId => - MINICHEF_ENABLED_NETWORKS.includes(chainId as MiniChefChainId) - -export const MINICHEF_SUBGRAPH_URL: Record = { - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/DaSTfQbRTQq63HYGuAWusisUj23PFuisbhxHkjRHknex`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/FhtxFSxNCjVGknieajtwEzjruGFhTcAW9tWuADQ3tzNK`, - // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // Broken, no fix has been deployed or migrated - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/9oRuyFt4J6nHFpL5kWfkp3yocjzmZo1D8hKjqyKNuix`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/Aodb24RhU4p1p6p4ooq1Rwu5aVXhULAvXEGg8QEaPBvg`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/ExyevfNrFJ7EhTK74MDJ823h6oKkqUpwnVP1h3EuN8oa`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/GdVirDDQ2fg43pjt2cZiH9Uar7bhGfySvm4jiQ9fVD4u`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/GJXdaT5S7BHvGNxJSLJsMH36tB4w3Z7eES6jSDJuqddg`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/35kjzcBhiTgS3LLrhRFFGVGRfapzQBDC2wEWydvG2jZc`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/8s62qVWURfEebmaYkxDBwHLmWn7qF1dyucX2Tj6n3YPj`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/5DVXnbAu4uqKLbczLeAErLsLyQdxoZ1BjvCn1buWyZf8`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8M2Tyj1bVFp9paR9rcysn17V9Y1MbMgL9YEZQ5q4aSZH`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/CuaMtyA7JyzEf5mqsrWBwhdfLFfz1QU2js17R77wAyYB`, - [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-kava/gn`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-bttc/gn`, - [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushiswap/minichef-optimism`, - [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushiswap/minichef-avalanche`, - [ChainId.BSC]: `${GRAPH_HOST}/sushiswap/minichef-bsc`, - [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-kava/gn`, - [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, - [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-bttc/gn`, -} - -export const MASTERCHEF_V1_SUBGRAPH_URL = - `${DECENTRALIZED_NETWORK_HOST}/HoVZ6mXTx3dvoqaUwcJozuowz7xijzDLmfuBWLed6rqi` as const -export const MASTERCHEF_V2_SUBGRAPH_URL = - `${DECENTRALIZED_NETWORK_HOST}/FAa1YU79pPDUKj8vtkUPZGzCcPVS6Edg1md5LsRHSKWb` as const - -export const FURO_ENABLED_NETWORKS = [ - ChainId.ETHEREUM, - ChainId.ARBITRUM, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.FANTOM, - ChainId.GNOSIS, - ChainId.HARMONY, - ChainId.MOONBEAM, - ChainId.MOONRIVER, - ChainId.OPTIMISM, - ChainId.POLYGON, - ChainId.HAQQ, - ChainId.CORE, - ChainId.THUNDERCORE, - ChainId.BTTC, -] as const - -export const FURO_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/D8vYJpKN5SEHUkUWKSuorsL6FRt7hAQMnywnC4e93ygf`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8eHhPeKDr646JH5KUBBcabAJzkWmLfu6pqBtpXQHa37F`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8LVoX3JPEVAak8T8GoEfdJudMoP2bsGwd9tszJxo3Rnx`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/2wBYezghRA3hEJLQB4njUZGDNxCdU3u2gsLP5yVvBqKk`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/E98zSR5UZBGBgQe2SSLZ5R6yj5GPqKDJcQJNDHTeV3cS`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/5ToxB5xubMh9osdEDeX98JBAyzUVwkReGXAT1CzQhZCB`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/9D9C3ppoDE1zuZk5adznngKomLYS8NnC9zxniSS8vzgH`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/HJxpcsmaPV3L6PsqGFBHLczeMnL7bEgmL1D65edGx8pf`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/9ZqdKjfu7o9dX1RThXHDV9EqMn5CTvgpsPKKbpANg8yC`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8KnsmppMf9k6Qvyixxwmny7dYugTV7XT4htHTfyq3d69`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/4KsDNsyJjKX6bjwVNJQmJ7Dm3wovYXSX37UR39rNaMX4`, - [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/furo-haqq`, - [ChainId.CORE]: `${CORE_HOST}/sushi-subgraphs/furo-core`, - [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-subgraphs/furo-thundercore`, - [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-subgraphs/furo-bttc/gn`, -} as const - -export const KASHI_SUBGRAPH_NAME: Record = { - [ChainId.ARBITRUM]: 'sushiswap/kashi-arbitrum', -} as const - -export const CONCENTRATED_SUBGRAPH_NAME: Record = { - [ChainId.ETHEREUM]: 'uniswap/uniswap-v3', - [ChainId.ARBITRUM]: 'ianlapham/arbitrum-minimal', -} - -export const DEFAULT_CHAIN_ID = ChainId.ETHEREUM -export const DEFAULT_CHAIN_NAME = CHAIN_NAME[DEFAULT_CHAIN_ID] - -export const isSushiSwapChain = ( - chainId: ChainId, -): chainId is SushiSwapChainId => - Object.keys(SUSHISWAP_V2_SUBGRAPH_URL).map(Number).includes(chainId) - -export const isSushiSwapV3Chain = ( - chainId: ChainId, -): chainId is SushiSwapV3ChainId => - Object.keys(SUSHISWAP_V3_SUBGRAPH_URL).map(Number).includes(chainId) - -export const EXCHANGE_SUBGRAPH_NAME: Record = { - [ChainId.AVALANCHE]: 'sushiswap/exchange-avalanche', - [ChainId.ARBITRUM]: 'sushiswap/exchange-arbitrum-backup', - [ChainId.BSC]: 'sushiswap/bsc-exchange', - [ChainId.CELO]: 'sushiswap/exchange-celo', - [ChainId.ETHEREUM]: 'sushiswap/exchange-ethereum', - [ChainId.FANTOM]: 'sushiswap/exchange-fantom', - [ChainId.FUSE]: 'sushiswap/exchange-fuse', - [ChainId.GNOSIS]: 'sushiswap/xdai-exchange', - [ChainId.MOONBEAM]: 'sushiswap/exchange-moonbeam', - [ChainId.MOONRIVER]: 'sushiswap/exchange-moonriver', - [ChainId.HARMONY]: 'sushiswap/exchange-harmony', - [ChainId.ARBITRUM_NOVA]: 'sushi-0m/sushiswap-arbitrum-nova', - [ChainId.POLYGON]: 'sushiswap/exchange-polygon', - [ChainId.BOBA]: 'sushi-0m/sushiswap-boba', - [ChainId.BOBA_AVAX]: 'sushi-0m/sushiswap-boba-avax', - [ChainId.BOBA_BNB]: 'sushi-0m/sushiswap-boba-bnb', -} as const diff --git a/config/graph/tsconfig.json b/config/graph/tsconfig.json deleted file mode 100644 index b1b78db4dc..0000000000 --- a/config/graph/tsconfig.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "extends": ["@tsconfig/strictest/tsconfig", "@tsconfig/node18/tsconfig"], - "include": ["src"], - "exclude": ["node_modules", "dist", ".turbo"], - "compilerOptions": { - "outDir": "./dist", - "rootDir": "./src", - "lib": ["ESNext"], - "module": "ESNext", - "moduleResolution": "Bundler", - "target": "ESNext", - "declaration": true, - "declarationMap": true, - "sourceMap": true - } -} diff --git a/jobs/pool/package.json b/jobs/pool/package.json index bd3b88daf8..9f468389ab 100644 --- a/jobs/pool/package.json +++ b/jobs/pool/package.json @@ -58,7 +58,6 @@ "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/client": "workspace:*", "@sushiswap/database": "workspace:*", - "@sushiswap/graph-config": "workspace:*", "@sushiswap/steer-sdk": "workspace:*", "@sushiswap/wagmi-config": "workspace:*", "@wagmi/core": "2.10.2", diff --git a/jobs/pool/resolvers/blocks/blocksByChainIds.ts b/jobs/pool/resolvers/blocks/blocksByChainIds.ts index c2f9e422a4..630f925134 100644 --- a/jobs/pool/resolvers/blocks/blocksByChainIds.ts +++ b/jobs/pool/resolvers/blocks/blocksByChainIds.ts @@ -1,6 +1,5 @@ -// @ts-nocheck -import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' +import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' import { Query, diff --git a/jobs/pool/src/incentives.ts b/jobs/pool/src/incentives.ts index d2050c32cf..33af2edc5d 100644 --- a/jobs/pool/src/incentives.ts +++ b/jobs/pool/src/incentives.ts @@ -2,10 +2,10 @@ import 'dotenv/config' import './lib/wagmi.js' import { Prisma } from '@sushiswap/database' -import { MINICHEF_SUBGRAPH_URL } from '@sushiswap/graph-config' import { performance } from 'perf_hooks' import { ChainId } from 'sushi/chain' +import { MINICHEF_SUPPORTED_CHAIN_IDS } from 'sushi/config' import { filterIncentives } from './etl/incentive/index.js' import { mergeIncentives } from './etl/incentive/load.js' import { updatePoolsWithIncentivesTotalApr } from './etl/pool/index.js' @@ -43,8 +43,8 @@ export async function execute() { } async function extract() { - const minichefsP = Object.keys(MINICHEF_SUBGRAPH_URL).map((chainId) => - getMinichef(Number(chainId) as keyof typeof MINICHEF_SUBGRAPH_URL), + const minichefsP = MINICHEF_SUPPORTED_CHAIN_IDS.map((chainId) => + getMinichef(chainId), ) const masterChefV1P = getMasterChefV1() const masterChefV2P = getMasterChefV2() diff --git a/jobs/pool/src/lib/chefs/masterChefV1/index.ts b/jobs/pool/src/lib/chefs/masterChefV1/index.ts index 2ec7015d9b..25b7403d17 100644 --- a/jobs/pool/src/lib/chefs/masterChefV1/index.ts +++ b/jobs/pool/src/lib/chefs/masterChefV1/index.ts @@ -1,8 +1,8 @@ -import { SECONDS_BETWEEN_BLOCKS } from '@sushiswap/graph-config' import { daysInYear, secondsInDay } from 'date-fns' import { ChainId } from 'sushi/chain' import { SUSHI } from 'sushi/currency' +import { SECONDS_BETWEEN_BLOCKS } from 'sushi/config/subgraph' import { MASTERCHEF_ADDRESS } from '../../../config.js' import { getPairs, getTokenBalancesOf, getTokens } from '../../common/index.js' import type { ChefReturn, Farm } from '../../types.js' diff --git a/jobs/pool/src/lib/chefs/masterChefV2/index.ts b/jobs/pool/src/lib/chefs/masterChefV2/index.ts index 554218f77d..69d8e4b713 100644 --- a/jobs/pool/src/lib/chefs/masterChefV2/index.ts +++ b/jobs/pool/src/lib/chefs/masterChefV2/index.ts @@ -1,8 +1,8 @@ -import { SECONDS_BETWEEN_BLOCKS } from '@sushiswap/graph-config' import { daysInYear, secondsInDay } from 'date-fns' import { ChainId } from 'sushi/chain' import { SUSHI } from 'sushi/currency' +import { SECONDS_BETWEEN_BLOCKS } from 'sushi/config/subgraph' import { MASTERCHEF_V2_ADDRESS } from '../../../config.js' import { divBigIntToNumber, diff --git a/jobs/pool/src/lib/chefs/minichef/fetchers.ts b/jobs/pool/src/lib/chefs/minichef/fetchers.ts index c8f9133504..7016202996 100644 --- a/jobs/pool/src/lib/chefs/minichef/fetchers.ts +++ b/jobs/pool/src/lib/chefs/minichef/fetchers.ts @@ -1,14 +1,11 @@ -import { - MINICHEF_SUBGRAPH_URL, - SushiSwapChainId, - TridentChainId, -} from '@sushiswap/graph-config' import { readContract, readContracts } from '@wagmi/core' import zip from 'lodash.zip' import { complexRewarderTimeAbi, miniChefAbi } from 'sushi/abi' import { ChainId } from 'sushi/chain' import { config } from 'src/lib/wagmi.js' +import { MiniChefChainId } from 'sushi/config' +import { MINICHEF_SUBGRAPH_URL } from 'sushi/config/subgraph' import { Address } from 'viem' import { MINICHEF_ADDRESS } from '../../../config.js' @@ -110,13 +107,9 @@ export async function getRewarders(poolLength: bigint, chainId: ChainId) { } // TODO: Fix type -export async function getRewarderInfos( - chainId: SushiSwapChainId | TridentChainId, -) { +export async function getRewarderInfos(chainId: MiniChefChainId) { const { getBuiltGraphSDK } = await import('../../../../.graphclient/index.js') - const url = ( - MINICHEF_SUBGRAPH_URL as Record - )[chainId] + const url = MINICHEF_SUBGRAPH_URL[chainId] if (!url) { console.log(chainId, 'does not have a minichef subgraph!') return [] diff --git a/jobs/pool/src/lib/chefs/minichef/index.ts b/jobs/pool/src/lib/chefs/minichef/index.ts index c6c9d73e79..e188198210 100644 --- a/jobs/pool/src/lib/chefs/minichef/index.ts +++ b/jobs/pool/src/lib/chefs/minichef/index.ts @@ -1,8 +1,8 @@ -import type { SushiSwapChainId, TridentChainId } from '@sushiswap/graph-config' import { daysInYear, secondsInDay } from 'date-fns' import { ChainId } from 'sushi/chain' import { SUSHI, SUSHI_ADDRESS } from 'sushi/currency' +import { MiniChefChainId } from 'sushi/config' import { MINICHEF_ADDRESS } from '../../../config.js' import { divBigIntToNumber, @@ -20,8 +20,9 @@ import { getSushiPerSecond, getTotalAllocPoint, } from './fetchers.js' + export async function getMinichef( - chainId: SushiSwapChainId | TridentChainId, + chainId: MiniChefChainId, ): Promise { try { if (!(chainId in SUSHI)) { diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index 4076712c9d..06aa8541c2 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -1,8 +1,5 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - SushiSwapChainId, -} from '@sushiswap/graph-config' - +import { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import type { Farm } from '../types.js' import { divBigIntToNumber } from './utils.js' @@ -15,7 +12,7 @@ interface Pair { async function getExchangePairs( ids: string[], - chainId: SushiSwapChainId, + chainId: SushiSwapV2ChainId, ): Promise { const { getBuiltGraphSDK } = await import('../../../.graphclient/index.js') const url = SUSHISWAP_V2_SUBGRAPH_URL[chainId] @@ -41,6 +38,6 @@ async function getExchangePairs( }) } -export async function getPairs(ids: string[], chainId: SushiSwapChainId) { +export async function getPairs(ids: string[], chainId: SushiSwapV2ChainId) { return await getExchangePairs(ids, chainId) } diff --git a/jobs/pool/src/lib/common/tokens.ts b/jobs/pool/src/lib/common/tokens.ts index 3ea7c2222b..a6979d4727 100644 --- a/jobs/pool/src/lib/common/tokens.ts +++ b/jobs/pool/src/lib/common/tokens.ts @@ -1,10 +1,8 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - SushiSwapChainId, -} from '@sushiswap/graph-config' import { readContracts } from '@wagmi/core' import { Chain, ChainId } from 'sushi/chain' +import { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { Address, erc20Abi } from 'viem' import { getTokenPrices } from '../price.js' import { config } from '../wagmi.js' @@ -21,7 +19,7 @@ interface Token { const getExchangeTokens = async ( ids: string[], - chainId: SushiSwapChainId, + chainId: SushiSwapV2ChainId, ): Promise => { const { getBuiltGraphSDK } = await import('../../../.graphclient/index.js') const url = SUSHISWAP_V2_SUBGRAPH_URL[chainId] @@ -46,7 +44,7 @@ const getExchangeTokens = async ( })) } -export const getTokens = async (ids: string[], chainId: SushiSwapChainId) => { +export const getTokens = async (ids: string[], chainId: SushiSwapV2ChainId) => { return await getExchangeTokens(ids, chainId) } diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index fe4afe3703..4af7ae908e 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -1,15 +1,16 @@ import { Prisma, Protocol } from '@sushiswap/database' +import { performance } from 'perf_hooks' +import { ChainId } from 'sushi/chain' + +import { + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, +} from 'sushi/config' import { MAX_FIRST, - SUSHISWAP_ENABLED_NETWORKS, SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_ENABLED_NETWORKS, SUSHISWAP_V3_SUBGRAPH_URL, - SWAP_ENABLED_NETWORKS, -} from '@sushiswap/graph-config' -import { performance } from 'perf_hooks' -import { ChainId } from 'sushi/chain' - +} from 'sushi/config/subgraph' import { PairsQuery, Sdk, @@ -66,6 +67,13 @@ enum AprTimeRange { ONE_MONTH = 'ONE_MONTH', } +const SWAP_SUPPORTED_CHAIN_IDS = Array.from( + new Set([ + ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + ...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + ]), +) + export async function execute(protocol: Protocol) { try { const startTime = performance.now() @@ -119,7 +127,7 @@ export async function execute(protocol: Protocol) { function createSubgraphConfig(protocol: Protocol) { if (protocol === Protocol.SUSHISWAP_V2) { - return SUSHISWAP_ENABLED_NETWORKS.map((chainId) => { + return SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.map((chainId) => { return { chainId, url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], @@ -127,7 +135,7 @@ function createSubgraphConfig(protocol: Protocol) { } }) } else if (protocol === Protocol.SUSHISWAP_V3) { - return SUSHISWAP_V3_ENABLED_NETWORKS.map((chainId) => ({ + return SUSHISWAP_V3_SUPPORTED_CHAIN_IDS.map((chainId) => ({ chainId, url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], protocol: Protocol.SUSHISWAP_V3, @@ -159,14 +167,14 @@ async function extract(protocol: Protocol) { oneMonthBlocks, twoMonthBlocks, ] = await Promise.all([ - sdk.OneHourBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.TwoHourBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.OneDayBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.TwoDayBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.OneWeekBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.TwoWeekBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.OneMonthBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), - sdk.TwoMonthBlocks({ chainIds: SWAP_ENABLED_NETWORKS }), + sdk.OneHourBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.TwoHourBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.OneDayBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.TwoDayBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.OneWeekBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.TwoWeekBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.OneMonthBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + sdk.TwoMonthBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), ]) await Promise.allSettled( diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index 267433e0ea..d6a6e01b51 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -68,7 +68,6 @@ }, "dependencies": { "@sushiswap/bonds-sdk": "workspace:*", - "@sushiswap/graph-config": "workspace:*", "gql.tada": "^1.7.5", "graphql": "16.6.0", "graphql-request": "^7.0.1", diff --git a/packages/graph-client-new/src/composite/chef-user-positions.ts b/packages/graph-client-new/src/composite/chef-user-positions.ts index a3fb723ea4..71fb26eca5 100644 --- a/packages/graph-client-new/src/composite/chef-user-positions.ts +++ b/packages/graph-client-new/src/composite/chef-user-positions.ts @@ -1,7 +1,3 @@ -import { - MINICHEF_ENABLED_NETWORKS, - type MiniChefChainId, -} from '@sushiswap/graph-config' import type { ChainIdVariable, ChainIdsVariable } from 'src/lib/types/chainId' import { @@ -20,6 +16,11 @@ import { getMiniChefUserPositions, } from 'src/subgraphs/mini-chef' import { ChainId } from 'sushi/chain' +import { + MINICHEF_SUPPORTED_CHAIN_IDS, + type MiniChefChainId, + isMiniChefChainId, +} from 'sushi/config' export type GetChefUserPositions = Omit< GetMasterChefV1UserPositions & @@ -43,16 +44,20 @@ export type ChefPosition = Omit & { } export async function getChefUserPositions({ - chainIds = [ChainId.ETHEREUM, ...MINICHEF_ENABLED_NETWORKS], + chainIds = [ChainId.ETHEREUM, ...MINICHEF_SUPPORTED_CHAIN_IDS], ...variables }: GetChefUserPositions) { - const miniChefChainIds = chainIds.filter( - (chainId) => chainId !== ChainId.ETHEREUM, - ) as MiniChefChainId[] + const miniChefChainIds = chainIds.filter(isMiniChefChainId) + + const masterChefPromises = chainIds.includes(ChainId.ETHEREUM) + ? [ + getMasterChefV1UserPositions(variables), + getMasterChefV2UserPositions(variables), + ] + : [] const promises = await Promise.allSettled([ - getMasterChefV1UserPositions(variables), - getMasterChefV2UserPositions(variables), + ...masterChefPromises, ...miniChefChainIds.map((chainId) => getMiniChefUserPositions({ ...variables, diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts index 5d20db84b6..2b6a3d0758 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -1,8 +1,3 @@ -import { - MINICHEF_ENABLED_NETWORKS, - SUSHISWAP_ENABLED_NETWORKS, - isMiniChefChainId, -} from '@sushiswap/graph-config' import type { ChainIdsVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' import { fetchMultichain } from 'src/multichain/fetch-multichain' @@ -10,7 +5,12 @@ import { type GetSushiV2LiquidityPositions, getSushiV2LiquidityPositions, } from 'src/subgraphs/sushi-v2' -import { isSushiSwapV2ChainId } from 'sushi/config' +import { + MINICHEF_SUPPORTED_CHAIN_IDS, + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + isMiniChefChainId, + isSushiSwapV2ChainId, +} from 'sushi/config' import type { GetChefUserPositions } from './chef-user-positions' export type GetCombinedUserPositions = { @@ -25,7 +25,10 @@ export type GetCombinedUserPositions = { */ export async function getCombinedUserPositions({ chainIds = [ - ...new Set([...SUSHISWAP_ENABLED_NETWORKS, ...MINICHEF_ENABLED_NETWORKS]), + ...new Set([ + ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + ...MINICHEF_SUPPORTED_CHAIN_IDS, + ]), ], user, }: GetCombinedUserPositions) { diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client-new/src/lib/request-paged.ts index f4e4f5bb03..0107089672 100644 --- a/packages/graph-client-new/src/lib/request-paged.ts +++ b/packages/graph-client-new/src/lib/request-paged.ts @@ -1,7 +1,7 @@ -import { MAX_FIRST } from '@sushiswap/graph-config' import type { ResultOf, TadaDocumentNode, VariablesOf } from 'gql.tada' import _request from 'graphql-request' import type { ChainId } from 'sushi/chain' +import { MAX_FIRST } from 'sushi/config/subgraph' import { FetchError } from './fetch-error' interface RequestPaged>> { diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index afeee490dd..dfa545a176 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -1,10 +1,10 @@ -import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import { FetchError } from 'src/lib/fetch-error' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' +import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' export const BlocksQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts index 1928ebbe96..a7d364aa92 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts @@ -1,4 +1,3 @@ -import { MASTERCHEF_V1_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -6,6 +5,7 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import { ChainId } from 'sushi/chain' +import { MASTERCHEF_V1_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' export const MasterChefV1UserPositionsQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts index d1c8c5abb2..8fecd16c39 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts @@ -1,11 +1,11 @@ -import { MASTERCHEF_V2_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import { ChainId } from 'sushi/chain' +import { MASTERCHEF_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' -import { ChainId } from 'sushi/chain' import { graphql } from '../graphql' export const MasterChefV2UserPositionsQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts index 60832cc14d..237c5a8308 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts @@ -1,7 +1,3 @@ -import { - MINICHEF_SUBGRAPH_URL, - type MiniChefChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -9,6 +5,8 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { MiniChefChainId } from 'sushi/config' +import { MINICHEF_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' export const MiniChefUserPositionsQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts index 005d718465..e112e65176 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts @@ -1,7 +1,7 @@ -import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import { SUSHI_BAR_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' export const SushiBarHistoryQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts index ce99157645..6236b894a1 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts @@ -1,8 +1,8 @@ -import { SUSHI_BAR_SUBGRAPH_URL } from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import { FetchError } from 'src/lib/fetch-error' +import { SUSHI_BAR_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' export const SushiBarQuery = graphql( diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index 3621abe797..becdd43bfe 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -1,8 +1,6 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' @@ -29,7 +27,7 @@ export const SushiV2BurnsQuery = graphql(` `) export type GetSushiV2Burns = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Burns({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts index 702432ae0d..aaa1569e28 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts @@ -1,9 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -25,7 +23,7 @@ export const SushiV2FactoriesQuery = graphql(` `) export type GetSushiV2Factory = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Factory({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 795455f23a..dd01dd965b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -1,8 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { Hex } from 'src/lib/types/hex' +import { type SushiSwapV2ChainId, publicClientConfig } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { createPublicClient, erc20Abi } from 'viem' import { FetchError } from 'src/lib/fetch-error' @@ -11,8 +10,6 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' -import type { Hex } from 'src/lib/types/hex' -import { publicClientConfig } from 'sushi/config' import { graphql } from '../graphql' export const SushiV2LiquidityPositionsQuery = graphql(` @@ -33,7 +30,7 @@ export const SushiV2LiquidityPositionsQuery = graphql(` export type GetSushiV2LiquidityPositions = VariablesOf< typeof SushiV2LiquidityPositionsQuery > & - ChainIdVariable + ChainIdVariable export async function getSushiV2LiquidityPositions({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index 6461409e58..ad7b6a9d2d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -29,7 +26,7 @@ export const SushiV2MintsQuery = graphql(` `) export type GetSushiV2Mints = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Mints({ chainId, @@ -44,11 +41,7 @@ export async function getSushiV2Mints({ variables, }) - if (result) { - return result.mints - } - - throw new FetchError(chainId, 'Failed to fetch mints') + return result.mints } export type SushiV2Mints = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index fe25053f64..bbaa409914 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -1,9 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -25,7 +23,7 @@ export const SushiV2PoolQuery = graphql( ) export type GetSushiV2Pool = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Pool({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 0355dff708..71ab32e595 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -1,8 +1,6 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' @@ -25,7 +23,7 @@ export const SushiV2PoolsQuery = graphql( ) export type GetSushiV2Pools = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Pools({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index 4f2e30a3a6..6b1ca04bf5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -33,7 +30,7 @@ export const SushiV2SwapsQuery = graphql(` `) export type GetSushiV2Swaps = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Swaps({ chainId, @@ -48,11 +45,7 @@ export async function getSushiV2Swaps({ variables, }) - if (result) { - return result.swaps - } - - throw new FetchError(chainId, 'Failed to fetch swaps') + return result.swaps } export type SushiV2Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 0e5bb7a948..2da327968f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -26,7 +23,7 @@ export const SushiV2TokensQuery = graphql(` `) export type GetSushiV2Tokens = VariablesOf & - ChainIdVariable + ChainIdVariable export async function getSushiV2Tokens({ chainId, @@ -41,13 +38,9 @@ export async function getSushiV2Tokens({ variables, }) - if (result) { - return result.tokens.map((token) => - convertIdToMultichainId(copyIdToAddress(addChainId(chainId, token))), - ) - } - - throw new FetchError(chainId, 'Failed to fetch tokens') + return result.tokens.map((token) => + convertIdToMultichainId(copyIdToAddress(addChainId(chainId, token))), + ) } export type SushiV2Tokens = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 332f3dd952..66ed8039ae 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -1,8 +1,6 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - type SushiSwapChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' @@ -50,7 +48,7 @@ export const SushiV2TransactionsQuery = graphql(` export type GetSushiV2Transactions = VariablesOf< typeof SushiV2TransactionsQuery > & - ChainIdVariable + ChainIdVariable export async function getSushiV2Transactions({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index 1ff50417bc..3ffd37747a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -45,11 +42,7 @@ export async function getSushiV3Burns({ variables, }) - if (result) { - return result.burns - } - - throw new FetchError(chainId, 'Failed to fetch burns') + return result.burns } export type SushiV3Burns = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index e18b52bfa8..913d0825d5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -43,11 +40,7 @@ export async function getSushiV3Collects({ variables, }) - if (result) { - return result.collects - } - - throw new FetchError(chainId, 'Failed to fetch collects') + return result.collects } export type SushiV3Collects = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index 075ee150e5..4256b1d8f6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -40,11 +37,7 @@ export async function getSushiV3DayDatas({ variables, }) - if (result) { - return result.uniswapDayDatas - } - - throw new FetchError(chainId, 'Failed to fetch day datas') + return result.uniswapDayDatas } export type SushiV3DayDatas = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index 7d9e1c68ff..7709bde53e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -1,9 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index da87bdde64..17726848f5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -1,8 +1,6 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 9af4f7c527..fc87593bd0 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -1,9 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index 64d815a455..8c4a08adf5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -1,11 +1,8 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -73,15 +70,11 @@ export async function getSushiV3PoolsByTokenPair({ variables, }) - if (result) { - return result.pools.map((pool) => - convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, pool as typeof pool & { id: Hex })), - ), - ) - } - - throw new FetchError(chainId, 'Failed to fetch pools') + return result.pools.map((pool) => + convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, pool as typeof pool & { id: Hex })), + ), + ) } export type SushiV3PoolsByTokenPair = Awaited< diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index cae7ea391f..1df198276e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -45,11 +42,7 @@ export async function getSushiV3Swaps({ variables, }) - if (result) { - return result.swaps - } - - throw new FetchError(chainId, 'Failed to fetch swaps') + return result.swaps } export type SushiV3Swaps = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index 3671573d49..0a47cc69ff 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -1,10 +1,7 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL, - type SushiSwapV3ChainId, -} from '@sushiswap/graph-config' import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { FetchError } from 'src/lib/fetch-error' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -76,11 +73,7 @@ export async function getSushiV3Transactions({ variables, }) - if (result) { - return result.transactions - } - - throw new FetchError(chainId, 'Failed to fetch transactions') + return result.transactions } export type SushiV3Transactions = Awaited< diff --git a/packages/graph-client/__tests__/furo-tokens.test.ts b/packages/graph-client/__tests__/furo-tokens.test.ts index 9c2963803b..51535a0b2a 100644 --- a/packages/graph-client/__tests__/furo-tokens.test.ts +++ b/packages/graph-client/__tests__/furo-tokens.test.ts @@ -1,13 +1,12 @@ -import { FURO_SUBGRAPH_URL } from '@sushiswap/graph-config' import { getBuiltGraphSDK } from '../.graphclient/index.js' +import { FURO_SUPPORTED_CHAIN_IDS } from 'sushi/config' describe('Furo Tokens', () => { const sdk = getBuiltGraphSDK() - const chainIds = Object.keys(FURO_SUBGRAPH_URL).map((key) => Number(key)) it.skip('should return some tokens with liquidity', async () => { const { tokens } = await sdk.furoTokensByChainIds({ - chainIds, + chainIds: FURO_SUPPORTED_CHAIN_IDS, where: { liquidityShares_gt: 0 }, }) expect(tokens.length).toBeGreaterThanOrEqual(1) diff --git a/packages/graph-client/package.json b/packages/graph-client/package.json index 26d19997f5..1505b4cc1a 100644 --- a/packages/graph-client/package.json +++ b/packages/graph-client/package.json @@ -59,7 +59,6 @@ "@graphql-mesh/transform-type-merging": "0.96.6", "@graphql-mesh/utils": "0.94.1", "@graphql-tools/merge": "9.0.3", - "@sushiswap/graph-config": "workspace:*", "@sushiswap/wagmi-config": "workspace:*", "@whatwg-node/fetch": "0.8.4", "date-fns": "2.30.0" diff --git a/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts b/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts index c2744f7193..e4019ce074 100644 --- a/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts +++ b/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts @@ -1,7 +1,6 @@ -import { BENTOBOX_SUBGRAPH_URL } from '@sushiswap/graph-config' - import { ChainId } from 'sushi/chain' import { BentoBoxKpi, Resolvers } from '../../.graphclient/index.js' +import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' export const crossChainBentoBoxKpis: Resolvers['Query']['crossChainBentoBoxKpis'] = async (root, args, context, info) => { @@ -10,7 +9,8 @@ export const crossChainBentoBoxKpis: Resolvers['Query']['crossChainBentoBoxKpis' ( chainId, ): chainId is keyof typeof BENTOBOX_SUBGRAPH_URL & - keyof typeof BENTOBOX_SUBGRAPH_URL => chainId in BENTOBOX_SUBGRAPH_URL, + keyof typeof BENTOBOX_SUBGRAPH_URL => + chainId in BENTOBOX_SUBGRAPH_URL, ) // Kava subgraph doesn't have the bentoBoxKpis query .filter((chainId) => chainId !== ChainId.KAVA) diff --git a/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts b/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts index 1ffa06e148..bb6c17b129 100644 --- a/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts +++ b/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts @@ -1,6 +1,5 @@ -import { BENTOBOX_SUBGRAPH_URL } from '@sushiswap/graph-config' - import { Resolvers, StrategyKpi } from '../../.graphclient/index.js' +import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' export const crossChainStrategyKpis: Resolvers['Query']['crossChainStrategyKpis'] = async (root, args, context, info) => { diff --git a/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts b/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts index 443b943c00..db32b7f08a 100644 --- a/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts +++ b/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts @@ -1,10 +1,10 @@ // @ts-nocheck -import { BENTOBOX_SUBGRAPH_URL } from '@sushiswap/graph-config' import { isPromiseFulfilled } from 'sushi/validate' import { Query } from '../../.graphclient/index.js' import { BentoBoxTypes } from '../../.graphclient/sources/BentoBox/types.js' +import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' export const rebasesByChainIds = async ( root, diff --git a/packages/graph-client/resolvers/blocks/blocksByChainIds.ts b/packages/graph-client/resolvers/blocks/blocksByChainIds.ts index c134a9cd6a..5aad5ca57d 100644 --- a/packages/graph-client/resolvers/blocks/blocksByChainIds.ts +++ b/packages/graph-client/resolvers/blocks/blocksByChainIds.ts @@ -1,5 +1,4 @@ // @ts-nocheck -import { BLOCKS_SUBGRAPH_URL } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { @@ -9,6 +8,7 @@ import { RequireFields, } from '../../.graphclient/index.js' import { BlocksTypes } from '../../.graphclient/sources/Blocks/types.js' +import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' export const _blocksByChainIds = async ( root = {}, diff --git a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts index 689fe38f93..68825ad670 100644 --- a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts +++ b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts @@ -1,11 +1,7 @@ // @ts-nocheck - -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, -} from '@sushiswap/graph-config' - +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { Bundle, Query, QueryResolvers } from '../../.graphclient/index.js' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'node_modules/sushi/dist/config/sushiswap-v2.js' export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( root, @@ -15,8 +11,8 @@ export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( ) => { return Promise.all([ ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => - SUSHISWAP_ENABLED_NETWORKS.includes(el), + .filter((el): el is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), ) .map((chainId) => context.SushiSwapV2.Query.bundles({ diff --git a/packages/graph-client/resolvers/depreciated/crossChainToken.ts b/packages/graph-client/resolvers/depreciated/crossChainToken.ts index b79bc9a8ea..00d5f83dbc 100644 --- a/packages/graph-client/resolvers/depreciated/crossChainToken.ts +++ b/packages/graph-client/resolvers/depreciated/crossChainToken.ts @@ -1,13 +1,10 @@ // @ts-nocheck - -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL -} from '@sushiswap/graph-config' import { chainName, chainShortName } from 'sushi/chain' import { QueryResolvers, Token } from '../../.graphclient/index.js' import { FarmAPI } from '../../lib/incentives.js' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' export const crossChainToken: QueryResolvers['crossChainToken'] = async ( root, @@ -29,7 +26,7 @@ export const crossChainToken: QueryResolvers['crossChainToken'] = async ( chainName: chainName[args.chainId], chainShortName: chainShortName[args.chainId], url: SUSHISWAP_V2_SUBGRAPH_URL[ - args.chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + args.chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] ], }, info, diff --git a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts index 298ca45c4b..2bf6bad162 100644 --- a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts @@ -1,23 +1,16 @@ // @ts-nocheck - -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, -} from '@sushiswap/graph-config' import { isPromiseFulfilled } from 'sushi/validate' -import { - Query, - QueryResolvers, - Resolvers, -} from '../../.graphclient/index.js' +import { Query, QueryResolvers, Resolvers } from '../../.graphclient/index.js' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' export const factoriesByChainIds: QueryResolvers['factoriesByChainIds'] = async (root, args, context, info): Promise => { return Promise.allSettled([ ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => - SUSHISWAP_ENABLED_NETWORKS.includes(el), + .filter((el): el is (typeof SUSHISWAP_SUPPORTED_CHAIN_IDS)[number] => + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), ) .map((chainId) => context.SushiSwapV2.Query.uniswapFactories({ diff --git a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts index 7779876fea..81e60cae5c 100644 --- a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts +++ b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts @@ -1,20 +1,22 @@ -import { - SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, - SushiSwapV3ChainId, - isSushiSwapChain, - isSushiSwapV3Chain -} from '@sushiswap/graph-config' import { ChainId, chainName, chainShortName } from 'sushi/chain' import { isPromiseFulfilled } from 'sushi/validate' import { - Query, - QueryResolvers, - SushiSwapV3DayDatasQuery, - UniswapDayData, - getBuiltGraphSDK, + Query, + QueryResolvers, + SushiSwapV3DayDatasQuery, + UniswapDayData, + getBuiltGraphSDK, } from '../../.graphclient/index.js' +import { + SUSHISWAP_V2_SUBGRAPH_URL, + SUSHISWAP_V3_SUBGRAPH_URL, +} from 'sushi/config/subgraph' +import { + SushiSwapV3ChainId, + isSushiSwapV2ChainId, + isSushiSwapV3ChainId, +} from 'sushi/config' const transformV3DayToSnapshot = ( days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], @@ -43,8 +45,6 @@ export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsB context, info, ): Promise => { - - const fetchSushiSwapV2Snapshots = async (chainId: number) => { const snapshots: UniswapDayData[] = await context.SushiSwapV2.Query.uniswapDayDatas({ @@ -87,11 +87,11 @@ export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsB const queries = args.chainIds.flatMap((chainId: ChainId) => { const queries: Promise[] = [] - if (isSushiSwapChain(chainId)) { + if (isSushiSwapV2ChainId(chainId)) { queries.push(fetchSushiSwapV2Snapshots(chainId)) } - if (isSushiSwapV3Chain(chainId)) { + if (isSushiSwapV3ChainId(chainId)) { queries.push(fetchSushiSwapV3Snapshots(chainId)) } diff --git a/packages/graph-client/resolvers/furo/tokensByChainIds.ts b/packages/graph-client/resolvers/furo/tokensByChainIds.ts index 831cb701eb..87e48a3b27 100644 --- a/packages/graph-client/resolvers/furo/tokensByChainIds.ts +++ b/packages/graph-client/resolvers/furo/tokensByChainIds.ts @@ -1,6 +1,5 @@ // @ts-nocheck -import { FURO_SUBGRAPH_URL } from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { isPromiseFulfilled } from 'sushi/validate' @@ -11,6 +10,7 @@ import { RequireFields, } from '../../.graphclient/index.js' import { FuroStreamTypes } from '../../.graphclient/sources/FuroStream/types.js' +import { FURO_SUBGRAPH_URL } from 'sushi/config/subgraph' export const _furoTokensByChainIds = async ( root = {}, diff --git a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts index 25d15e9723..70405ecf0a 100644 --- a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts +++ b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts @@ -1,8 +1,4 @@ // @ts-nocheck -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL -} from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { isPromiseFulfilled } from 'sushi/validate' @@ -13,7 +9,7 @@ import { RequireFields, } from '../../.graphclient/index.js' import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' - +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' export const _liquidityPositionsByChainIds = async ( root = {}, @@ -28,8 +24,8 @@ export const _liquidityPositionsByChainIds = async ( Query['liquidityPositionsByChainIds'][] >([ ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => - SUSHISWAP_ENABLED_NETWORKS.includes(el), + .filter((el): el is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), ) .map((chainId) => context.SushiSwapV2.Query.liquidityPositions({ diff --git a/packages/graph-client/resolvers/masterchef/index.ts b/packages/graph-client/resolvers/masterchef/index.ts index c9f61ef96f..6c00620a5d 100644 --- a/packages/graph-client/resolvers/masterchef/index.ts +++ b/packages/graph-client/resolvers/masterchef/index.ts @@ -1,14 +1,13 @@ // @ts-nocheck -import { - MINICHEF_SUBGRAPH_URL, - MASTERCHEF_V1_SUBGRAPH_URL, - MASTERCHEF_V2_SUBGRAPH_URL -} from '@sushiswap/graph-config' import { ChainId, chainName } from 'sushi/chain' import { isPromiseFulfilled } from 'sushi/validate' import { Query, QueryResolvers, Resolvers } from '../../.graphclient/index.js' +import { + MASTERCHEF_V1_SUBGRAPH_URL, + MINICHEF_SUBGRAPH_URL, +} from 'sushi/config/subgraph' export const crossChainChefUser: QueryResolvers['crossChainChefUser'] = async ( root, @@ -73,32 +72,28 @@ export const crossChainChefUser: QueryResolvers['crossChainChefUser'] = async ( (chainId): chainId is keyof typeof MINICHEF_SUBGRAPH_URL => chainId in MINICHEF_SUBGRAPH_URL, ) - .map( - (chainId) => - // Weird that we're doing this.... - context.MasterChefV1.Query.MASTERCHEF_V1_users({ - root, - args, - context: { - ...context, - chainId, - url: MINICHEF_SUBGRAPH_URL[chainId], - }, - info, - }).then((users: Query['MASTERCHEF_V1_users']) => { - if (!Array.isArray(users)) { - console.error( - `MiniChefV2 users query failed on ${chainId}`, - users, - ) - return [] - } - return users.map((user) => ({ - ...user, - chainId, - chainName: chainName[chainId], - })) - }), + .map((chainId) => + // Weird that we're doing this.... + context.MasterChefV1.Query.MASTERCHEF_V1_users({ + root, + args, + context: { + ...context, + chainId, + url: MINICHEF_SUBGRAPH_URL[chainId], + }, + info, + }).then((users: Query['MASTERCHEF_V1_users']) => { + if (!Array.isArray(users)) { + console.error(`MiniChefV2 users query failed on ${chainId}`, users) + return [] + } + return users.map((user) => ({ + ...user, + chainId, + chainName: chainName[chainId], + })) + }), ), ]).then((promiseSettledResults) => { if (!Array.isArray(promiseSettledResults)) { diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index 6126106e6a..f4c48d9815 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -1,12 +1,6 @@ // @ts-nocheck -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_ENABLED_NETWORKS, - SUSHISWAP_V3_SUBGRAPH_URL, -} from '@sushiswap/graph-config' -import { chainName, chainShortNameToChainId } from 'sushi/chain' +import { type ChainId, chainName, chainShortNameToChainId } from 'sushi/chain' import { withoutScientificNotation } from 'sushi/format' import { isPromiseFulfilled } from 'sushi/validate' import { @@ -17,6 +11,16 @@ import { import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' import { transformPair } from '../../transformers/index.js' +import { + SUSHISWAP_V2_SUBGRAPH_URL, + SUSHISWAP_V3_SUBGRAPH_URL, +} from 'sushi/config/subgraph' +import { + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + isSushiSwapV2ChainId, + isSushiSwapV3ChainId, +} from 'sushi/config' const sdk = getBuiltGraphSDK() @@ -90,12 +94,10 @@ export const pairById: QueryResolvers['pairById'] = async ( context, info, ): Promise => { - - const fetchIsV2Pool = async () => { const sdk = getBuiltGraphSDK({ url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] ], }) @@ -121,12 +123,12 @@ export const pairById: QueryResolvers['pairById'] = async ( { oneWeekBlocks: [oneWeekBlock], }, - isPoolV2 + isPoolV2, ] = await Promise.all([ sdk.OneDayBlocks({ chainIds: [chainId] }), sdk.TwoDayBlocks({ chainIds: [chainId] }), sdk.OneWeekBlocks({ chainIds: [chainId] }), - fetchIsV2Pool() + fetchIsV2Pool(), ]) const fetchSushiSwapPair = async (block?: { number: number }) => @@ -140,7 +142,7 @@ export const pairById: QueryResolvers['pairById'] = async ( chainName: chainName[chainId], chainShortName: chainShortName[chainId], url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] ], }, info, @@ -181,7 +183,7 @@ export const pairById: QueryResolvers['pairById'] = async ( const fetchV2DayBuckets = async () => { const sdk = getBuiltGraphSDK({ url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] ], }) @@ -206,7 +208,7 @@ export const pairById: QueryResolvers['pairById'] = async ( const fetchV2DayHourBuckets = async () => { const sdk = getBuiltGraphSDK({ url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] ], }) @@ -231,7 +233,7 @@ export const pairById: QueryResolvers['pairById'] = async ( const fetchSushiSwapV3Pair = async (block?: { number: number }) => { const sdk = getBuiltGraphSDK({ url: SUSHISWAP_V3_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_ENABLED_NETWORKS)[number] + chainId as (typeof SUSHISWAP_V3_SUPPORTED_CHAIN_IDS)[number] ], }) @@ -247,15 +249,14 @@ export const pairById: QueryResolvers['pairById'] = async ( return transformV3PoolToPair(pool, chainId) } - const poolFetcher = async (isV2: boolean, block?: { number: number }) => { const fetches: ReturnType[] = [] - if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { + if (isV2 && isSushiSwapV2ChainId(chainId as ChainId)) { fetches.push(fetchSushiSwapPair(block)) } - if (!isV2 && SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId)) { + if (!isV2 && isSushiSwapV3ChainId(chainId as ChainId)) { fetches.push(fetchSushiSwapV3Pair(block)) } @@ -269,7 +270,7 @@ export const pairById: QueryResolvers['pairById'] = async ( } const bucketFetcher = async (isV2: boolean) => { - if (isV2 && SUSHISWAP_ENABLED_NETWORKS.includes(chainId)) { + if (isV2 && SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(chainId)) { const [hourSnapshots, daySnapshots] = await Promise.all([ fetchV2DayHourBuckets(), fetchV2DayBuckets(), diff --git a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts index dc9aaf65a0..03b3c2f5c5 100644 --- a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts +++ b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts @@ -1,8 +1,4 @@ // @ts-nocheck -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, -} from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { ChainId } from 'sushi/chain' @@ -12,6 +8,8 @@ import { QuerypairsByChainIdsArgs, } from '../../.graphclient/index.js' import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' const BLACKLIST = { [ChainId.ARBITRUM]: [ @@ -38,8 +36,10 @@ export const _pairsByChainIds = async ( return Promise.all([ ...args.chainIds .filter( - (chainId): chainId is (typeof SUSHISWAP_ENABLED_NETWORKS)[number] => - SUSHISWAP_ENABLED_NETWORKS.includes(chainId), + ( + chainId, + ): chainId is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(chainId), ) .map((chainId) => context.SushiSwapV2.Query.pairs({ diff --git a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts index e6456dde1e..7f11f4f453 100644 --- a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts +++ b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts @@ -1,8 +1,4 @@ // @ts-nocheck -import { - SUSHISWAP_ENABLED_NETWORKS, - SUSHISWAP_V2_SUBGRAPH_URL, -} from '@sushiswap/graph-config' import { GraphQLResolveInfo } from 'graphql' import { ChainId, chainName, chainShortName } from 'sushi/chain' @@ -14,6 +10,8 @@ import { } from '../../.graphclient/index.js' import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' import { page } from '../../lib/page.js' +import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' const BLACKLIST = { [ChainId.ARBITRUM]: ['0xeba61eb686b515fae79a96118f140924a634ab23'], @@ -32,8 +30,8 @@ export const _tokensByChainIds = async ( // @ts-ignore return Promise.all([ ...args.chainIds - .filter((el) => SUSHISWAP_ENABLED_NETWORKS.includes(el)) - .map((chainId: (typeof SUSHISWAP_ENABLED_NETWORKS)[number]) => + .filter((el) => SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el)) + .map((chainId: (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number]) => context.SushiSwapV2.Query.tokens({ root, // @ts-ignore diff --git a/packages/graph-client/resolvers/v3/poolsByTokenPair.ts b/packages/graph-client/resolvers/v3/poolsByTokenPair.ts index b147a21313..3f714346e0 100644 --- a/packages/graph-client/resolvers/v3/poolsByTokenPair.ts +++ b/packages/graph-client/resolvers/v3/poolsByTokenPair.ts @@ -1,54 +1,51 @@ -import { - SUSHISWAP_V3_SUBGRAPH_URL - } from '@sushiswap/graph-config' - - import { Query, QueryResolvers } from '../../.graphclient/index.js' - - const MAX_FIRST = 1000 - - export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( - root, - args, - context, - info, - ): Promise => { - const [chainId, tokenAddress0] = args.tokenId0.split(':') - const [, tokenAddress1] = args.tokenId1.split(':') - - // Sorted on the factory contract - const tokenAddresses = [tokenAddress0, tokenAddress1].sort() - - const fetch = (lastId: string) => - context.SushiSwapV3.Query.SUSHISWAP_V3_pools({ - root, - args: { - first: MAX_FIRST, - where: { - id_gt: lastId, - token0: tokenAddresses[0], - token1: tokenAddresses[1], - }, - orderBy: 'id', - orderDirection: 'asc', +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { Query, QueryResolvers } from '../../.graphclient/index.js' + +const MAX_FIRST = 1000 + +export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( + root, + args, + context, + info, +): Promise => { + const [chainId, tokenAddress0] = args.tokenId0.split(':') + const [, tokenAddress1] = args.tokenId1.split(':') + + // Sorted on the factory contract + const tokenAddresses = [tokenAddress0, tokenAddress1].sort() + + const fetch = (lastId: string) => + context.SushiSwapV3.Query.SUSHISWAP_V3_pools({ + root, + args: { + first: MAX_FIRST, + where: { + id_gt: lastId, + token0: tokenAddresses[0], + token1: tokenAddresses[1], }, - context: { - ...context, - chainId: Number(chainId), - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] - }, - info, - }) - - const data = [] - let lastId = '' - for (;;) { - const newData = await fetch(lastId) - data.push(...newData) - - if (newData.length < MAX_FIRST) break - - lastId = newData[newData.length - 1].id - } - - return data - } \ No newline at end of file + orderBy: 'id', + orderDirection: 'asc', + }, + context: { + ...context, + chainId: Number(chainId), + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], + }, + info, + }) + + const data = [] + let lastId = '' + for (;;) { + const newData = await fetch(lastId) + data.push(...newData) + + if (newData.length < MAX_FIRST) break + + lastId = newData[newData.length - 1].id + } + + return data +} diff --git a/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts b/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts index 2cbdfa485f..986a0cbbce 100644 --- a/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts +++ b/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts @@ -1,55 +1,54 @@ +import { isPromiseFulfilled } from 'sushi/validate' import { - SUSHISWAP_V3_ENABLED_NETWORKS, - SUSHISWAP_V3_SUBGRAPH_URL, - SushiSwapV3ChainId - } from '@sushiswap/graph-config' - - import { isPromiseFulfilled } from 'sushi/validate' - import { - Query, - QueryResolvers, - SUSHISWAP_V3_Factory, - } from '../../.graphclient/index.js' - - export const v3factoriesByChainIds: QueryResolvers['v3factoriesByChainIds'] = - async ( - root, - args, - context, - info, - ): Promise => { - return Promise.allSettled( - args.chainIds - .filter((chainId): chainId is SushiSwapV3ChainId => - SUSHISWAP_V3_ENABLED_NETWORKS.includes(chainId), - ) - .map((chainId) => { - return context.SushiSwapV3.Query.SUSHISWAP_V3_factories({ - root, - args, - context: { - ...context, - chainId, - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId] - }, - info, - }).then((factories: SUSHISWAP_V3_Factory[]) => { - return factories?.length > 0 - ? factories.map((factory) => ({ + Query, + QueryResolvers, + SUSHISWAP_V3_Factory, +} from '../../.graphclient/index.js' +import { + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + SushiSwapV3ChainId, +} from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' + +export const v3factoriesByChainIds: QueryResolvers['v3factoriesByChainIds'] = + async ( + root, + args, + context, + info, + ): Promise => { + return Promise.allSettled( + args.chainIds + .filter((chainId): chainId is SushiSwapV3ChainId => + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS.includes(chainId), + ) + .map((chainId) => { + return context.SushiSwapV3.Query.SUSHISWAP_V3_factories({ + root, + args, + context: { + ...context, + chainId, + url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], + }, + info, + }).then((factories: SUSHISWAP_V3_Factory[]) => { + return factories?.length > 0 + ? factories.map((factory) => ({ ...factory, chainId, })) - : [] - }) - }), - ).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.error('v3 factories query failed...', promiseSettledResults) - return [] - } - return promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value) - }) - } \ No newline at end of file + : [] + }) + }), + ).then((promiseSettledResults) => { + if (!Array.isArray(promiseSettledResults)) { + console.error('v3 factories query failed...', promiseSettledResults) + return [] + } + return promiseSettledResults + .flat() + .filter(isPromiseFulfilled) + .flatMap((promiseFulfilled) => promiseFulfilled.value) + }) + } diff --git a/packages/sushi/package.json b/packages/sushi/package.json index 550bbe4642..96200c1925 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -41,6 +41,10 @@ "types": "./dist/config/index.d.ts", "default": "./dist/config/index.js" }, + "./config/subgraph": { + "types": "./dist/config/subgraph/index.d.ts", + "default": "./dist/config/subgraph/index.js" + }, "./contract": { "types": "./dist/contract/index.d.ts", "default": "./dist/contract/index.js" @@ -124,6 +128,9 @@ "config": [ "./dist/config/index.d.ts" ], + "config/subgraph": [ + "./dist/config/subgraph/index.d.ts" + ], "contract": [ "./dist/contract/index.d.ts" ], diff --git a/packages/sushi/src/config/angle.ts b/packages/sushi/src/config/angle.ts index 679d83340a..600c533039 100644 --- a/packages/sushi/src/config/angle.ts +++ b/packages/sushi/src/config/angle.ts @@ -1,6 +1,6 @@ import { ChainId } from '../chain/index.js' -export const ANGLE_ENABLED_NETWORKS = [ +export const ANGLE_SUPPORTED_CHAIN_IDS = [ ChainId.ARBITRUM, ChainId.ETHEREUM, ChainId.OPTIMISM, @@ -15,8 +15,8 @@ export const ANGLE_ENABLED_NETWORKS = [ ChainId.LINEA, ChainId.BSC, ] -export type AngleEnabledChainId = (typeof ANGLE_ENABLED_NETWORKS)[number] +export type AngleEnabledChainId = (typeof ANGLE_SUPPORTED_CHAIN_IDS)[number] export const isAngleEnabledChainId = ( chainId: number, ): chainId is AngleEnabledChainId => - ANGLE_ENABLED_NETWORKS.includes(chainId as AngleEnabledChainId) + ANGLE_SUPPORTED_CHAIN_IDS.includes(chainId as AngleEnabledChainId) diff --git a/packages/sushi/src/config/furo.ts b/packages/sushi/src/config/furo.ts new file mode 100644 index 0000000000..499eb62d98 --- /dev/null +++ b/packages/sushi/src/config/furo.ts @@ -0,0 +1,24 @@ +import { ChainId } from '../chain/index.js' + +export const FURO_SUPPORTED_CHAIN_IDS = [ + ChainId.ETHEREUM, + ChainId.ARBITRUM, + ChainId.AVALANCHE, + ChainId.BSC, + ChainId.FANTOM, + ChainId.GNOSIS, + ChainId.HARMONY, + ChainId.MOONBEAM, + ChainId.MOONRIVER, + ChainId.OPTIMISM, + ChainId.POLYGON, + ChainId.HAQQ, + ChainId.CORE, + ChainId.THUNDERCORE, + ChainId.BTTC, +] as const + +export type FuroChainId = (typeof FURO_SUPPORTED_CHAIN_IDS)[number] + +export const isFuroChainId = (chainId: ChainId): chainId is FuroChainId => + FURO_SUPPORTED_CHAIN_IDS.includes(chainId as FuroChainId) diff --git a/packages/sushi/src/config/index.ts b/packages/sushi/src/config/index.ts index bf71d1acf7..f361ea9ac1 100644 --- a/packages/sushi/src/config/index.ts +++ b/packages/sushi/src/config/index.ts @@ -4,7 +4,9 @@ export * from './bases-to-check-trades-against.js' export * from './bentobox.js' export * from './custom-bases.js' export * from './default-quote.js' +export * from './furo.js' export * from './lsds.js' +export * from './mini-chef.js' export * from './native-ids.js' export * from './extractor.js' export * from './pancakeswap-v2.js' diff --git a/packages/sushi/src/config/mini-chef.ts b/packages/sushi/src/config/mini-chef.ts new file mode 100644 index 0000000000..42d6c98ce5 --- /dev/null +++ b/packages/sushi/src/config/mini-chef.ts @@ -0,0 +1,28 @@ +import { ChainId } from '../chain/index.js' + +export const MINICHEF_SUPPORTED_CHAIN_IDS = [ + ChainId.POLYGON, + ChainId.GNOSIS, + // ChainId.HARMONY, + ChainId.ARBITRUM, + ChainId.CELO, + ChainId.MOONRIVER, + ChainId.FUSE, + ChainId.FANTOM, + ChainId.MOONBEAM, + ChainId.KAVA, + ChainId.METIS, + ChainId.BOBA, + ChainId.ARBITRUM_NOVA, + ChainId.BTTC, + ChainId.OPTIMISM, + ChainId.AVALANCHE, + ChainId.BSC, +] as const + +export type MiniChefChainId = (typeof MINICHEF_SUPPORTED_CHAIN_IDS)[number] + +export const isMiniChefChainId = ( + chainId: ChainId, +): chainId is MiniChefChainId => + MINICHEF_SUPPORTED_CHAIN_IDS.includes(chainId as MiniChefChainId) diff --git a/packages/sushi/src/config/subgraph/hosts.ts b/packages/sushi/src/config/subgraph/hosts.ts new file mode 100644 index 0000000000..b8f7cf2da2 --- /dev/null +++ b/packages/sushi/src/config/subgraph/hosts.ts @@ -0,0 +1,31 @@ +export const GRAPH_HOST = 'api.thegraph.com/subgraphs/name' +export const PENDING_GRAPH_HOST = 'api.thegraph.com/subgraphs/id' + +export const KAVA_HOST = 'pvt.graph.kava.io/subgraphs/name' +export const PENDING_KAVA_HOST = 'pvt.graph.kava.io/subgraphs/id' + +export const METIS_HOST = 'andromeda.thegraph.metis.io/subgraphs/name' +export const PENDING_METIS_HOST = 'andromeda.thegraph.metis.io/subgraphs/id' + +export const FILECOIN_HOST = 'sushi.laconic.com/subgraphs/name' +export const STUDIO_HOST = 'api.studio.thegraph.com/query/32073' +export const THUNDERCORE_HOST = 'graph-node.thundercore.com/subgraphs/name' +export const CORE_HOST = 'thegraph.coredao.org/subgraphs/name' +export const HAQQ_HOST = 'haqq.graph.p2p.org/subgraphs/name' +export const PCS_STUDIO_HOST = 'api.studio.thegraph.com/query/45376' +export const SUSHI_GOLDSKY_HOST = + 'api.goldsky.com/api/public/project_cls39ugcfyhbq01xl9tsf6g38/subgraphs' +export const SUSHI_DEDICATED_GOLDSKY_HOST = + 'api.goldsky.com/api/public/project_clslspm3c0knv01wvgfb2fqyq/subgraphs' +export const GOLDSKY_COMMUNITY_HOST = + 'api.goldsky.com/api/public/project_cl8ylkiw00krx0hvza0qw17vn/subgraphs' +export const WAGMI_METIS_HOST = 'metis.graph.wagmi.com/subgraphs/name' +export const WAGMI_KAVA_HOST = 'kava.graph.wagmi.com/subgraphs/name' +export const METIS_0XGRAPH_HOST = 'metisapi.0xgraph.xyz/subgraphs/name' +export const SKALE_HOST = + 'elated-tan-skat-graph.skalenodes.com:8000/subgraphs/name' + +const SUSHI_DOMAIN_RESTRICTED_API_KEY = '5d5d00365d2b8f675e12952d6eb5b9b0' +export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${ + process.env['SUSHI_GRAPH_KEY'] ?? SUSHI_DOMAIN_RESTRICTED_API_KEY +}/subgraphs/id` diff --git a/packages/sushi/src/config/subgraph/index.ts b/packages/sushi/src/config/subgraph/index.ts new file mode 100644 index 0000000000..aed2e572cd --- /dev/null +++ b/packages/sushi/src/config/subgraph/index.ts @@ -0,0 +1,4 @@ +export * from './hosts' +export * from './max-first' +export * from './seconds-between-blocks' +export * from './subgraphs' diff --git a/packages/sushi/src/config/subgraph/max-first.ts b/packages/sushi/src/config/subgraph/max-first.ts new file mode 100644 index 0000000000..257eaddc27 --- /dev/null +++ b/packages/sushi/src/config/subgraph/max-first.ts @@ -0,0 +1,11 @@ +import { ChainId } from '../../chain/index.js' + +const MAX_FIRST_PARTIAL: Partial> = { + [ChainId.METIS]: 100, +} + +export const MAX_FIRST = new Proxy(MAX_FIRST_PARTIAL, { + get: (target, name: any) => { + return name in target ? target[name as ChainId] : 1000 + }, +}) as Record diff --git a/packages/sushi/src/config/subgraph/seconds-between-blocks.ts b/packages/sushi/src/config/subgraph/seconds-between-blocks.ts new file mode 100644 index 0000000000..c033af8045 --- /dev/null +++ b/packages/sushi/src/config/subgraph/seconds-between-blocks.ts @@ -0,0 +1,30 @@ +import { ChainId } from '../../chain/index.js' + +export const SECONDS_BETWEEN_BLOCKS: Partial> = { + [ChainId.ETHEREUM]: 12, + [ChainId.GNOSIS]: 5, + [ChainId.POLYGON]: 2, + [ChainId.POLYGON_ZKEVM]: 5, + [ChainId.FANTOM]: 2, + [ChainId.BSC]: 3, + [ChainId.HARMONY]: 2, + [ChainId.AVALANCHE]: 2, + [ChainId.CELO]: 5, + [ChainId.ARBITRUM]: 0.25, + [ChainId.OKEX]: 3.8, + [ChainId.HECO]: 3, + [ChainId.MOONRIVER]: 12.2, + [ChainId.FUSE]: 5, + // [ChainId.KOVAN]: 4, + [ChainId.MOONBEAM]: 12.2, + [ChainId.OPTIMISM]: 2, + [ChainId.KAVA]: 6.3, + [ChainId.METIS]: 4.5, + [ChainId.ARBITRUM_NOVA]: 1, + [ChainId.BOBA]: 250, + [ChainId.BOBA_AVAX]: 612, + [ChainId.BOBA_BNB]: 0.5, + [ChainId.BTTC]: 2, + [ChainId.THUNDERCORE]: 1, + [ChainId.SCROLL]: 3, +} as const diff --git a/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts b/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts new file mode 100644 index 0000000000..761ea5d5a3 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts @@ -0,0 +1,22 @@ +import { ChainId } from '../../../chain/index.js' +import { BentoBoxChainId } from '../../bentobox.js' +import { + DECENTRALIZED_NETWORK_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, +} from '../hosts.js' + +export const BENTOBOX_SUBGRAPH_URL: Partial> = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/8HYeoDopVqqvb5RJEV2TtSzFsouYPz8cownnG3mbhiGy`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/6kJg5kFoQY8B8Ge2hqswHMqZDcmsR1TLUUz7AKov69fy`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/EhYaJodF1WQjKgxx1ZC63goeCwp5swD4AQRdaKXBm2xk`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/BggyE3r5snDsjx19jgZcbiBH7cbtrkpjvyGLFHMdXekd`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/AWD9Ca7KNZg7grfWosKTRqZTjPrJVgS5P5b37pDpN4CT`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/9jn9kA6SKCNxXQSqb93zZPLdLaru4FeZBwLNWAK4nfZ2`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/JZFyMKR4jnsFQ58q7dT6nbXenTzNgE176zTejc6Gf8Z`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/5DwkvjxPGVFFaWEMM68g1yztDdhCgJEYAxS6FuhkajzR`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/73XEV6UQKpPSJn68WZBAYTwALcZtFJkFYn58ZoZUb7tn`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/7wA5gqWNP4E1dPWBsTYvz5eQSDbtYDFgyU5BGdHr2UKp`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8b4Hy4Kn7jCNAf9JFrqHb24LsqmapG4HrAsCrwdJf9Nu`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/Bioj7N3Rf2n7iBq9PVoaMie3WiuzPze9NMi7aSye7LFc`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/bentobox-bttc/gn`, +} diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts new file mode 100644 index 0000000000..8b0e82fdaf --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -0,0 +1,50 @@ +import { ChainId } from '../../../chain/index.js' +import { + CORE_HOST, + DECENTRALIZED_NETWORK_HOST, + FILECOIN_HOST, + HAQQ_HOST, + KAVA_HOST, + METIS_HOST, + SKALE_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, + SUSHI_GOLDSKY_HOST, + THUNDERCORE_HOST, +} from '../hosts.js' + +export const BLOCKS_SUBGRAPH_URL: Partial> = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/236pc6mnPH2EdGJxR5wunibyGsagq1JsSx5e2hx5tdoE`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/HHpzhtyGrTNSbhtjgZyYG4aG538fKpV21dsCBshLnKDg`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 52% synced + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 88% synced + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 36% synced + // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, + // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/9JvasV5RyonCHn4bFR22VtsXGNuHsQCUiMJPQoGxqeVX`, + // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 62% synced + [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/blocks-kava`, + [ChainId.METIS]: `${METIS_HOST}/sushiswap/blocks-metis`, + // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/5d1ZCJQCEqsfCqLRRU5iQ9ewg79tuNqZLPMkgUcpmLsD`, + [ChainId.BOBA_BNB]: `${SUSHI_GOLDSKY_HOST}/blocks/boba-bnb/gn`, + [ChainId.BTTC]: `${SUSHI_GOLDSKY_HOST}/blocks/bttc-mainnet/gn`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushiswap/blocks-thundercore`, + [ChainId.CORE]: `${CORE_HOST}/sushiswap/blocks-core`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/GU5jJMiEHpomqddtbsXC3Avj3EweLHk6up1pvy2TCQQZ`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/4rj8wdVvkDGzj9w9UfT48zyXGQtLbULW4ygxDBG9Xza1`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/F4oYLjz8kVPFcY1iGc8S4rAaHnEZsUt6ixXSvFXACcGh`, + [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/blocks`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/blocks-haqq`, + [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/blocks-zetachain/1.0.0/gn`, + [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/blocks-blast/gn`, + [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/blocks-skale-europa`, +} diff --git a/packages/sushi/src/config/subgraph/subgraphs/furo.ts b/packages/sushi/src/config/subgraph/subgraphs/furo.ts new file mode 100644 index 0000000000..16b42e6ee5 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/furo.ts @@ -0,0 +1,27 @@ +import { ChainId } from '../../../chain/index.js' +import { FuroChainId } from '../../furo.js' +import { + CORE_HOST, + DECENTRALIZED_NETWORK_HOST, + HAQQ_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, + THUNDERCORE_HOST, +} from '../hosts.js' + +export const FURO_SUBGRAPH_URL: Record = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/D8vYJpKN5SEHUkUWKSuorsL6FRt7hAQMnywnC4e93ygf`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8eHhPeKDr646JH5KUBBcabAJzkWmLfu6pqBtpXQHa37F`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8LVoX3JPEVAak8T8GoEfdJudMoP2bsGwd9tszJxo3Rnx`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/2wBYezghRA3hEJLQB4njUZGDNxCdU3u2gsLP5yVvBqKk`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/E98zSR5UZBGBgQe2SSLZ5R6yj5GPqKDJcQJNDHTeV3cS`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/5ToxB5xubMh9osdEDeX98JBAyzUVwkReGXAT1CzQhZCB`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/9D9C3ppoDE1zuZk5adznngKomLYS8NnC9zxniSS8vzgH`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/HJxpcsmaPV3L6PsqGFBHLczeMnL7bEgmL1D65edGx8pf`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/9ZqdKjfu7o9dX1RThXHDV9EqMn5CTvgpsPKKbpANg8yC`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8KnsmppMf9k6Qvyixxwmny7dYugTV7XT4htHTfyq3d69`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/4KsDNsyJjKX6bjwVNJQmJ7Dm3wovYXSX37UR39rNaMX4`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/furo-haqq`, + [ChainId.CORE]: `${CORE_HOST}/sushi-subgraphs/furo-core`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-subgraphs/furo-thundercore`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-subgraphs/furo-bttc/gn`, +} diff --git a/packages/sushi/src/config/subgraph/subgraphs/index.ts b/packages/sushi/src/config/subgraph/subgraphs/index.ts new file mode 100644 index 0000000000..515aaa4ad4 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/index.ts @@ -0,0 +1,9 @@ +export * from './bentobox' +export * from './blocks' +export * from './furo' +export * from './master-chef-v1' +export * from './master-chef-v2' +export * from './mini-chef' +export * from './sushi-bar' +export * from './sushiswap-v2' +export * from './sushiswap-v3' diff --git a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts new file mode 100644 index 0000000000..986eac7ace --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts @@ -0,0 +1,3 @@ +import { DECENTRALIZED_NETWORK_HOST } from '../hosts.js' + +export const MASTERCHEF_V1_SUBGRAPH_URL = `${DECENTRALIZED_NETWORK_HOST}/HoVZ6mXTx3dvoqaUwcJozuowz7xijzDLmfuBWLed6rqi` diff --git a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts new file mode 100644 index 0000000000..f1e4ae4820 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts @@ -0,0 +1,3 @@ +import { DECENTRALIZED_NETWORK_HOST } from '../hosts.js' + +export const MASTERCHEF_V2_SUBGRAPH_URL = `${DECENTRALIZED_NETWORK_HOST}/FAa1YU79pPDUKj8vtkUPZGzCcPVS6Edg1md5LsRHSKWb` diff --git a/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts b/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts new file mode 100644 index 0000000000..694de3b05a --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts @@ -0,0 +1,35 @@ +import { ChainId } from '../../../chain/index.js' +import { MiniChefChainId } from '../../mini-chef.js' +import { + DECENTRALIZED_NETWORK_HOST, + GRAPH_HOST, + METIS_0XGRAPH_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, +} from '../hosts.js' + +export const MINICHEF_SUBGRAPH_URL: Record = { + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/DaSTfQbRTQq63HYGuAWusisUj23PFuisbhxHkjRHknex`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/FhtxFSxNCjVGknieajtwEzjruGFhTcAW9tWuADQ3tzNK`, + // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // Broken, no fix has been deployed or migrated + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/9oRuyFt4J6nHFpL5kWfkp3yocjzmZo1D8hKjqyKNuix`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/Aodb24RhU4p1p6p4ooq1Rwu5aVXhULAvXEGg8QEaPBvg`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/ExyevfNrFJ7EhTK74MDJ823h6oKkqUpwnVP1h3EuN8oa`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/GdVirDDQ2fg43pjt2cZiH9Uar7bhGfySvm4jiQ9fVD4u`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/GJXdaT5S7BHvGNxJSLJsMH36tB4w3Z7eES6jSDJuqddg`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/35kjzcBhiTgS3LLrhRFFGVGRfapzQBDC2wEWydvG2jZc`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/8s62qVWURfEebmaYkxDBwHLmWn7qF1dyucX2Tj6n3YPj`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/5DVXnbAu4uqKLbczLeAErLsLyQdxoZ1BjvCn1buWyZf8`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8M2Tyj1bVFp9paR9rcysn17V9Y1MbMgL9YEZQ5q4aSZH`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/CuaMtyA7JyzEf5mqsrWBwhdfLFfz1QU2js17R77wAyYB`, + [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-kava/gn`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-bttc/gn`, + [ChainId.OPTIMISM]: `${GRAPH_HOST}/sushiswap/minichef-optimism`, + [ChainId.AVALANCHE]: `${GRAPH_HOST}/sushiswap/minichef-avalanche`, + [ChainId.BSC]: `${GRAPH_HOST}/sushiswap/minichef-bsc`, + [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-kava/gn`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-bttc/gn`, +} diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts new file mode 100644 index 0000000000..524ca4da32 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts @@ -0,0 +1,2 @@ +export const SUSHI_BAR_SUBGRAPH_URL = + 'api.thegraph.com/subgraphs/name/sushi-labs/xsushi' diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts new file mode 100644 index 0000000000..3df6ff13e5 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts @@ -0,0 +1,46 @@ +import { ChainId } from '../../../chain/index.js' +import { SushiSwapV2ChainId } from '../../sushiswap-v2.js' +import { + CORE_HOST, + DECENTRALIZED_NETWORK_HOST, + FILECOIN_HOST, + HAQQ_HOST, + METIS_0XGRAPH_HOST, + SKALE_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, + SUSHI_GOLDSKY_HOST, + THUNDERCORE_HOST, +} from '../hosts.js' + +export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/5DpWu6oLUEwKYLcya5fJf3MW5CE6yEMnZ8iwekmTNAbV`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8yBXBTMfdhsoE5QCf7KnoPmQb7QAWtRzESfYjiCjGEM9`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/24xqSifM5xPfGrW8MDwRhgaDsq7uaP2762fmxjyxJzot`, + [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/8WcZLSs8QUSJptPbpBScoDafmp8E9whnSqYJc9TMyYFs`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/J7wEPt9nDHCno143dk6whAUesPyszxPqCDKhqDqWJHuz`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/FrcJbZ3j9GZ3vF8G9uVEFQZeTD8uiCc1A1eujtxYUwYH`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/7czeiia7ZXvsW45szX2w8EK1ZNgZWZET83zYCwE6JT9x`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/6MMVBsG9hgS8BzLZfPnU8KJdGiEFbd3CyNXVG6gQKCdQ`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/DuB755c1VYFSLLhq4b783ryPcvYdsvimGuZzBpFqoapX`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/3k9M7aZqeJXWLUogc2FSFBgXuxej2qstKSUNBXcPCcK5`, + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-arbitrum-nova/gn`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/4KvWjKY89DefJ6mPMASCTUDAZ6dyHSu7osCNQqaaaY3y`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/9cssJAh4EyzEWqZySBFguiXyygwZZAGBE3ETsGetNUK`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/8obLTNcEuGMieUt6jmrDaQUhWyj2pys26ULeP3gFiGNv`, + [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-boba-bnb/gn`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/7pXNLCc12pRM3bBPUAP9ZoEvkgUCjaBe9QC3DV9L2qzE`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/CiW3nquNZjKDoMfR4TbSpB4ox8Pq66FDxwSsohigSdxw`, + [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-kava/gn`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v2-metis`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-bttc/gn`, + [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/v2-filecoin`, + [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/v2-zetachain/1.0.0/gn`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/v2-thundercore`, + [ChainId.CORE]: `${CORE_HOST}/sushi-v2/v2-core`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v2-haqq`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/G4sRz1YAcEFYFewGLQ9bt76gQuP1oyuzhVSTvs9bj7qn`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, + [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-blast/gn`, + [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v2-skale-europa`, +} diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts new file mode 100644 index 0000000000..705c8438e7 --- /dev/null +++ b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts @@ -0,0 +1,42 @@ +import { ChainId } from '../../../chain/index.js' +import { SushiSwapV3ChainId } from '../../sushiswap-v3.js' +import { + CORE_HOST, + DECENTRALIZED_NETWORK_HOST, + FILECOIN_HOST, + HAQQ_HOST, + METIS_0XGRAPH_HOST, + SKALE_HOST, + SUSHI_DEDICATED_GOLDSKY_HOST, + SUSHI_GOLDSKY_HOST, + THUNDERCORE_HOST, +} from '../hosts.js' + +export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { + [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/96EYD64NqmnFxMELu2QLWB95gqCmA9N96ssYsZfFiYHg`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/4BxsTB5ADnYdgJgdmzyddmnDGCauctDia28uxB1hgTBE`, + [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/FiJDXMFCBv88GP17g2TtPh8BcA8jZozn5WRW7hCN7cUT`, + [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/71VWMKCvsWRqrJouxmEQwSEMqqnqiiVYSxTZvzR8PHRx`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/5nnoU1nUFeWqtXgbpC54L9PWdpgo7Y9HYinR3uTMsfzs`, + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/4BzEvR229mwKjneCbJTDM8dsS3rjgoKcXt5C7J1DaUxK`, + [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/8P62wYTJvhd6Aas656hVYhsccsGo2ihrJShaEnCoLJRK`, + [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/GFvGfWBX47RNnvgwL6SjAAf2mrqrPxF91eA53F4eNegW`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/F46W9YVQXGism5iN9NZNhKm2DQCvjhr4u847rL1tRebS`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/Dr3FkshPgTMMDwxckz3oZdwLxaPcbzZuAbE92i6arYtJ`, + [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/CqLnQY1d6DLcBYu7aZvGmt17LoNdTe4fDYnGbE2EgotR`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/E2x2gmtYdm2HX3QXorUBY4KegfGu79Za6TEQYjVrx15c`, + [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v3/v3-thundercore`, + [ChainId.CORE]: `${CORE_HOST}/sushi-v3/v3-core-fix`, + [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/Cz4Snpih41NNNPZcbj1gd3fYXPwFr5q92iWMoZjCarEb`, + [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/E2vqqvSzDdUiPP1r7PFnPKZQ34pAhNZjc6rEcdj3uE5t`, + [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/5gyhoHx768oHn3GxsHsEc7oKFMPFg9AH8ud1dY8EirRc`, + [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-kava/gn`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v3-metis`, + [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-bttc/gn`, + [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/v3-filecoin`, + [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v3-haqq`, + [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/v3-zetachain/1.0.0/gn`, + [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v3-blast/gn`, + [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v3-skale-europa`, +} diff --git a/packages/sushi/src/config/sushiswap-v2.ts b/packages/sushi/src/config/sushiswap-v2.ts index 09cbf3982a..fea6c9c6df 100644 --- a/packages/sushi/src/config/sushiswap-v2.ts +++ b/packages/sushi/src/config/sushiswap-v2.ts @@ -4,13 +4,13 @@ export const SUSHISWAP_V2_SUPPORTED_CHAIN_IDS = [ ChainId.ARBITRUM, ChainId.ARBITRUM_NOVA, ChainId.AVALANCHE, - ChainId.AVALANCHE_TESTNET, + // ChainId.AVALANCHE_TESTNET, ChainId.BASE, ChainId.BOBA, - ChainId.BOBA_AVAX, + // ChainId.BOBA_AVAX, ChainId.BOBA_BNB, ChainId.BSC, - ChainId.BSC_TESTNET, + // ChainId.BSC_TESTNET, ChainId.CELO, ChainId.ETHEREUM, ChainId.FANTOM, @@ -20,16 +20,16 @@ export const SUSHISWAP_V2_SUPPORTED_CHAIN_IDS = [ ChainId.HAQQ, ChainId.HARMONY, // ChainId.HARMONY_TESTNET, - ChainId.HECO, + // ChainId.HECO, // ChainId.HECO_TESTNET, ChainId.MOONBEAM, ChainId.MOONRIVER, - ChainId.OKEX, + // ChainId.OKEX, // ChainId.OKEX_TESTNET, - ChainId.PALM, + // ChainId.PALM, ChainId.POLYGON, - ChainId.POLYGON_TESTNET, - ChainId.TELOS, + // ChainId.POLYGON_TESTNET, + // ChainId.TELOS, ChainId.SCROLL, ChainId.KAVA, ChainId.METIS, @@ -80,50 +80,50 @@ export const SUSHISWAP_V2_INIT_CODE_HASH: Record< '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.POLYGON]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.POLYGON_TESTNET]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.POLYGON_TESTNET]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.GNOSIS]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.BSC]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.BSC_TESTNET]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.BSC_TESTNET]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.ARBITRUM]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.AVALANCHE]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.AVALANCHE_TESTNET]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.HECO]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.AVALANCHE_TESTNET]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.HECO]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', // [ChainId.HECO_TESTNET]: // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.HARMONY]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', // [ChainId.HARMONY_TESTNET]: // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.OKEX]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.OKEX]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', // [ChainId.OKEX_TESTNET]: // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.CELO]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.PALM]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.PALM]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.MOONRIVER]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.FUSE]: '0x1901958ef8b470f2c0a3875a79ee0bd303866d85102c0f1ea820d317024d50b5', - [ChainId.TELOS]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.TELOS]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.MOONBEAM]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.ARBITRUM_NOVA]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.BOBA]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', - [ChainId.BOBA_AVAX]: - '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', + // [ChainId.BOBA_AVAX]: + // '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.BOBA_BNB]: '0xe18a34eb0e04b04f7a0ac29a6e80748dca96319b42c54d679cb821dca90c6303', [ChainId.BASE]: @@ -169,29 +169,29 @@ export const SUSHISWAP_V2_FACTORY_ADDRESS: Record< // [ChainId.KOVAN]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.FANTOM]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.POLYGON]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.POLYGON_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.POLYGON_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.GNOSIS]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.BSC]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.BSC_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.BSC_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.ARBITRUM]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.AVALANCHE]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.AVALANCHE_TESTNET]: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c', + // [ChainId.AVALANCHE_TESTNET]: '0xd00ae08403B9bbb9124bB305C09058E32C39A48c', [ChainId.HAQQ]: '0xB45e53277a7e0F1D35f2a77160e91e25507f1763', - [ChainId.HECO]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.HECO]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', // [ChainId.HECO_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.HARMONY]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', // [ChainId.HARMONY_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.OKEX]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.OKEX]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', // [ChainId.OKEX_TESTNET]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.CELO]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.PALM]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.PALM]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.MOONRIVER]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.FUSE]: '0x43eA90e2b786728520e4f930d2A71a477BF2737C', - [ChainId.TELOS]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.TELOS]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.MOONBEAM]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.ARBITRUM_NOVA]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.BOBA]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', - [ChainId.BOBA_AVAX]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', + // [ChainId.BOBA_AVAX]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.BOBA_BNB]: '0xc35DADB65012eC5796536bD9864eD8773aBc74C4', [ChainId.BASE]: '0x71524B4f93c58fcbF659783284E38825f0622859', [ChainId.SCROLL]: '0xB45e53277a7e0F1D35f2a77160e91e25507f1763', @@ -221,29 +221,29 @@ export const SUSHISWAP_V2_ROUTER_ADDRESS: Record< [ChainId.FANTOM]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', // [ChainId.FANTOM_TESTNET]: '', [ChainId.POLYGON]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.POLYGON_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.POLYGON_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.GNOSIS]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.BSC]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.BSC_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.BSC_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.ARBITRUM]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', // [ChainId.ARBITRUM_TESTNET]: '', [ChainId.AVALANCHE]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.AVALANCHE_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.HECO]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.AVALANCHE_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.HECO]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', // [ChainId.HECO_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.HARMONY]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', // [ChainId.HARMONY_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.OKEX]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.OKEX]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', // [ChainId.OKEX_TESTNET]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.CELO]: '0xB45e53277a7e0F1D35f2a77160e91e25507f1763', - [ChainId.PALM]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.PALM]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.MOONRIVER]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.FUSE]: '0xF4d73326C13a4Fc5FD7A064217e12780e9Bd62c3', - [ChainId.TELOS]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.TELOS]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.MOONBEAM]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.ARBITRUM_NOVA]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.BOBA]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', - [ChainId.BOBA_AVAX]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', + // [ChainId.BOBA_AVAX]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.BOBA_BNB]: '0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506', [ChainId.BASE]: '0x6BDED42c6DA8FBf0d2bA55B2fa120C5e0c8D7891', [ChainId.SCROLL]: '0x9B3336186a38E1b6c21955d112dbb0343Ee061eE', diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4bd970a1e4..6f4cfabfbb 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -708,9 +708,6 @@ importers: '@sushiswap/graph-client-new': specifier: workspace:* version: link:../../packages/graph-client-new - '@sushiswap/graph-config': - specifier: workspace:* - version: link:../../config/graph '@sushiswap/hooks': specifier: workspace:* version: link:../../packages/hooks @@ -1172,30 +1169,6 @@ importers: specifier: 5.2.2 version: 5.2.2 - config/graph: - devDependencies: - '@sushiswap/jest-config': - specifier: workspace:* - version: link:../jest - '@tsconfig/esm': - specifier: 1.0.4 - version: 1.0.4 - '@tsconfig/node18': - specifier: 18.2.2 - version: 18.2.2 - '@tsconfig/strictest': - specifier: 2.0.2 - version: 2.0.2 - jest: - specifier: 29.7.0 - version: 29.7.0(@types/node@20.10.0) - sushi: - specifier: workspace:* - version: link:../../packages/sushi - typescript: - specifier: 5.2.2 - version: 5.2.2 - config/hardhat: dependencies: '@matterlabs/hardhat-zksync-deploy': @@ -1368,9 +1341,6 @@ importers: '@sushiswap/database': specifier: workspace:* version: link:../../packages/database - '@sushiswap/graph-config': - specifier: workspace:* - version: link:../../config/graph '@sushiswap/steer-sdk': specifier: workspace:* version: link:../../packages/steer-sdk @@ -1750,9 +1720,6 @@ importers: '@graphql-tools/merge': specifier: 9.0.3 version: 9.0.3(graphql@16.6.0) - '@sushiswap/graph-config': - specifier: workspace:* - version: link:../../config/graph '@sushiswap/wagmi-config': specifier: workspace:* version: link:../../config/wagmi @@ -1799,9 +1766,6 @@ importers: '@sushiswap/bonds-sdk': specifier: workspace:* version: link:../bonds-sdk - '@sushiswap/graph-config': - specifier: workspace:* - version: link:../../config/graph gql.tada: specifier: ^1.7.5 version: 1.7.5(graphql@16.6.0)(svelte@4.2.17)(typescript@5.2.2) @@ -1836,15 +1800,6 @@ importers: eslint: specifier: 8.43.0 version: 8.43.0 - fetch-graphql-schema: - specifier: ^0.2.1 - version: 0.2.1 - graphql-fetch-schema: - specifier: ^1.1.0 - version: 1.1.0 - graphql-js-schema-fetch: - specifier: ^1.1.2 - version: 1.1.2 tsc-alias: specifier: ^1.8.10 version: 1.8.10 @@ -22556,11 +22511,6 @@ packages: call-bind: 1.0.7 is-array-buffer: 3.0.4 - /array-find-index@1.0.2: - resolution: {integrity: sha512-M1HQyIXcBGtVywBt8WVdim+lrNaK7VHp99Qt5pSNziXznKHViIBbXWtfRTpEFpF/c4FdfxNAsCCwPp5phBYJtw==} - engines: {node: '>=0.10.0'} - dev: true - /array-flatten@1.1.1: resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} @@ -24595,14 +24545,6 @@ packages: resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} engines: {node: '>= 6'} - /camelcase-keys@2.1.0: - resolution: {integrity: sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ==} - engines: {node: '>=0.10.0'} - dependencies: - camelcase: 2.1.1 - map-obj: 1.0.1 - dev: true - /camelcase-keys@6.2.2: resolution: {integrity: sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==} engines: {node: '>=8'} @@ -24612,11 +24554,6 @@ packages: quick-lru: 4.0.1 dev: true - /camelcase@2.1.1: - resolution: {integrity: sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw==} - engines: {node: '>=0.10.0'} - dev: true - /camelcase@3.0.0: resolution: {integrity: sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==} engines: {node: '>=0.10.0'} @@ -26152,13 +26089,6 @@ packages: stream-transform: 2.1.3 dev: true - /currently-unhandled@0.4.1: - resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==} - engines: {node: '>=0.10.0'} - dependencies: - array-find-index: 1.0.2 - dev: true - /d3-array@3.2.4: resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} engines: {node: '>=12'} @@ -30259,18 +30189,6 @@ packages: pend: 1.2.0 dev: true - /fetch-graphql-schema@0.2.1: - resolution: {integrity: sha512-XtP692mntCOZRVOnAkZcco3W+2LprOl5Jk3Y0lKG5PJfnnj5Ict/vhMevQT15Dfdt7SZMjLGdr4fD7PbDQXEoQ==} - engines: {node: '>=0.12.0'} - hasBin: true - dependencies: - chalk: 1.1.3 - graphql: 16.6.0 - meow: 3.7.0 - mkdirp: 0.5.6 - node-fetch: 1.7.3 - dev: true - /fetch-ponyfill@4.1.0: resolution: {integrity: sha512-knK9sGskIg2T7OnYLdZ2hZXn0CtDrAIBxYQLpmEf0BqfdWnwmM1weccUl5+4EdA44tzNSFAuxITPbXtPehUB3g==} dependencies: @@ -31065,11 +30983,6 @@ packages: engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} dev: true - /get-stdin@4.0.1: - resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==} - engines: {node: '>=0.10.0'} - dev: true - /get-stdin@9.0.0: resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} engines: {node: '>=12'} @@ -31454,19 +31367,6 @@ packages: /graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} - /graphql-fetch-schema@1.1.0: - resolution: {integrity: sha512-uBUq1hg5x9VHywd7C9a1J/CVR0C3CPxJljx4qeZMFrT/LT1MTuK74lQjDQVUwXxj8lcwSpnxkoYsEZairh8SoA==} - hasBin: true - dependencies: - '@babel/runtime': 7.24.5 - commander: 2.20.3 - graphql: 16.6.0 - node-fetch: 2.7.0 - ora: 3.4.0 - transitivePeerDependencies: - - encoding - dev: true - /graphql-import-node@0.0.5(graphql@16.6.0): resolution: {integrity: sha512-OXbou9fqh9/Lm7vwXT0XoRN9J5+WCYKnbiTalgFDvkQERITRmcfncZs6aVABedd5B85yQU5EULS4a5pnbpuI0Q==} peerDependencies: @@ -31474,15 +31374,6 @@ packages: dependencies: graphql: 16.6.0 - /graphql-js-schema-fetch@1.1.2: - resolution: {integrity: sha512-ra+Mkdj2+lrL4I6G93jA4Y0TSYyilokU5g79D9XRVr6cnNHfxgfPF+FFFOKc09E/izgmxYNAbtya7e/1luvngw==} - hasBin: true - dependencies: - graphql: 16.6.0 - minimist: 1.2.0 - node-fetch: 1.6.3 - dev: true - /graphql-request@7.0.1(graphql@16.6.0): resolution: {integrity: sha512-hfGBZF6o6lC3C0th+aTMOFP6p8Ev+ydXn4PUlT8rvqPDUFCbaynXszjBCyu0saZIP3VGbJ67GpxW8UGK+tphSw==} hasBin: true @@ -32571,13 +32462,6 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} - /indent-string@2.1.0: - resolution: {integrity: sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg==} - engines: {node: '>=0.10.0'} - dependencies: - repeating: 2.0.1 - dev: true - /indent-string@4.0.0: resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} engines: {node: '>=8'} @@ -35529,13 +35413,6 @@ packages: /lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} - /log-symbols@2.2.0: - resolution: {integrity: sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==} - engines: {node: '>=4'} - dependencies: - chalk: 2.4.2 - dev: true - /log-symbols@3.0.0: resolution: {integrity: sha512-dSkNGuI7iG3mfvDzUuYZyvk5dD9ocYCYzNU6CYDE6+Xqd+gwme6Z00NS3dUh8mq/73HaEtT7m6W+yUPtU6BZnQ==} engines: {node: '>=8'} @@ -35583,14 +35460,6 @@ packages: resolution: {integrity: sha512-RicKUuLwZVNZ6ZdJHgIZnSeA05p8qWc5NW0uR96mpPIjN9WDLUg9+kj1esQU1GkPn9iLZVKatSQK5gyiaFHgJA==} dev: false - /loud-rejection@1.6.0: - resolution: {integrity: sha512-RPNliZOFkqFumDhvYqOaNY4Uz9oJM2K9tC6JWsJJsNdhuONW4LQHRBpb0qf4pJApVffI5N39SwzWZJuEhfd7eQ==} - engines: {node: '>=0.10.0'} - dependencies: - currently-unhandled: 0.4.1 - signal-exit: 3.0.7 - dev: true - /loupe@2.3.6: resolution: {integrity: sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==} dependencies: @@ -36062,22 +35931,6 @@ packages: resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==} engines: {node: '>= 0.10.0'} - /meow@3.7.0: - resolution: {integrity: sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA==} - engines: {node: '>=0.10.0'} - dependencies: - camelcase-keys: 2.1.0 - decamelize: 1.2.0 - loud-rejection: 1.6.0 - map-obj: 1.0.1 - minimist: 1.2.8 - normalize-package-data: 2.5.0 - object-assign: 4.1.1 - read-pkg-up: 1.0.1 - redent: 1.0.0 - trim-newlines: 1.0.0 - dev: true - /meow@6.1.1: resolution: {integrity: sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==} engines: {node: '>=8'} @@ -36851,10 +36704,6 @@ packages: kind-of: 6.0.3 dev: true - /minimist@1.2.0: - resolution: {integrity: sha512-7Wl+Jz+IGWuSdgsQEJ4JunV0si/iMhg42MnQQG6h1R6TNeVenp4U9x5CC5v/gYqz/fENLQITAWXidNtVL0NNbw==} - dev: true - /minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -37460,13 +37309,6 @@ packages: /node-fetch-native@1.6.1: resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} - /node-fetch@1.6.3: - resolution: {integrity: sha512-BDxbhLHXFFFvilHjh9xihcDyPkXQ+kjblxnl82zAX41xUYSNvuRpFRznmldR9+OKu+p+ULZ7hNoyunlLB5ecUA==} - dependencies: - encoding: 0.1.13 - is-stream: 1.1.0 - dev: true - /node-fetch@1.7.3: resolution: {integrity: sha512-NhZ4CsKx7cYm2vSrBAr2PvFOe6sWDf0UYLRqA6svUYg7+/TSfVAu49jYC4BvQ4Sms9SZgdqGBgroqfDhJdTyKQ==} dependencies: @@ -37985,18 +37827,6 @@ packages: prelude-ls: 1.2.1 type-check: 0.4.0 - /ora@3.4.0: - resolution: {integrity: sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==} - engines: {node: '>=6'} - dependencies: - chalk: 2.4.2 - cli-cursor: 2.1.0 - cli-spinners: 2.9.0 - log-symbols: 2.2.0 - strip-ansi: 5.2.0 - wcwidth: 1.0.1 - dev: true - /ora@4.1.1: resolution: {integrity: sha512-sjYP8QyVWBpBZWD6Vr1M/KwknSw6kJOz41tvGMlwWeClHBtYKTbHMki1PsLZnxKpXMPbTKv9b3pjQu3REib96A==} engines: {node: '>=8'} @@ -41587,14 +41417,6 @@ packages: dependencies: minimatch: 3.1.2 - /redent@1.0.0: - resolution: {integrity: sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g==} - engines: {node: '>=0.10.0'} - dependencies: - indent-string: 2.1.0 - strip-indent: 1.0.1 - dev: true - /redent@3.0.0: resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} engines: {node: '>=8'} @@ -43834,14 +43656,6 @@ packages: dependencies: is-hex-prefixed: 1.0.0 - /strip-indent@1.0.1: - resolution: {integrity: sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA==} - engines: {node: '>=0.10.0'} - hasBin: true - dependencies: - get-stdin: 4.0.1 - dev: true - /strip-indent@3.0.0: resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} engines: {node: '>=8'} @@ -44835,11 +44649,6 @@ packages: resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} dev: false - /trim-newlines@1.0.0: - resolution: {integrity: sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw==} - engines: {node: '>=0.10.0'} - dev: true - /trim-newlines@3.0.1: resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==} engines: {node: '>=8'} From e85edec32ee7c2aa40956ee3790be90ba2232ec4 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 27 May 2024 17:52:44 +0000 Subject: [PATCH 033/119] chore: format --- packages/graph-client-new/package.json | 4 +- .../src/subgraphs/blocks/blocks-cache.d.ts | 219 +- .../src/subgraphs/blocks/blocks-env.d.ts | 1487 +- .../src/subgraphs/bonds/bonds-cache.d.ts | 5169 ++- .../src/subgraphs/bonds/bonds-env.d.ts | 13551 +++++++- .../master-chef-v1/master-chef-v1-cache.d.ts | 581 +- .../master-chef-v1/master-chef-v1-env.d.ts | 5700 +++- .../master-chef-v2/master-chef-v2-cache.d.ts | 581 +- .../master-chef-v2/master-chef-v2-env.d.ts | 2693 +- .../subgraphs/mini-chef/mini-chef-cache.d.ts | 581 +- .../subgraphs/mini-chef/mini-chef-env.d.ts | 3128 +- .../subgraphs/sushi-bar/sushi-bar-cache.d.ts | 20 +- .../subgraphs/sushi-bar/sushi-bar-env.d.ts | 8525 ++++- .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 18568 ++++++++++- .../src/subgraphs/sushi-v2/sushi-v2-env.d.ts | 13273 +++++++- .../src/subgraphs/sushi-v3/sushi-v3-env.d.ts | 27643 +++++++++++++++- 16 files changed, 101233 insertions(+), 490 deletions(-) diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index d6a6e01b51..79768ea6e2 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -52,9 +52,9 @@ "dist/**" ], "scripts": { - "build:types": "gql.tada generate output && gql.tada turbo", - "build:compile": "tsc && tsc-alias -p tsconfig.json", "build": "pnpm build:types && pnpm build:compile", + "build:compile": "tsc && tsc-alias -p tsconfig.json", + "build:types": "gql.tada generate output && gql.tada turbo", "check": "tsc --pretty --noEmit", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "dev": "tsc --watch", diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts index 57c955795d..f81c43eeed 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts @@ -1,10 +1,221 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query Blocks($first: Int = 1000, $skip: Int = 0, $orderBy: Block_orderBy = number, $orderDirection: OrderDirection = desc, $where: Block_filter) {\n blocks(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n number\n timestamp\n }\n }\n": - TadaDocumentNode<{ blocks: { timestamp: string; number: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; unclesHash_not_ends_with_nocase?: string; unclesHash_not_ends_with?: string; unclesHash_ends_with_nocase?: string; unclesHash_ends_with?: string; unclesHash_not_starts_with_nocase?: string; unclesHash_not_starts_with?: string; unclesHash_starts_with_nocase?: string; unclesHash_starts_with?: string; unclesHash_not_contains_nocase?: string; unclesHash_not_contains?: string; unclesHash_contains_nocase?: string; unclesHash_contains?: string; unclesHash_not_in?: string[]; unclesHash_in?: string[]; unclesHash_lte?: string; unclesHash_gte?: string; unclesHash_lt?: string; unclesHash_gt?: string; unclesHash_not?: string; unclesHash?: string; size_not_in?: string[]; size_in?: string[]; size_lte?: string; size_gte?: string; size_lt?: string; size_gt?: string; size_not?: string; size?: string; stateRoot_not_ends_with_nocase?: string; stateRoot_not_ends_with?: string; stateRoot_ends_with_nocase?: string; stateRoot_ends_with?: string; stateRoot_not_starts_with_nocase?: string; stateRoot_not_starts_with?: string; stateRoot_starts_with_nocase?: string; stateRoot_starts_with?: string; stateRoot_not_contains_nocase?: string; stateRoot_not_contains?: string; stateRoot_contains_nocase?: string; stateRoot_contains?: string; stateRoot_not_in?: string[]; stateRoot_in?: string[]; stateRoot_lte?: string; stateRoot_gte?: string; stateRoot_lt?: string; stateRoot_gt?: string; stateRoot_not?: string; stateRoot?: string; transactionsRoot_not_ends_with_nocase?: string; transactionsRoot_not_ends_with?: string; transactionsRoot_ends_with_nocase?: string; transactionsRoot_ends_with?: string; transactionsRoot_not_starts_with_nocase?: string; transactionsRoot_not_starts_with?: string; transactionsRoot_starts_with_nocase?: string; transactionsRoot_starts_with?: string; transactionsRoot_not_contains_nocase?: string; transactionsRoot_not_contains?: string; transactionsRoot_contains_nocase?: string; transactionsRoot_contains?: string; transactionsRoot_not_in?: string[]; transactionsRoot_in?: string[]; transactionsRoot_lte?: string; transactionsRoot_gte?: string; transactionsRoot_lt?: string; transactionsRoot_gt?: string; transactionsRoot_not?: string; transactionsRoot?: string; receiptsRoot_not_ends_with_nocase?: string; receiptsRoot_not_ends_with?: string; receiptsRoot_ends_with_nocase?: string; receiptsRoot_ends_with?: string; receiptsRoot_not_starts_with_nocase?: string; receiptsRoot_not_starts_with?: string; receiptsRoot_starts_with_nocase?: string; receiptsRoot_starts_with?: string; receiptsRoot_not_contains_nocase?: string; receiptsRoot_not_contains?: string; receiptsRoot_contains_nocase?: string; receiptsRoot_contains?: string; receiptsRoot_not_in?: string[]; receiptsRoot_in?: string[]; receiptsRoot_lte?: string; receiptsRoot_gte?: string; receiptsRoot_lt?: string; receiptsRoot_gt?: string; receiptsRoot_not?: string; receiptsRoot?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; totalDifficulty_not_in?: string[]; totalDifficulty_in?: string[]; totalDifficulty_lte?: string; totalDifficulty_gte?: string; totalDifficulty_lt?: string; totalDifficulty_gt?: string; totalDifficulty_not?: string; totalDifficulty?: string; difficulty_not_in?: string[]; difficulty_in?: string[]; difficulty_lte?: string; difficulty_gte?: string; difficulty_lt?: string; difficulty_gt?: string; difficulty_not?: string; difficulty?: string; author_not_ends_with_nocase?: string; author_not_ends_with?: string; author_ends_with_nocase?: string; author_ends_with?: string; author_not_starts_with_nocase?: string; author_not_starts_with?: string; author_starts_with_nocase?: string; author_starts_with?: string; author_not_contains_nocase?: string; author_not_contains?: string; author_contains_nocase?: string; author_contains?: string; author_not_in?: string[]; author_in?: string[]; author_lte?: string; author_gte?: string; author_lt?: string; author_gt?: string; author_not?: string; author?: string; parentHash_not_ends_with_nocase?: string; parentHash_not_ends_with?: string; parentHash_ends_with_nocase?: string; parentHash_ends_with?: string; parentHash_not_starts_with_nocase?: string; parentHash_not_starts_with?: string; parentHash_starts_with_nocase?: string; parentHash_starts_with?: string; parentHash_not_contains_nocase?: string; parentHash_not_contains?: string; parentHash_contains_nocase?: string; parentHash_contains?: string; parentHash_not_in?: string[]; parentHash_in?: string[]; parentHash_lte?: string; parentHash_gte?: string; parentHash_lt?: string; parentHash_gt?: string; parentHash_not?: string; parentHash?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; number_not_in?: string[]; number_in?: string[]; number_lte?: string; number_gte?: string; number_lt?: string; number_gt?: string; number_not?: string; number?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "number" | "id" | "timestamp" | "gasLimit" | "parentHash" | "author" | "difficulty" | "totalDifficulty" | "gasUsed" | "receiptsRoot" | "transactionsRoot" | "stateRoot" | "size" | "unclesHash"; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query Blocks($first: Int = 1000, $skip: Int = 0, $orderBy: Block_orderBy = number, $orderDirection: OrderDirection = desc, $where: Block_filter) {\n blocks(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n number\n timestamp\n }\n }\n': TadaDocumentNode< + { blocks: { timestamp: string; number: string; id: string }[] }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + unclesHash_not_ends_with_nocase?: string + unclesHash_not_ends_with?: string + unclesHash_ends_with_nocase?: string + unclesHash_ends_with?: string + unclesHash_not_starts_with_nocase?: string + unclesHash_not_starts_with?: string + unclesHash_starts_with_nocase?: string + unclesHash_starts_with?: string + unclesHash_not_contains_nocase?: string + unclesHash_not_contains?: string + unclesHash_contains_nocase?: string + unclesHash_contains?: string + unclesHash_not_in?: string[] + unclesHash_in?: string[] + unclesHash_lte?: string + unclesHash_gte?: string + unclesHash_lt?: string + unclesHash_gt?: string + unclesHash_not?: string + unclesHash?: string + size_not_in?: string[] + size_in?: string[] + size_lte?: string + size_gte?: string + size_lt?: string + size_gt?: string + size_not?: string + size?: string + stateRoot_not_ends_with_nocase?: string + stateRoot_not_ends_with?: string + stateRoot_ends_with_nocase?: string + stateRoot_ends_with?: string + stateRoot_not_starts_with_nocase?: string + stateRoot_not_starts_with?: string + stateRoot_starts_with_nocase?: string + stateRoot_starts_with?: string + stateRoot_not_contains_nocase?: string + stateRoot_not_contains?: string + stateRoot_contains_nocase?: string + stateRoot_contains?: string + stateRoot_not_in?: string[] + stateRoot_in?: string[] + stateRoot_lte?: string + stateRoot_gte?: string + stateRoot_lt?: string + stateRoot_gt?: string + stateRoot_not?: string + stateRoot?: string + transactionsRoot_not_ends_with_nocase?: string + transactionsRoot_not_ends_with?: string + transactionsRoot_ends_with_nocase?: string + transactionsRoot_ends_with?: string + transactionsRoot_not_starts_with_nocase?: string + transactionsRoot_not_starts_with?: string + transactionsRoot_starts_with_nocase?: string + transactionsRoot_starts_with?: string + transactionsRoot_not_contains_nocase?: string + transactionsRoot_not_contains?: string + transactionsRoot_contains_nocase?: string + transactionsRoot_contains?: string + transactionsRoot_not_in?: string[] + transactionsRoot_in?: string[] + transactionsRoot_lte?: string + transactionsRoot_gte?: string + transactionsRoot_lt?: string + transactionsRoot_gt?: string + transactionsRoot_not?: string + transactionsRoot?: string + receiptsRoot_not_ends_with_nocase?: string + receiptsRoot_not_ends_with?: string + receiptsRoot_ends_with_nocase?: string + receiptsRoot_ends_with?: string + receiptsRoot_not_starts_with_nocase?: string + receiptsRoot_not_starts_with?: string + receiptsRoot_starts_with_nocase?: string + receiptsRoot_starts_with?: string + receiptsRoot_not_contains_nocase?: string + receiptsRoot_not_contains?: string + receiptsRoot_contains_nocase?: string + receiptsRoot_contains?: string + receiptsRoot_not_in?: string[] + receiptsRoot_in?: string[] + receiptsRoot_lte?: string + receiptsRoot_gte?: string + receiptsRoot_lt?: string + receiptsRoot_gt?: string + receiptsRoot_not?: string + receiptsRoot?: string + gasLimit_not_in?: string[] + gasLimit_in?: string[] + gasLimit_lte?: string + gasLimit_gte?: string + gasLimit_lt?: string + gasLimit_gt?: string + gasLimit_not?: string + gasLimit?: string + gasUsed_not_in?: string[] + gasUsed_in?: string[] + gasUsed_lte?: string + gasUsed_gte?: string + gasUsed_lt?: string + gasUsed_gt?: string + gasUsed_not?: string + gasUsed?: string + totalDifficulty_not_in?: string[] + totalDifficulty_in?: string[] + totalDifficulty_lte?: string + totalDifficulty_gte?: string + totalDifficulty_lt?: string + totalDifficulty_gt?: string + totalDifficulty_not?: string + totalDifficulty?: string + difficulty_not_in?: string[] + difficulty_in?: string[] + difficulty_lte?: string + difficulty_gte?: string + difficulty_lt?: string + difficulty_gt?: string + difficulty_not?: string + difficulty?: string + author_not_ends_with_nocase?: string + author_not_ends_with?: string + author_ends_with_nocase?: string + author_ends_with?: string + author_not_starts_with_nocase?: string + author_not_starts_with?: string + author_starts_with_nocase?: string + author_starts_with?: string + author_not_contains_nocase?: string + author_not_contains?: string + author_contains_nocase?: string + author_contains?: string + author_not_in?: string[] + author_in?: string[] + author_lte?: string + author_gte?: string + author_lt?: string + author_gt?: string + author_not?: string + author?: string + parentHash_not_ends_with_nocase?: string + parentHash_not_ends_with?: string + parentHash_ends_with_nocase?: string + parentHash_ends_with?: string + parentHash_not_starts_with_nocase?: string + parentHash_not_starts_with?: string + parentHash_starts_with_nocase?: string + parentHash_starts_with?: string + parentHash_not_contains_nocase?: string + parentHash_not_contains?: string + parentHash_contains_nocase?: string + parentHash_contains?: string + parentHash_not_in?: string[] + parentHash_in?: string[] + parentHash_lte?: string + parentHash_gte?: string + parentHash_lt?: string + parentHash_gt?: string + parentHash_not?: string + parentHash?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + number_not_in?: string[] + number_in?: string[] + number_lte?: string + number_gte?: string + number_lt?: string + number_gt?: string + number_not?: string + number?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'number' + | 'id' + | 'timestamp' + | 'gasLimit' + | 'parentHash' + | 'author' + | 'difficulty' + | 'totalDifficulty' + | 'gasUsed' + | 'receiptsRoot' + | 'transactionsRoot' + | 'stateRoot' + | 'size' + | 'unclesHash' + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts index 5aa78c97ac..bcc174ecd9 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts @@ -10,33 +10,1464 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'blocks'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'blocks' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'Block': { kind: 'OBJECT'; name: 'Block'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'difficulty': { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiptsRoot': { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stateRoot': { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalDifficulty': { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'transactionsRoot': { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unclesHash': { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_filter': { kind: 'INPUT_OBJECT'; name: 'Block_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'number_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'difficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Block_orderBy': { name: 'Block_orderBy'; enumValues: 'id' | 'number' | 'timestamp' | 'parentHash' | 'author' | 'difficulty' | 'totalDifficulty' | 'gasUsed' | 'gasLimit' | 'receiptsRoot' | 'transactionsRoot' | 'stateRoot' | 'size' | 'unclesHash'; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + Block: { + kind: 'OBJECT' + name: 'Block' + fields: { + author: { + name: 'author' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + difficulty: { + name: 'difficulty' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + gasLimit: { + name: 'gasLimit' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + gasUsed: { + name: 'gasUsed' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + receiptsRoot: { + name: 'receiptsRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + size: { + name: 'size' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + stateRoot: { + name: 'stateRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalDifficulty: { + name: 'totalDifficulty' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + transactionsRoot: { + name: 'transactionsRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + unclesHash: { + name: 'unclesHash' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_filter: { + kind: 'INPUT_OBJECT' + name: 'Block_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'number_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'number_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'parentHash_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'parentHash_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'parentHash_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'author_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'author_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'author_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'difficulty_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'difficulty_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalDifficulty' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalDifficulty_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalDifficulty_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasLimit' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasLimit_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'receiptsRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'receiptsRoot_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'receiptsRoot_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'receiptsRoot_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionsRoot_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionsRoot_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transactionsRoot_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'stateRoot_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'stateRoot_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'stateRoot_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'size' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'size_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'size_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'unclesHash' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'unclesHash_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'unclesHash_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'unclesHash_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Block_orderBy: { + name: 'Block_orderBy' + enumValues: + | 'id' + | 'number' + | 'timestamp' + | 'parentHash' + | 'author' + | 'difficulty' + | 'totalDifficulty' + | 'gasUsed' + | 'gasLimit' + | 'receiptsRoot' + | 'transactionsRoot' + | 'stateRoot' + | 'size' + | 'unclesHash' + } + Boolean: unknown + Bytes: unknown + ID: unknown + Int: unknown + Int8: unknown + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + block: { + name: 'block' + type: { kind: 'OBJECT'; name: 'Block'; ofType: null } + } + blocks: { + name: 'blocks' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null } + } + } + } + } + } + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + block: { + name: 'block' + type: { kind: 'OBJECT'; name: 'Block'; ofType: null } + } + blocks: { + name: 'blocks' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null } + } + } + } + } + } + } + Timestamp: unknown + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts index 5e3951ee97..2e26c9d43d 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts @@ -1,12 +1,5169 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) {\n markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n chainId\n type\n auctioneer\n teller\n marketId\n owner\n capacity\n capacityInQuote\n minPrice\n scale\n start\n conclusion\n payoutToken {\n id: address\n symbol\n decimals\n name\n }\n quoteToken {\n id: address\n symbol\n decimals\n name\n }\n vesting\n vestingType\n isInstantSwap\n hasClosed\n totalBondedAmount\n totalPayoutAmount\n averageBondPrice\n bondsIssued\n }\n }\n": - TadaDocumentNode<{ markets: { bondsIssued: string; averageBondPrice: string; totalPayoutAmount: string; totalBondedAmount: string; hasClosed: boolean; isInstantSwap: boolean; vestingType: string; vesting: string; quoteToken: { name: string; decimals: string; symbol: string; id: string; }; payoutToken: { name: string; decimals: string; symbol: string; id: string; }; conclusion: string; start: string; scale: string; minPrice: string; capacityInQuote: boolean; capacity: string; owner: string; marketId: string; teller: string; auctioneer: string; type: string; chainId: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "type" | "price" | "chainId" | "auctioneer" | "teller" | "marketId" | "owner" | "capacity" | "capacityInQuote" | "minPrice" | "scale" | "start" | "conclusion" | "payoutToken" | "quoteToken" | "vesting" | "vestingType" | "isInstantSwap" | "hasClosed" | "totalBondedAmount" | "totalPayoutAmount" | "averageBondPrice" | "bondsIssued" | "network" | "creationBlockTimestamp" | "callbackAddress" | "payoutToken__id" | "payoutToken__network" | "payoutToken__chainId" | "payoutToken__address" | "payoutToken__decimals" | "payoutToken__symbol" | "payoutToken__name" | "payoutToken__typeName" | "payoutToken__usedAsPayout" | "payoutToken__usedAsQuote" | "payoutToken__totalPayoutAmount" | "payoutToken__purchaseCount" | "quoteToken__id" | "quoteToken__network" | "quoteToken__chainId" | "quoteToken__address" | "quoteToken__decimals" | "quoteToken__symbol" | "quoteToken__name" | "quoteToken__typeName" | "quoteToken__usedAsPayout" | "quoteToken__usedAsQuote" | "quoteToken__totalPayoutAmount" | "quoteToken__purchaseCount" | "tunes" | "bondPurchases"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) {\n positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n balance\n bondToken {\n id\n expiry\n type\n teller\n underlying {\n id: address\n symbol\n decimals\n name\n }\n }\n }\n }\n": - TadaDocumentNode<{ positions: { bondToken: { underlying: { name: string; decimals: string; symbol: string; id: string; }; teller: string; type: string; expiry: string; id: string; }; balance: string; owner: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; expiry_not_in?: string[]; expiry_in?: string[]; expiry_lte?: string; expiry_gte?: string; expiry_lt?: string; expiry_gt?: string; expiry_not?: string; expiry?: string; underlying_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; underlying_not_ends_with_nocase?: string; underlying_not_ends_with?: string; underlying_ends_with_nocase?: string; underlying_ends_with?: string; underlying_not_starts_with_nocase?: string; underlying_not_starts_with?: string; underlying_starts_with_nocase?: string; underlying_starts_with?: string; underlying_not_contains_nocase?: string; underlying_not_contains?: string; underlying_contains_nocase?: string; underlying_contains?: string; underlying_not_in?: string[]; underlying_in?: string[]; underlying_lte?: string; underlying_gte?: string; underlying_lt?: string; underlying_gt?: string; underlying_not?: string; underlying?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; bondToken_not_ends_with_nocase?: string; bondToken_not_ends_with?: string; bondToken_ends_with_nocase?: string; bondToken_ends_with?: string; bondToken_not_starts_with_nocase?: string; bondToken_not_starts_with?: string; bondToken_starts_with_nocase?: string; bondToken_starts_with?: string; bondToken_not_contains_nocase?: string; bondToken_not_contains?: string; bondToken_contains_nocase?: string; bondToken_contains?: string; bondToken_not_in?: string[]; bondToken_in?: string[]; bondToken_lte?: string; bondToken_gte?: string; bondToken_lt?: string; bondToken_gt?: string; bondToken_not?: string; bondToken?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; tokenId_not_in?: string[]; tokenId_in?: string[]; tokenId_lte?: string; tokenId_gte?: string; tokenId_lt?: string; tokenId_gt?: string; tokenId_not?: string; tokenId?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "chainId" | "owner" | "network" | "balance" | "bondToken" | "tokenId" | "bondToken__id" | "bondToken__decimals" | "bondToken__symbol" | "bondToken__expiry" | "bondToken__teller" | "bondToken__network" | "bondToken__chainId" | "bondToken__type"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) {\n markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n chainId\n type\n auctioneer\n teller\n marketId\n owner\n capacity\n capacityInQuote\n minPrice\n scale\n start\n conclusion\n payoutToken {\n id: address\n symbol\n decimals\n name\n }\n quoteToken {\n id: address\n symbol\n decimals\n name\n }\n vesting\n vestingType\n isInstantSwap\n hasClosed\n totalBondedAmount\n totalPayoutAmount\n averageBondPrice\n bondsIssued\n }\n }\n': TadaDocumentNode< + { + markets: { + bondsIssued: string + averageBondPrice: string + totalPayoutAmount: string + totalBondedAmount: string + hasClosed: boolean + isInstantSwap: boolean + vestingType: string + vesting: string + quoteToken: { + name: string + decimals: string + symbol: string + id: string + } + payoutToken: { + name: string + decimals: string + symbol: string + id: string + } + conclusion: string + start: string + scale: string + minPrice: string + capacityInQuote: boolean + capacity: string + owner: string + marketId: string + teller: string + auctioneer: string + type: string + chainId: string + id: string + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondsIssued_not_in?: string[] + bondsIssued_in?: string[] + bondsIssued_lte?: string + bondsIssued_gte?: string + bondsIssued_lt?: string + bondsIssued_gt?: string + bondsIssued_not?: string + bondsIssued?: string + bondPurchases_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + payoutTokenTbv_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondPurchases_?: any + tbv_not_in?: string[] + tbv_in?: string[] + tbv_lte?: string + tbv_gte?: string + tbv_lt?: string + tbv_gt?: string + tbv_not?: string + tbv?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + quoteToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbv_not_ends_with_nocase?: string + payoutTokenTbv_not_ends_with?: string + payoutTokenTbv_ends_with_nocase?: string + payoutTokenTbv_ends_with?: string + payoutTokenTbv_not_starts_with_nocase?: string + payoutTokenTbv_not_starts_with?: string + payoutTokenTbv_starts_with_nocase?: string + payoutTokenTbv_starts_with?: string + payoutTokenTbv_not_contains_nocase?: string + payoutTokenTbv_not_contains?: string + payoutTokenTbv_contains_nocase?: string + payoutTokenTbv_contains?: string + payoutTokenTbv_not_in?: string[] + payoutTokenTbv_in?: string[] + payoutTokenTbv_lte?: string + payoutTokenTbv_gte?: string + payoutTokenTbv_lt?: string + payoutTokenTbv_gt?: string + payoutTokenTbv_not?: string + payoutTokenTbv?: string + ownerTokenTbv_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondPurchases_?: any + tbv_not_in?: string[] + tbv_in?: string[] + tbv_lte?: string + tbv_gte?: string + tbv_lt?: string + tbv_gt?: string + tbv_not?: string + tbv?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + ownerTokenTbv_not_ends_with_nocase?: string + ownerTokenTbv_not_ends_with?: string + ownerTokenTbv_ends_with_nocase?: string + ownerTokenTbv_ends_with?: string + ownerTokenTbv_not_starts_with_nocase?: string + ownerTokenTbv_not_starts_with?: string + ownerTokenTbv_starts_with_nocase?: string + ownerTokenTbv_starts_with?: string + ownerTokenTbv_not_contains_nocase?: string + ownerTokenTbv_not_contains?: string + ownerTokenTbv_contains_nocase?: string + ownerTokenTbv_contains?: string + ownerTokenTbv_not_in?: string[] + ownerTokenTbv_in?: string[] + ownerTokenTbv_lte?: string + ownerTokenTbv_gte?: string + ownerTokenTbv_lt?: string + ownerTokenTbv_gt?: string + ownerTokenTbv_not?: string + ownerTokenTbv?: string + postPurchasePrice_not_in?: string[] + postPurchasePrice_in?: string[] + postPurchasePrice_lte?: string + postPurchasePrice_gte?: string + postPurchasePrice_lt?: string + postPurchasePrice_gt?: string + postPurchasePrice_not?: string + postPurchasePrice?: string + purchasePrice_not_in?: string[] + purchasePrice_in?: string[] + purchasePrice_lte?: string + purchasePrice_gte?: string + purchasePrice_lt?: string + purchasePrice_gt?: string + purchasePrice_not?: string + purchasePrice?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + quoteToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + auctioneer_not_ends_with_nocase?: string + auctioneer_not_ends_with?: string + auctioneer_ends_with_nocase?: string + auctioneer_ends_with?: string + auctioneer_not_starts_with_nocase?: string + auctioneer_not_starts_with?: string + auctioneer_starts_with_nocase?: string + auctioneer_starts_with?: string + auctioneer_not_contains_nocase?: string + auctioneer_not_contains?: string + auctioneer_contains_nocase?: string + auctioneer_contains?: string + auctioneer_not_in?: string[] + auctioneer_in?: string[] + auctioneer_lte?: string + auctioneer_gte?: string + auctioneer_lt?: string + auctioneer_gt?: string + auctioneer_not?: string + auctioneer?: string + teller_not_ends_with_nocase?: string + teller_not_ends_with?: string + teller_ends_with_nocase?: string + teller_ends_with?: string + teller_not_starts_with_nocase?: string + teller_not_starts_with?: string + teller_starts_with_nocase?: string + teller_starts_with?: string + teller_not_contains_nocase?: string + teller_not_contains?: string + teller_contains_nocase?: string + teller_contains?: string + teller_not_in?: string[] + teller_in?: string[] + teller_lte?: string + teller_gte?: string + teller_lt?: string + teller_gt?: string + teller_not?: string + teller?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + referrer_not_ends_with_nocase?: string + referrer_not_ends_with?: string + referrer_ends_with_nocase?: string + referrer_ends_with?: string + referrer_not_starts_with_nocase?: string + referrer_not_starts_with?: string + referrer_starts_with_nocase?: string + referrer_starts_with?: string + referrer_not_contains_nocase?: string + referrer_not_contains?: string + referrer_contains_nocase?: string + referrer_contains?: string + referrer_not_in?: string[] + referrer_in?: string[] + referrer_lte?: string + referrer_gte?: string + referrer_lt?: string + referrer_gt?: string + referrer_not?: string + referrer?: string + recipient_not_ends_with_nocase?: string + recipient_not_ends_with?: string + recipient_ends_with_nocase?: string + recipient_ends_with?: string + recipient_not_starts_with_nocase?: string + recipient_not_starts_with?: string + recipient_starts_with_nocase?: string + recipient_starts_with?: string + recipient_not_contains_nocase?: string + recipient_not_contains?: string + recipient_contains_nocase?: string + recipient_contains?: string + recipient_not_in?: string[] + recipient_in?: string[] + recipient_lte?: string + recipient_gte?: string + recipient_lt?: string + recipient_gt?: string + recipient_not?: string + recipient?: string + payout_not_in?: string[] + payout_in?: string[] + payout_lte?: string + payout_gte?: string + payout_lt?: string + payout_gt?: string + payout_not?: string + payout?: string + amount_not_in?: string[] + amount_in?: string[] + amount_lte?: string + amount_gte?: string + amount_lt?: string + amount_gt?: string + amount_not?: string + amount?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + market_?: any + market_not_ends_with_nocase?: string + market_not_ends_with?: string + market_ends_with_nocase?: string + market_ends_with?: string + market_not_starts_with_nocase?: string + market_not_starts_with?: string + market_starts_with_nocase?: string + market_starts_with?: string + market_not_contains_nocase?: string + market_not_contains?: string + market_contains_nocase?: string + market_contains?: string + market_not_in?: string[] + market_in?: string[] + market_lte?: string + market_gte?: string + market_lt?: string + market_gt?: string + market_not?: string + market?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + tunes_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + deltaTime_not_in?: string[] + deltaTime_in?: string[] + deltaTime_lte?: string + deltaTime_gte?: string + deltaTime_lt?: string + deltaTime_gt?: string + deltaTime_not?: string + deltaTime?: string + newControlVariable_not_in?: string[] + newControlVariable_in?: string[] + newControlVariable_lte?: string + newControlVariable_gte?: string + newControlVariable_lt?: string + newControlVariable_gt?: string + newControlVariable_not?: string + newControlVariable?: string + oldControlVariable_not_in?: string[] + oldControlVariable_in?: string[] + oldControlVariable_lte?: string + oldControlVariable_gte?: string + oldControlVariable_lt?: string + oldControlVariable_gt?: string + oldControlVariable_not?: string + oldControlVariable?: string + market_?: any + market_not_ends_with_nocase?: string + market_not_ends_with?: string + market_ends_with_nocase?: string + market_ends_with?: string + market_not_starts_with_nocase?: string + market_not_starts_with?: string + market_starts_with_nocase?: string + market_starts_with?: string + market_not_contains_nocase?: string + market_not_contains?: string + market_contains_nocase?: string + market_contains?: string + market_not_in?: string[] + market_in?: string[] + market_lte?: string + market_gte?: string + market_lt?: string + market_gt?: string + market_not?: string + market?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + averageBondPrice_not_in?: string[] + averageBondPrice_in?: string[] + averageBondPrice_lte?: string + averageBondPrice_gte?: string + averageBondPrice_lt?: string + averageBondPrice_gt?: string + averageBondPrice_not?: string + averageBondPrice?: string + scale_not_in?: string[] + scale_in?: string[] + scale_lte?: string + scale_gte?: string + scale_lt?: string + scale_gt?: string + scale_not?: string + scale?: string + price_not_in?: string[] + price_in?: string[] + price_lte?: string + price_gte?: string + price_lt?: string + price_gt?: string + price_not?: string + price?: string + minPrice_not_in?: string[] + minPrice_in?: string[] + minPrice_lte?: string + minPrice_gte?: string + minPrice_lt?: string + minPrice_gt?: string + minPrice_not?: string + minPrice?: string + capacityInQuote_not_in?: boolean[] + capacityInQuote_in?: boolean[] + capacityInQuote_not?: boolean + capacityInQuote?: boolean + capacity_not_in?: string[] + capacity_in?: string[] + capacity_lte?: string + capacity_gte?: string + capacity_lt?: string + capacity_gt?: string + capacity_not?: string + capacity?: string + callbackAddress_not_ends_with_nocase?: string + callbackAddress_not_ends_with?: string + callbackAddress_ends_with_nocase?: string + callbackAddress_ends_with?: string + callbackAddress_not_starts_with_nocase?: string + callbackAddress_not_starts_with?: string + callbackAddress_starts_with_nocase?: string + callbackAddress_starts_with?: string + callbackAddress_not_contains_nocase?: string + callbackAddress_not_contains?: string + callbackAddress_contains_nocase?: string + callbackAddress_contains?: string + callbackAddress_not_in?: string[] + callbackAddress_in?: string[] + callbackAddress_lte?: string + callbackAddress_gte?: string + callbackAddress_lt?: string + callbackAddress_gt?: string + callbackAddress_not?: string + callbackAddress?: string + creationBlockTimestamp_not_in?: string[] + creationBlockTimestamp_in?: string[] + creationBlockTimestamp_lte?: string + creationBlockTimestamp_gte?: string + creationBlockTimestamp_lt?: string + creationBlockTimestamp_gt?: string + creationBlockTimestamp_not?: string + creationBlockTimestamp?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + totalBondedAmount_not_in?: string[] + totalBondedAmount_in?: string[] + totalBondedAmount_lte?: string + totalBondedAmount_gte?: string + totalBondedAmount_lt?: string + totalBondedAmount_gt?: string + totalBondedAmount_not?: string + totalBondedAmount?: string + hasClosed_not_in?: boolean[] + hasClosed_in?: boolean[] + hasClosed_not?: boolean + hasClosed?: boolean + isInstantSwap_not_in?: boolean[] + isInstantSwap_in?: boolean[] + isInstantSwap_not?: boolean + isInstantSwap?: boolean + vestingType_not_ends_with_nocase?: string + vestingType_not_ends_with?: string + vestingType_ends_with_nocase?: string + vestingType_ends_with?: string + vestingType_not_starts_with_nocase?: string + vestingType_not_starts_with?: string + vestingType_starts_with_nocase?: string + vestingType_starts_with?: string + vestingType_not_contains_nocase?: string + vestingType_not_contains?: string + vestingType_contains_nocase?: string + vestingType_contains?: string + vestingType_not_in?: string[] + vestingType_in?: string[] + vestingType_lte?: string + vestingType_gte?: string + vestingType_lt?: string + vestingType_gt?: string + vestingType_not?: string + vestingType?: string + conclusion_not_in?: string[] + conclusion_in?: string[] + conclusion_lte?: string + conclusion_gte?: string + conclusion_lt?: string + conclusion_gt?: string + conclusion_not?: string + conclusion?: string + start_not_in?: string[] + start_in?: string[] + start_lte?: string + start_gte?: string + start_lt?: string + start_gt?: string + start_not?: string + start?: string + vesting_not_in?: string[] + vesting_in?: string[] + vesting_lte?: string + vesting_gte?: string + vesting_lt?: string + vesting_gt?: string + vesting_not?: string + vesting?: string + quoteToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: any + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: any + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + marketId_not_in?: string[] + marketId_in?: string[] + marketId_lte?: string + marketId_gte?: string + marketId_lt?: string + marketId_gt?: string + marketId_not?: string + marketId?: string + teller_not_ends_with_nocase?: string + teller_not_ends_with?: string + teller_ends_with_nocase?: string + teller_ends_with?: string + teller_not_starts_with_nocase?: string + teller_not_starts_with?: string + teller_starts_with_nocase?: string + teller_starts_with?: string + teller_not_contains_nocase?: string + teller_not_contains?: string + teller_contains_nocase?: string + teller_contains?: string + teller_not_in?: string[] + teller_in?: string[] + teller_lte?: string + teller_gte?: string + teller_lt?: string + teller_gt?: string + teller_not?: string + teller?: string + auctioneer_not_ends_with_nocase?: string + auctioneer_not_ends_with?: string + auctioneer_ends_with_nocase?: string + auctioneer_ends_with?: string + auctioneer_not_starts_with_nocase?: string + auctioneer_not_starts_with?: string + auctioneer_starts_with_nocase?: string + auctioneer_starts_with?: string + auctioneer_not_contains_nocase?: string + auctioneer_not_contains?: string + auctioneer_contains_nocase?: string + auctioneer_contains?: string + auctioneer_not_in?: string[] + auctioneer_in?: string[] + auctioneer_lte?: string + auctioneer_gte?: string + auctioneer_lt?: string + auctioneer_gt?: string + auctioneer_not?: string + auctioneer?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + type_not_ends_with_nocase?: string + type_not_ends_with?: string + type_ends_with_nocase?: string + type_ends_with?: string + type_not_starts_with_nocase?: string + type_not_starts_with?: string + type_starts_with_nocase?: string + type_starts_with?: string + type_not_contains_nocase?: string + type_not_contains?: string + type_contains_nocase?: string + type_contains?: string + type_not_in?: string[] + type_in?: string[] + type_lte?: string + type_gte?: string + type_lt?: string + type_gt?: string + type_not?: string + type?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'name' + | 'id' + | 'type' + | 'price' + | 'chainId' + | 'auctioneer' + | 'teller' + | 'marketId' + | 'owner' + | 'capacity' + | 'capacityInQuote' + | 'minPrice' + | 'scale' + | 'start' + | 'conclusion' + | 'payoutToken' + | 'quoteToken' + | 'vesting' + | 'vestingType' + | 'isInstantSwap' + | 'hasClosed' + | 'totalBondedAmount' + | 'totalPayoutAmount' + | 'averageBondPrice' + | 'bondsIssued' + | 'network' + | 'creationBlockTimestamp' + | 'callbackAddress' + | 'payoutToken__id' + | 'payoutToken__network' + | 'payoutToken__chainId' + | 'payoutToken__address' + | 'payoutToken__decimals' + | 'payoutToken__symbol' + | 'payoutToken__name' + | 'payoutToken__typeName' + | 'payoutToken__usedAsPayout' + | 'payoutToken__usedAsQuote' + | 'payoutToken__totalPayoutAmount' + | 'payoutToken__purchaseCount' + | 'quoteToken__id' + | 'quoteToken__network' + | 'quoteToken__chainId' + | 'quoteToken__address' + | 'quoteToken__decimals' + | 'quoteToken__symbol' + | 'quoteToken__name' + | 'quoteToken__typeName' + | 'quoteToken__usedAsPayout' + | 'quoteToken__usedAsQuote' + | 'quoteToken__totalPayoutAmount' + | 'quoteToken__purchaseCount' + | 'tunes' + | 'bondPurchases' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) {\n positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n balance\n bondToken {\n id\n expiry\n type\n teller\n underlying {\n id: address\n symbol\n decimals\n name\n }\n }\n }\n }\n': TadaDocumentNode< + { + positions: { + bondToken: { + underlying: { + name: string + decimals: string + symbol: string + id: string + } + teller: string + type: string + expiry: string + id: string + } + balance: string + owner: string + id: string + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondToken_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + type_not_ends_with_nocase?: string + type_not_ends_with?: string + type_ends_with_nocase?: string + type_ends_with?: string + type_not_starts_with_nocase?: string + type_not_starts_with?: string + type_starts_with_nocase?: string + type_starts_with?: string + type_not_contains_nocase?: string + type_not_contains?: string + type_contains_nocase?: string + type_contains?: string + type_not_in?: string[] + type_in?: string[] + type_lte?: string + type_gte?: string + type_lt?: string + type_gt?: string + type_not?: string + type?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + teller_not_ends_with_nocase?: string + teller_not_ends_with?: string + teller_ends_with_nocase?: string + teller_ends_with?: string + teller_not_starts_with_nocase?: string + teller_not_starts_with?: string + teller_starts_with_nocase?: string + teller_starts_with?: string + teller_not_contains_nocase?: string + teller_not_contains?: string + teller_contains_nocase?: string + teller_contains?: string + teller_not_in?: string[] + teller_in?: string[] + teller_lte?: string + teller_gte?: string + teller_lt?: string + teller_gt?: string + teller_not?: string + teller?: string + expiry_not_in?: string[] + expiry_in?: string[] + expiry_lte?: string + expiry_gte?: string + expiry_lt?: string + expiry_gt?: string + expiry_not?: string + expiry?: string + underlying_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + markets_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondsIssued_not_in?: string[] + bondsIssued_in?: string[] + bondsIssued_lte?: string + bondsIssued_gte?: string + bondsIssued_lt?: string + bondsIssued_gt?: string + bondsIssued_not?: string + bondsIssued?: string + bondPurchases_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + payoutTokenTbv_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondPurchases_?: any + tbv_not_in?: string[] + tbv_in?: string[] + tbv_lte?: string + tbv_gte?: string + tbv_lt?: string + tbv_gt?: string + tbv_not?: string + tbv?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + quoteToken_?: any + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: any + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbv_not_ends_with_nocase?: string + payoutTokenTbv_not_ends_with?: string + payoutTokenTbv_ends_with_nocase?: string + payoutTokenTbv_ends_with?: string + payoutTokenTbv_not_starts_with_nocase?: string + payoutTokenTbv_not_starts_with?: string + payoutTokenTbv_starts_with_nocase?: string + payoutTokenTbv_starts_with?: string + payoutTokenTbv_not_contains_nocase?: string + payoutTokenTbv_not_contains?: string + payoutTokenTbv_contains_nocase?: string + payoutTokenTbv_contains?: string + payoutTokenTbv_not_in?: string[] + payoutTokenTbv_in?: string[] + payoutTokenTbv_lte?: string + payoutTokenTbv_gte?: string + payoutTokenTbv_lt?: string + payoutTokenTbv_gt?: string + payoutTokenTbv_not?: string + payoutTokenTbv?: string + ownerTokenTbv_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondPurchases_?: any + tbv_not_in?: string[] + tbv_in?: string[] + tbv_lte?: string + tbv_gte?: string + tbv_lt?: string + tbv_gt?: string + tbv_not?: string + tbv?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + ownerTokenTbv_not_ends_with_nocase?: string + ownerTokenTbv_not_ends_with?: string + ownerTokenTbv_ends_with_nocase?: string + ownerTokenTbv_ends_with?: string + ownerTokenTbv_not_starts_with_nocase?: string + ownerTokenTbv_not_starts_with?: string + ownerTokenTbv_starts_with_nocase?: string + ownerTokenTbv_starts_with?: string + ownerTokenTbv_not_contains_nocase?: string + ownerTokenTbv_not_contains?: string + ownerTokenTbv_contains_nocase?: string + ownerTokenTbv_contains?: string + ownerTokenTbv_not_in?: string[] + ownerTokenTbv_in?: string[] + ownerTokenTbv_lte?: string + ownerTokenTbv_gte?: string + ownerTokenTbv_lt?: string + ownerTokenTbv_gt?: string + ownerTokenTbv_not?: string + ownerTokenTbv?: string + postPurchasePrice_not_in?: string[] + postPurchasePrice_in?: string[] + postPurchasePrice_lte?: string + postPurchasePrice_gte?: string + postPurchasePrice_lt?: string + postPurchasePrice_gt?: string + postPurchasePrice_not?: string + postPurchasePrice?: string + purchasePrice_not_in?: string[] + purchasePrice_in?: string[] + purchasePrice_lte?: string + purchasePrice_gte?: string + purchasePrice_lt?: string + purchasePrice_gt?: string + purchasePrice_not?: string + purchasePrice?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + quoteToken_?: any + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: any + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + auctioneer_not_ends_with_nocase?: string + auctioneer_not_ends_with?: string + auctioneer_ends_with_nocase?: string + auctioneer_ends_with?: string + auctioneer_not_starts_with_nocase?: string + auctioneer_not_starts_with?: string + auctioneer_starts_with_nocase?: string + auctioneer_starts_with?: string + auctioneer_not_contains_nocase?: string + auctioneer_not_contains?: string + auctioneer_contains_nocase?: string + auctioneer_contains?: string + auctioneer_not_in?: string[] + auctioneer_in?: string[] + auctioneer_lte?: string + auctioneer_gte?: string + auctioneer_lt?: string + auctioneer_gt?: string + auctioneer_not?: string + auctioneer?: string + teller_not_ends_with_nocase?: string + teller_not_ends_with?: string + teller_ends_with_nocase?: string + teller_ends_with?: string + teller_not_starts_with_nocase?: string + teller_not_starts_with?: string + teller_starts_with_nocase?: string + teller_starts_with?: string + teller_not_contains_nocase?: string + teller_not_contains?: string + teller_contains_nocase?: string + teller_contains?: string + teller_not_in?: string[] + teller_in?: string[] + teller_lte?: string + teller_gte?: string + teller_lt?: string + teller_gt?: string + teller_not?: string + teller?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + referrer_not_ends_with_nocase?: string + referrer_not_ends_with?: string + referrer_ends_with_nocase?: string + referrer_ends_with?: string + referrer_not_starts_with_nocase?: string + referrer_not_starts_with?: string + referrer_starts_with_nocase?: string + referrer_starts_with?: string + referrer_not_contains_nocase?: string + referrer_not_contains?: string + referrer_contains_nocase?: string + referrer_contains?: string + referrer_not_in?: string[] + referrer_in?: string[] + referrer_lte?: string + referrer_gte?: string + referrer_lt?: string + referrer_gt?: string + referrer_not?: string + referrer?: string + recipient_not_ends_with_nocase?: string + recipient_not_ends_with?: string + recipient_ends_with_nocase?: string + recipient_ends_with?: string + recipient_not_starts_with_nocase?: string + recipient_not_starts_with?: string + recipient_starts_with_nocase?: string + recipient_starts_with?: string + recipient_not_contains_nocase?: string + recipient_not_contains?: string + recipient_contains_nocase?: string + recipient_contains?: string + recipient_not_in?: string[] + recipient_in?: string[] + recipient_lte?: string + recipient_gte?: string + recipient_lt?: string + recipient_gt?: string + recipient_not?: string + recipient?: string + payout_not_in?: string[] + payout_in?: string[] + payout_lte?: string + payout_gte?: string + payout_lt?: string + payout_gt?: string + payout_not?: string + payout?: string + amount_not_in?: string[] + amount_in?: string[] + amount_lte?: string + amount_gte?: string + amount_lt?: string + amount_gt?: string + amount_not?: string + amount?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + market_?: any + market_not_ends_with_nocase?: string + market_not_ends_with?: string + market_ends_with_nocase?: string + market_ends_with?: string + market_not_starts_with_nocase?: string + market_not_starts_with?: string + market_starts_with_nocase?: string + market_starts_with?: string + market_not_contains_nocase?: string + market_not_contains?: string + market_contains_nocase?: string + market_contains?: string + market_not_in?: string[] + market_in?: string[] + market_lte?: string + market_gte?: string + market_lt?: string + market_gt?: string + market_not?: string + market?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + tunes_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + deltaTime_not_in?: string[] + deltaTime_in?: string[] + deltaTime_lte?: string + deltaTime_gte?: string + deltaTime_lt?: string + deltaTime_gt?: string + deltaTime_not?: string + deltaTime?: string + newControlVariable_not_in?: string[] + newControlVariable_in?: string[] + newControlVariable_lte?: string + newControlVariable_gte?: string + newControlVariable_lt?: string + newControlVariable_gt?: string + newControlVariable_not?: string + newControlVariable?: string + oldControlVariable_not_in?: string[] + oldControlVariable_in?: string[] + oldControlVariable_lte?: string + oldControlVariable_gte?: string + oldControlVariable_lt?: string + oldControlVariable_gt?: string + oldControlVariable_not?: string + oldControlVariable?: string + market_?: any + market_not_ends_with_nocase?: string + market_not_ends_with?: string + market_ends_with_nocase?: string + market_ends_with?: string + market_not_starts_with_nocase?: string + market_not_starts_with?: string + market_starts_with_nocase?: string + market_starts_with?: string + market_not_contains_nocase?: string + market_not_contains?: string + market_contains_nocase?: string + market_contains?: string + market_not_in?: string[] + market_in?: string[] + market_lte?: string + market_gte?: string + market_lt?: string + market_gt?: string + market_not?: string + market?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + averageBondPrice_not_in?: string[] + averageBondPrice_in?: string[] + averageBondPrice_lte?: string + averageBondPrice_gte?: string + averageBondPrice_lt?: string + averageBondPrice_gt?: string + averageBondPrice_not?: string + averageBondPrice?: string + scale_not_in?: string[] + scale_in?: string[] + scale_lte?: string + scale_gte?: string + scale_lt?: string + scale_gt?: string + scale_not?: string + scale?: string + price_not_in?: string[] + price_in?: string[] + price_lte?: string + price_gte?: string + price_lt?: string + price_gt?: string + price_not?: string + price?: string + minPrice_not_in?: string[] + minPrice_in?: string[] + minPrice_lte?: string + minPrice_gte?: string + minPrice_lt?: string + minPrice_gt?: string + minPrice_not?: string + minPrice?: string + capacityInQuote_not_in?: boolean[] + capacityInQuote_in?: boolean[] + capacityInQuote_not?: boolean + capacityInQuote?: boolean + capacity_not_in?: string[] + capacity_in?: string[] + capacity_lte?: string + capacity_gte?: string + capacity_lt?: string + capacity_gt?: string + capacity_not?: string + capacity?: string + callbackAddress_not_ends_with_nocase?: string + callbackAddress_not_ends_with?: string + callbackAddress_ends_with_nocase?: string + callbackAddress_ends_with?: string + callbackAddress_not_starts_with_nocase?: string + callbackAddress_not_starts_with?: string + callbackAddress_starts_with_nocase?: string + callbackAddress_starts_with?: string + callbackAddress_not_contains_nocase?: string + callbackAddress_not_contains?: string + callbackAddress_contains_nocase?: string + callbackAddress_contains?: string + callbackAddress_not_in?: string[] + callbackAddress_in?: string[] + callbackAddress_lte?: string + callbackAddress_gte?: string + callbackAddress_lt?: string + callbackAddress_gt?: string + callbackAddress_not?: string + callbackAddress?: string + creationBlockTimestamp_not_in?: string[] + creationBlockTimestamp_in?: string[] + creationBlockTimestamp_lte?: string + creationBlockTimestamp_gte?: string + creationBlockTimestamp_lt?: string + creationBlockTimestamp_gt?: string + creationBlockTimestamp_not?: string + creationBlockTimestamp?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + totalBondedAmount_not_in?: string[] + totalBondedAmount_in?: string[] + totalBondedAmount_lte?: string + totalBondedAmount_gte?: string + totalBondedAmount_lt?: string + totalBondedAmount_gt?: string + totalBondedAmount_not?: string + totalBondedAmount?: string + hasClosed_not_in?: boolean[] + hasClosed_in?: boolean[] + hasClosed_not?: boolean + hasClosed?: boolean + isInstantSwap_not_in?: boolean[] + isInstantSwap_in?: boolean[] + isInstantSwap_not?: boolean + isInstantSwap?: boolean + vestingType_not_ends_with_nocase?: string + vestingType_not_ends_with?: string + vestingType_ends_with_nocase?: string + vestingType_ends_with?: string + vestingType_not_starts_with_nocase?: string + vestingType_not_starts_with?: string + vestingType_starts_with_nocase?: string + vestingType_starts_with?: string + vestingType_not_contains_nocase?: string + vestingType_not_contains?: string + vestingType_contains_nocase?: string + vestingType_contains?: string + vestingType_not_in?: string[] + vestingType_in?: string[] + vestingType_lte?: string + vestingType_gte?: string + vestingType_lt?: string + vestingType_gt?: string + vestingType_not?: string + vestingType?: string + conclusion_not_in?: string[] + conclusion_in?: string[] + conclusion_lte?: string + conclusion_gte?: string + conclusion_lt?: string + conclusion_gt?: string + conclusion_not?: string + conclusion?: string + start_not_in?: string[] + start_in?: string[] + start_lte?: string + start_gte?: string + start_lt?: string + start_gt?: string + start_not?: string + start?: string + vesting_not_in?: string[] + vesting_in?: string[] + vesting_lte?: string + vesting_gte?: string + vesting_lt?: string + vesting_gt?: string + vesting_not?: string + vesting?: string + quoteToken_?: any + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: any + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + marketId_not_in?: string[] + marketId_in?: string[] + marketId_lte?: string + marketId_gte?: string + marketId_lt?: string + marketId_gt?: string + marketId_not?: string + marketId?: string + teller_not_ends_with_nocase?: string + teller_not_ends_with?: string + teller_ends_with_nocase?: string + teller_ends_with?: string + teller_not_starts_with_nocase?: string + teller_not_starts_with?: string + teller_starts_with_nocase?: string + teller_starts_with?: string + teller_not_contains_nocase?: string + teller_not_contains?: string + teller_contains_nocase?: string + teller_contains?: string + teller_not_in?: string[] + teller_in?: string[] + teller_lte?: string + teller_gte?: string + teller_lt?: string + teller_gt?: string + teller_not?: string + teller?: string + auctioneer_not_ends_with_nocase?: string + auctioneer_not_ends_with?: string + auctioneer_ends_with_nocase?: string + auctioneer_ends_with?: string + auctioneer_not_starts_with_nocase?: string + auctioneer_not_starts_with?: string + auctioneer_starts_with_nocase?: string + auctioneer_starts_with?: string + auctioneer_not_contains_nocase?: string + auctioneer_not_contains?: string + auctioneer_contains_nocase?: string + auctioneer_contains?: string + auctioneer_not_in?: string[] + auctioneer_in?: string[] + auctioneer_lte?: string + auctioneer_gte?: string + auctioneer_lt?: string + auctioneer_gt?: string + auctioneer_not?: string + auctioneer?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + type_not_ends_with_nocase?: string + type_not_ends_with?: string + type_ends_with_nocase?: string + type_ends_with?: string + type_not_starts_with_nocase?: string + type_not_starts_with?: string + type_starts_with_nocase?: string + type_starts_with?: string + type_not_contains_nocase?: string + type_not_contains?: string + type_contains_nocase?: string + type_contains?: string + type_not_in?: string[] + type_in?: string[] + type_lte?: string + type_gte?: string + type_lt?: string + type_gt?: string + type_not?: string + type?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + uniqueBonders_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + count_not_in?: string[] + count_in?: string[] + count_lte?: string + count_gte?: string + count_lt?: string + count_gt?: string + count_not?: string + count?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + payoutTokenTbvs_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + bondPurchases_?: any + tbv_not_in?: string[] + tbv_in?: string[] + tbv_lte?: string + tbv_gte?: string + tbv_lt?: string + tbv_gt?: string + tbv_not?: string + tbv?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + quoteToken_?: any + quoteToken_not_ends_with_nocase?: string + quoteToken_not_ends_with?: string + quoteToken_ends_with_nocase?: string + quoteToken_ends_with?: string + quoteToken_not_starts_with_nocase?: string + quoteToken_not_starts_with?: string + quoteToken_starts_with_nocase?: string + quoteToken_starts_with?: string + quoteToken_not_contains_nocase?: string + quoteToken_not_contains?: string + quoteToken_contains_nocase?: string + quoteToken_contains?: string + quoteToken_not_in?: string[] + quoteToken_in?: string[] + quoteToken_lte?: string + quoteToken_gte?: string + quoteToken_lt?: string + quoteToken_gt?: string + quoteToken_not?: string + quoteToken?: string + payoutToken_?: any + payoutToken_not_ends_with_nocase?: string + payoutToken_not_ends_with?: string + payoutToken_ends_with_nocase?: string + payoutToken_ends_with?: string + payoutToken_not_starts_with_nocase?: string + payoutToken_not_starts_with?: string + payoutToken_starts_with_nocase?: string + payoutToken_starts_with?: string + payoutToken_not_contains_nocase?: string + payoutToken_not_contains?: string + payoutToken_contains_nocase?: string + payoutToken_contains?: string + payoutToken_not_in?: string[] + payoutToken_in?: string[] + payoutToken_lte?: string + payoutToken_gte?: string + payoutToken_lt?: string + payoutToken_gt?: string + payoutToken_not?: string + payoutToken?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + purchaseCount_not_in?: string[] + purchaseCount_in?: string[] + purchaseCount_lte?: string + purchaseCount_gte?: string + purchaseCount_lt?: string + purchaseCount_gt?: string + purchaseCount_not?: string + purchaseCount?: string + totalPayoutAmount_not_in?: string[] + totalPayoutAmount_in?: string[] + totalPayoutAmount_lte?: string + totalPayoutAmount_gte?: string + totalPayoutAmount_lt?: string + totalPayoutAmount_gt?: string + totalPayoutAmount_not?: string + totalPayoutAmount?: string + usedAsQuote_not_in?: boolean[] + usedAsQuote_in?: boolean[] + usedAsQuote_not?: boolean + usedAsQuote?: boolean + usedAsPayout_not_in?: boolean[] + usedAsPayout_in?: boolean[] + usedAsPayout_not?: boolean + usedAsPayout?: boolean + balancerWeightedPool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + constituentTokens_?: any + constituentTokens_not_contains_nocase?: string[] + constituentTokens_not_contains?: string[] + constituentTokens_contains_nocase?: string[] + constituentTokens_contains?: string[] + constituentTokens_not?: string[] + constituentTokens?: string[] + poolId_not_ends_with_nocase?: string + poolId_not_ends_with?: string + poolId_ends_with_nocase?: string + poolId_ends_with?: string + poolId_not_starts_with_nocase?: string + poolId_not_starts_with?: string + poolId_starts_with_nocase?: string + poolId_starts_with?: string + poolId_not_contains_nocase?: string + poolId_not_contains?: string + poolId_contains_nocase?: string + poolId_contains?: string + poolId_not_in?: string[] + poolId_in?: string[] + poolId_lte?: string + poolId_gte?: string + poolId_lt?: string + poolId_gt?: string + poolId_not?: string + poolId?: string + vaultAddress_not_ends_with_nocase?: string + vaultAddress_not_ends_with?: string + vaultAddress_ends_with_nocase?: string + vaultAddress_ends_with?: string + vaultAddress_not_starts_with_nocase?: string + vaultAddress_not_starts_with?: string + vaultAddress_starts_with_nocase?: string + vaultAddress_starts_with?: string + vaultAddress_not_contains_nocase?: string + vaultAddress_not_contains?: string + vaultAddress_contains_nocase?: string + vaultAddress_contains?: string + vaultAddress_not_in?: string[] + vaultAddress_in?: string[] + vaultAddress_lte?: string + vaultAddress_gte?: string + vaultAddress_lt?: string + vaultAddress_gt?: string + vaultAddress_not?: string + vaultAddress?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + balancerWeightedPool_not_ends_with_nocase?: string + balancerWeightedPool_not_ends_with?: string + balancerWeightedPool_ends_with_nocase?: string + balancerWeightedPool_ends_with?: string + balancerWeightedPool_not_starts_with_nocase?: string + balancerWeightedPool_not_starts_with?: string + balancerWeightedPool_starts_with_nocase?: string + balancerWeightedPool_starts_with?: string + balancerWeightedPool_not_contains_nocase?: string + balancerWeightedPool_not_contains?: string + balancerWeightedPool_contains_nocase?: string + balancerWeightedPool_contains?: string + balancerWeightedPool_not_in?: string[] + balancerWeightedPool_in?: string[] + balancerWeightedPool_lte?: string + balancerWeightedPool_gte?: string + balancerWeightedPool_lt?: string + balancerWeightedPool_gt?: string + balancerWeightedPool_not?: string + balancerWeightedPool?: string + lpPair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + lpPair_not_ends_with_nocase?: string + lpPair_not_ends_with?: string + lpPair_ends_with_nocase?: string + lpPair_ends_with?: string + lpPair_not_starts_with_nocase?: string + lpPair_not_starts_with?: string + lpPair_starts_with_nocase?: string + lpPair_starts_with?: string + lpPair_not_contains_nocase?: string + lpPair_not_contains?: string + lpPair_contains_nocase?: string + lpPair_contains?: string + lpPair_not_in?: string[] + lpPair_in?: string[] + lpPair_lte?: string + lpPair_gte?: string + lpPair_lt?: string + lpPair_gt?: string + lpPair_not?: string + lpPair?: string + typeName_not_ends_with_nocase?: string + typeName_not_ends_with?: string + typeName_ends_with_nocase?: string + typeName_ends_with?: string + typeName_not_starts_with_nocase?: string + typeName_not_starts_with?: string + typeName_starts_with_nocase?: string + typeName_starts_with?: string + typeName_not_contains_nocase?: string + typeName_not_contains?: string + typeName_contains_nocase?: string + typeName_contains?: string + typeName_not_in?: string[] + typeName_in?: string[] + typeName_lte?: string + typeName_gte?: string + typeName_lt?: string + typeName_gt?: string + typeName_not?: string + typeName?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + address_not_ends_with_nocase?: string + address_not_ends_with?: string + address_ends_with_nocase?: string + address_ends_with?: string + address_not_starts_with_nocase?: string + address_not_starts_with?: string + address_starts_with_nocase?: string + address_starts_with?: string + address_not_contains_nocase?: string + address_not_contains?: string + address_contains_nocase?: string + address_contains?: string + address_not_in?: string[] + address_in?: string[] + address_lte?: string + address_gte?: string + address_lt?: string + address_gt?: string + address_not?: string + address?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + underlying_not_ends_with_nocase?: string + underlying_not_ends_with?: string + underlying_ends_with_nocase?: string + underlying_ends_with?: string + underlying_not_starts_with_nocase?: string + underlying_not_starts_with?: string + underlying_starts_with_nocase?: string + underlying_starts_with?: string + underlying_not_contains_nocase?: string + underlying_not_contains?: string + underlying_contains_nocase?: string + underlying_contains?: string + underlying_not_in?: string[] + underlying_in?: string[] + underlying_lte?: string + underlying_gte?: string + underlying_lt?: string + underlying_gt?: string + underlying_not?: string + underlying?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + bondToken_not_ends_with_nocase?: string + bondToken_not_ends_with?: string + bondToken_ends_with_nocase?: string + bondToken_ends_with?: string + bondToken_not_starts_with_nocase?: string + bondToken_not_starts_with?: string + bondToken_starts_with_nocase?: string + bondToken_starts_with?: string + bondToken_not_contains_nocase?: string + bondToken_not_contains?: string + bondToken_contains_nocase?: string + bondToken_contains?: string + bondToken_not_in?: string[] + bondToken_in?: string[] + bondToken_lte?: string + bondToken_gte?: string + bondToken_lt?: string + bondToken_gt?: string + bondToken_not?: string + bondToken?: string + chainId_not_in?: string[] + chainId_in?: string[] + chainId_lte?: string + chainId_gte?: string + chainId_lt?: string + chainId_gt?: string + chainId_not?: string + chainId?: string + network_not_ends_with_nocase?: string + network_not_ends_with?: string + network_ends_with_nocase?: string + network_ends_with?: string + network_not_starts_with_nocase?: string + network_not_starts_with?: string + network_starts_with_nocase?: string + network_starts_with?: string + network_not_contains_nocase?: string + network_not_contains?: string + network_contains_nocase?: string + network_contains?: string + network_not_in?: string[] + network_in?: string[] + network_lte?: string + network_gte?: string + network_lt?: string + network_gt?: string + network_not?: string + network?: string + balance_not_in?: string[] + balance_in?: string[] + balance_lte?: string + balance_gte?: string + balance_lt?: string + balance_gt?: string + balance_not?: string + balance?: string + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + tokenId_not_in?: string[] + tokenId_in?: string[] + tokenId_lte?: string + tokenId_gte?: string + tokenId_lt?: string + tokenId_gt?: string + tokenId_not?: string + tokenId?: string + id_not_ends_with_nocase?: string + id_not_ends_with?: string + id_ends_with_nocase?: string + id_ends_with?: string + id_not_starts_with_nocase?: string + id_not_starts_with?: string + id_starts_with_nocase?: string + id_starts_with?: string + id_not_contains_nocase?: string + id_not_contains?: string + id_contains_nocase?: string + id_contains?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'chainId' + | 'owner' + | 'network' + | 'balance' + | 'bondToken' + | 'tokenId' + | 'bondToken__id' + | 'bondToken__decimals' + | 'bondToken__symbol' + | 'bondToken__expiry' + | 'bondToken__teller' + | 'bondToken__network' + | 'bondToken__chainId' + | 'bondToken__type' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts index 8b53ce3781..31d9d91230 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts @@ -10,84 +10,13477 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'bonds'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'bonds' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BalancerWeightedPool': { kind: 'OBJECT'; name: 'BalancerWeightedPool'; fields: { 'constituentTokens': { name: 'constituentTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolId': { name: 'poolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vaultAddress': { name: 'vaultAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'BalancerWeightedPool_filter': { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'constituentTokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BalancerWeightedPool_orderBy': { name: 'BalancerWeightedPool_orderBy'; enumValues: 'id' | 'vaultAddress' | 'poolId' | 'constituentTokens'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'BondPurchase': { kind: 'OBJECT'; name: 'BondPurchase'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'payout': { name: 'payout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'postPurchasePrice': { name: 'postPurchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'purchasePrice': { name: 'purchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'referrer': { name: 'referrer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'BondPurchase_filter': { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BondPurchase_orderBy': { name: 'BondPurchase_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'owner' | 'amount' | 'payout' | 'recipient' | 'referrer' | 'timestamp' | 'teller' | 'auctioneer' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'purchasePrice' | 'postPurchasePrice' | 'ownerTokenTbv' | 'ownerTokenTbv__id' | 'ownerTokenTbv__owner' | 'ownerTokenTbv__token' | 'ownerTokenTbv__network' | 'ownerTokenTbv__chainId' | 'ownerTokenTbv__tbv' | 'payoutTokenTbv' | 'payoutTokenTbv__id' | 'payoutTokenTbv__network' | 'payoutTokenTbv__chainId' | 'payoutTokenTbv__tbv'; }; - 'BondToken': { kind: 'OBJECT'; name: 'BondToken'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'expiry': { name: 'expiry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'underlying': { name: 'underlying'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'BondToken_filter': { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'expiry'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'expiry_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BondToken_orderBy': { name: 'BondToken_orderBy'; enumValues: 'id' | 'decimals' | 'symbol' | 'underlying' | 'underlying__id' | 'underlying__network' | 'underlying__chainId' | 'underlying__address' | 'underlying__decimals' | 'underlying__symbol' | 'underlying__name' | 'underlying__typeName' | 'underlying__usedAsPayout' | 'underlying__usedAsQuote' | 'underlying__totalPayoutAmount' | 'underlying__purchaseCount' | 'expiry' | 'teller' | 'network' | 'chainId' | 'type'; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'Market': { kind: 'OBJECT'; name: 'Market'; fields: { 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'averageBondPrice': { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'bondsIssued': { name: 'bondsIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'callbackAddress': { name: 'callbackAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'capacity': { name: 'capacity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'capacityInQuote': { name: 'capacityInQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'conclusion': { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'creationBlockTimestamp': { name: 'creationBlockTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hasClosed': { name: 'hasClosed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isInstantSwap': { name: 'isInstantSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'marketId': { name: 'marketId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'minPrice': { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'price': { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'scale': { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'start': { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalBondedAmount': { name: 'totalBondedAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tunes': { name: 'tunes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vesting': { name: 'vesting'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'vestingType': { name: 'vestingType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'MarketOwnerCount': { kind: 'OBJECT'; name: 'MarketOwnerCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'MarketOwnerCount_filter': { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MarketOwnerCount_orderBy': { name: 'MarketOwnerCount_orderBy'; enumValues: 'id' | 'count'; }; - 'Market_filter': { kind: 'INPUT_OBJECT'; name: 'Market_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'marketId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'marketId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'vesting'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vesting_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isInstantSwap_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'capacity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunes_'; type: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondsIssued_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Market_orderBy': { name: 'Market_orderBy'; enumValues: 'id' | 'name' | 'type' | 'network' | 'chainId' | 'auctioneer' | 'teller' | 'marketId' | 'owner' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'vesting' | 'start' | 'conclusion' | 'vestingType' | 'isInstantSwap' | 'hasClosed' | 'totalBondedAmount' | 'totalPayoutAmount' | 'creationBlockTimestamp' | 'callbackAddress' | 'capacity' | 'capacityInQuote' | 'minPrice' | 'price' | 'scale' | 'averageBondPrice' | 'tunes' | 'bondPurchases' | 'bondsIssued'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'OwnerBalance': { kind: 'OBJECT'; name: 'OwnerBalance'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenId': { name: 'tokenId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'OwnerBalance_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_'; type: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'OwnerBalance_orderBy': { name: 'OwnerBalance_orderBy'; enumValues: 'id' | 'tokenId' | 'owner' | 'balance' | 'network' | 'chainId' | 'bondToken' | 'bondToken__id' | 'bondToken__decimals' | 'bondToken__symbol' | 'bondToken__expiry' | 'bondToken__teller' | 'bondToken__network' | 'bondToken__chainId' | 'bondToken__type'; }; - 'OwnerTokenTbv': { kind: 'OBJECT'; name: 'OwnerTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'OwnerTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'OwnerTokenTbv_orderBy': { name: 'OwnerTokenTbv_orderBy'; enumValues: 'id' | 'owner' | 'token' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; - 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__network' | 'token0__chainId' | 'token0__address' | 'token0__decimals' | 'token0__symbol' | 'token0__name' | 'token0__typeName' | 'token0__usedAsPayout' | 'token0__usedAsQuote' | 'token0__totalPayoutAmount' | 'token0__purchaseCount' | 'token1' | 'token1__id' | 'token1__network' | 'token1__chainId' | 'token1__address' | 'token1__decimals' | 'token1__symbol' | 'token1__name' | 'token1__typeName' | 'token1__usedAsPayout' | 'token1__usedAsQuote' | 'token1__totalPayoutAmount' | 'token1__purchaseCount'; }; - 'PayoutToken': { kind: 'OBJECT'; name: 'PayoutToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'PayoutTokenTbv': { kind: 'OBJECT'; name: 'PayoutTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PayoutTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PayoutTokenTbv_orderBy': { name: 'PayoutTokenTbv_orderBy'; enumValues: 'id' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; - 'PayoutToken_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PayoutToken_orderBy': { name: 'PayoutToken_orderBy'; enumValues: 'id'; }; - 'PurchaseCount': { kind: 'OBJECT'; name: 'PurchaseCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'PurchaseCount_filter': { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PurchaseCount_orderBy': { name: 'PurchaseCount_orderBy'; enumValues: 'id' | 'count'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; - 'QuoteToken': { kind: 'OBJECT'; name: 'QuoteToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'QuoteToken_filter': { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'QuoteToken_orderBy': { name: 'QuoteToken_orderBy'; enumValues: 'id'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'lpPair': { name: 'lpPair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'markets': { name: 'markets'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'typeName': { name: 'typeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'usedAsPayout': { name: 'usedAsPayout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'usedAsQuote': { name: 'usedAsQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_'; type: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsPayout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbvs_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'uniqueBonders_'; type: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; defaultValue: null }, { name: 'markets_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'network' | 'chainId' | 'address' | 'decimals' | 'symbol' | 'name' | 'typeName' | 'lpPair' | 'lpPair__id' | 'balancerWeightedPool' | 'balancerWeightedPool__id' | 'balancerWeightedPool__vaultAddress' | 'balancerWeightedPool__poolId' | 'usedAsPayout' | 'usedAsQuote' | 'totalPayoutAmount' | 'purchaseCount' | 'payoutTokenTbvs' | 'uniqueBonders' | 'uniqueBonders__id' | 'uniqueBonders__count' | 'markets'; }; - 'Tune': { kind: 'OBJECT'; name: 'Tune'; fields: { 'deltaTime': { name: 'deltaTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'newControlVariable': { name: 'newControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'oldControlVariable': { name: 'oldControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Tune_filter': { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'oldControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Tune_orderBy': { name: 'Tune_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'oldControlVariable' | 'newControlVariable' | 'deltaTime' | 'timestamp'; }; - 'UniqueBonder': { kind: 'OBJECT'; name: 'UniqueBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueBonderCount': { kind: 'OBJECT'; name: 'UniqueBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueBonderCount_orderBy': { name: 'UniqueBonderCount_orderBy'; enumValues: 'id' | 'count'; }; - 'UniqueBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueBonder_orderBy': { name: 'UniqueBonder_orderBy'; enumValues: 'id'; }; - 'UniqueTokenBonder': { kind: 'OBJECT'; name: 'UniqueTokenBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueTokenBonderCount': { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'UniqueTokenBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueTokenBonderCount_orderBy': { name: 'UniqueTokenBonderCount_orderBy'; enumValues: 'id' | 'token' | 'token__id' | 'token__network' | 'token__chainId' | 'token__address' | 'token__decimals' | 'token__symbol' | 'token__name' | 'token__typeName' | 'token__usedAsPayout' | 'token__usedAsQuote' | 'token__totalPayoutAmount' | 'token__purchaseCount' | 'count'; }; - 'UniqueTokenBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueTokenBonder_orderBy': { name: 'UniqueTokenBonder_orderBy'; enumValues: 'id'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BalancerWeightedPool: { + kind: 'OBJECT' + name: 'BalancerWeightedPool' + fields: { + constituentTokens: { + name: 'constituentTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + poolId: { + name: 'poolId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + vaultAddress: { + name: 'vaultAddress' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + BalancerWeightedPool_filter: { + kind: 'INPUT_OBJECT' + name: 'BalancerWeightedPool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vaultAddress_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vaultAddress_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vaultAddress_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolId_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolId_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'constituentTokens' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_not' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_not_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_not_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'constituentTokens_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BalancerWeightedPool_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BalancerWeightedPool_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + BalancerWeightedPool_orderBy: { + name: 'BalancerWeightedPool_orderBy' + enumValues: 'id' | 'vaultAddress' | 'poolId' | 'constituentTokens' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + BondPurchase: { + kind: 'OBJECT' + name: 'BondPurchase' + fields: { + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + auctioneer: { + name: 'auctioneer' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + market: { + name: 'market' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + ownerTokenTbv: { + name: 'ownerTokenTbv' + type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null } + } + payout: { + name: 'payout' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + payoutToken: { + name: 'payoutToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + payoutTokenTbv: { + name: 'payoutTokenTbv' + type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + postPurchasePrice: { + name: 'postPurchasePrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + purchasePrice: { + name: 'purchasePrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + quoteToken: { + name: 'quoteToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + recipient: { + name: 'recipient' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + referrer: { + name: 'referrer' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + teller: { + name: 'teller' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + BondPurchase_filter: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'market_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'market_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_' + type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payout' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'payout_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payout_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'referrer_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'referrer_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'referrer_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'auctioneer_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'auctioneer_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'purchasePrice' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'purchasePrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'purchasePrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'postPurchasePrice' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'postPurchasePrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'postPurchasePrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ownerTokenTbv' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ownerTokenTbv_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'ownerTokenTbv_' + type: { + kind: 'INPUT_OBJECT' + name: 'OwnerTokenTbv_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'payoutTokenTbv' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutTokenTbv_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutTokenTbv_' + type: { + kind: 'INPUT_OBJECT' + name: 'PayoutTokenTbv_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + BondPurchase_orderBy: { + name: 'BondPurchase_orderBy' + enumValues: + | 'id' + | 'market' + | 'market__id' + | 'market__name' + | 'market__type' + | 'market__network' + | 'market__chainId' + | 'market__auctioneer' + | 'market__teller' + | 'market__marketId' + | 'market__owner' + | 'market__vesting' + | 'market__start' + | 'market__conclusion' + | 'market__vestingType' + | 'market__isInstantSwap' + | 'market__hasClosed' + | 'market__totalBondedAmount' + | 'market__totalPayoutAmount' + | 'market__creationBlockTimestamp' + | 'market__callbackAddress' + | 'market__capacity' + | 'market__capacityInQuote' + | 'market__minPrice' + | 'market__price' + | 'market__scale' + | 'market__averageBondPrice' + | 'market__bondsIssued' + | 'owner' + | 'amount' + | 'payout' + | 'recipient' + | 'referrer' + | 'timestamp' + | 'teller' + | 'auctioneer' + | 'payoutToken' + | 'payoutToken__id' + | 'payoutToken__network' + | 'payoutToken__chainId' + | 'payoutToken__address' + | 'payoutToken__decimals' + | 'payoutToken__symbol' + | 'payoutToken__name' + | 'payoutToken__typeName' + | 'payoutToken__usedAsPayout' + | 'payoutToken__usedAsQuote' + | 'payoutToken__totalPayoutAmount' + | 'payoutToken__purchaseCount' + | 'quoteToken' + | 'quoteToken__id' + | 'quoteToken__network' + | 'quoteToken__chainId' + | 'quoteToken__address' + | 'quoteToken__decimals' + | 'quoteToken__symbol' + | 'quoteToken__name' + | 'quoteToken__typeName' + | 'quoteToken__usedAsPayout' + | 'quoteToken__usedAsQuote' + | 'quoteToken__totalPayoutAmount' + | 'quoteToken__purchaseCount' + | 'network' + | 'chainId' + | 'purchasePrice' + | 'postPurchasePrice' + | 'ownerTokenTbv' + | 'ownerTokenTbv__id' + | 'ownerTokenTbv__owner' + | 'ownerTokenTbv__token' + | 'ownerTokenTbv__network' + | 'ownerTokenTbv__chainId' + | 'ownerTokenTbv__tbv' + | 'payoutTokenTbv' + | 'payoutTokenTbv__id' + | 'payoutTokenTbv__network' + | 'payoutTokenTbv__chainId' + | 'payoutTokenTbv__tbv' + } + BondToken: { + kind: 'OBJECT' + name: 'BondToken' + fields: { + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + decimals: { + name: 'decimals' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + expiry: { + name: 'expiry' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + symbol: { + name: 'symbol' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + teller: { + name: 'teller' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + type: { + name: 'type' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + underlying: { + name: 'underlying' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + BondToken_filter: { + kind: 'INPUT_OBJECT' + name: 'BondToken_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'decimals' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'decimals_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'underlying_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'underlying_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'underlying_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'expiry' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'expiry_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'expiry_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BondToken_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'BondToken_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + BondToken_orderBy: { + name: 'BondToken_orderBy' + enumValues: + | 'id' + | 'decimals' + | 'symbol' + | 'underlying' + | 'underlying__id' + | 'underlying__network' + | 'underlying__chainId' + | 'underlying__address' + | 'underlying__decimals' + | 'underlying__symbol' + | 'underlying__name' + | 'underlying__typeName' + | 'underlying__usedAsPayout' + | 'underlying__usedAsQuote' + | 'underlying__totalPayoutAmount' + | 'underlying__purchaseCount' + | 'expiry' + | 'teller' + | 'network' + | 'chainId' + | 'type' + } + Boolean: unknown + Bytes: unknown + ID: unknown + Int: unknown + Int8: unknown + Market: { + kind: 'OBJECT' + name: 'Market' + fields: { + auctioneer: { + name: 'auctioneer' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + averageBondPrice: { + name: 'averageBondPrice' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + bondPurchases: { + name: 'bondPurchases' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + } + } + bondsIssued: { + name: 'bondsIssued' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + callbackAddress: { + name: 'callbackAddress' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + capacity: { + name: 'capacity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + capacityInQuote: { + name: 'capacityInQuote' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + conclusion: { + name: 'conclusion' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + creationBlockTimestamp: { + name: 'creationBlockTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + hasClosed: { + name: 'hasClosed' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + isInstantSwap: { + name: 'isInstantSwap' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + marketId: { + name: 'marketId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + minPrice: { + name: 'minPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + name: { + name: 'name' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + payoutToken: { + name: 'payoutToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + price: { + name: 'price' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + quoteToken: { + name: 'quoteToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + scale: { + name: 'scale' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + start: { + name: 'start' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + teller: { + name: 'teller' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + totalBondedAmount: { + name: 'totalBondedAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalPayoutAmount: { + name: 'totalPayoutAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + tunes: { + name: 'tunes' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null } + } + } + } + type: { + name: 'type' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + vesting: { + name: 'vesting' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + vestingType: { + name: 'vestingType' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + MarketOwnerCount: { + kind: 'OBJECT' + name: 'MarketOwnerCount' + fields: { + count: { + name: 'count' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + MarketOwnerCount_filter: { + kind: 'INPUT_OBJECT' + name: 'MarketOwnerCount_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'count' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'count_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MarketOwnerCount_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MarketOwnerCount_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + MarketOwnerCount_orderBy: { + name: 'MarketOwnerCount_orderBy' + enumValues: 'id' | 'count' + } + Market_filter: { + kind: 'INPUT_OBJECT' + name: 'Market_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'type_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'auctioneer' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'auctioneer_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'auctioneer_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'auctioneer_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'teller_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'teller_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'marketId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'marketId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'marketId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'vesting' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'vesting_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vesting_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'start' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'start_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'start_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'conclusion' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'conclusion_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'conclusion_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vestingType' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vestingType_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'vestingType_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'vestingType_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'isInstantSwap' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'isInstantSwap_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'isInstantSwap_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'isInstantSwap_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hasClosed' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'hasClosed_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'hasClosed_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hasClosed_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalBondedAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalBondedAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalBondedAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalPayoutAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalPayoutAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'creationBlockTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'creationBlockTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'callbackAddress' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'callbackAddress_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'callbackAddress_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'callbackAddress_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'capacity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'capacity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'capacity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'capacityInQuote' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'capacityInQuote_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'capacityInQuote_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'capacityInQuote_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'minPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'minPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'minPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'scale' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'scale_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'scale_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'averageBondPrice' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'averageBondPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'averageBondPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tunes_' + type: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null } + defaultValue: null + }, + { + name: 'bondPurchases_' + type: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'bondsIssued' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bondsIssued_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondsIssued_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Market_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Market_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Market_orderBy: { + name: 'Market_orderBy' + enumValues: + | 'id' + | 'name' + | 'type' + | 'network' + | 'chainId' + | 'auctioneer' + | 'teller' + | 'marketId' + | 'owner' + | 'payoutToken' + | 'payoutToken__id' + | 'payoutToken__network' + | 'payoutToken__chainId' + | 'payoutToken__address' + | 'payoutToken__decimals' + | 'payoutToken__symbol' + | 'payoutToken__name' + | 'payoutToken__typeName' + | 'payoutToken__usedAsPayout' + | 'payoutToken__usedAsQuote' + | 'payoutToken__totalPayoutAmount' + | 'payoutToken__purchaseCount' + | 'quoteToken' + | 'quoteToken__id' + | 'quoteToken__network' + | 'quoteToken__chainId' + | 'quoteToken__address' + | 'quoteToken__decimals' + | 'quoteToken__symbol' + | 'quoteToken__name' + | 'quoteToken__typeName' + | 'quoteToken__usedAsPayout' + | 'quoteToken__usedAsQuote' + | 'quoteToken__totalPayoutAmount' + | 'quoteToken__purchaseCount' + | 'vesting' + | 'start' + | 'conclusion' + | 'vestingType' + | 'isInstantSwap' + | 'hasClosed' + | 'totalBondedAmount' + | 'totalPayoutAmount' + | 'creationBlockTimestamp' + | 'callbackAddress' + | 'capacity' + | 'capacityInQuote' + | 'minPrice' + | 'price' + | 'scale' + | 'averageBondPrice' + | 'tunes' + | 'bondPurchases' + | 'bondsIssued' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + OwnerBalance: { + kind: 'OBJECT' + name: 'OwnerBalance' + fields: { + balance: { + name: 'balance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + bondToken: { + name: 'bondToken' + type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + tokenId: { + name: 'tokenId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + OwnerBalance_filter: { + kind: 'INPUT_OBJECT' + name: 'OwnerBalance_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tokenId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balance' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'bondToken_' + type: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'OwnerBalance_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'OwnerBalance_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + OwnerBalance_orderBy: { + name: 'OwnerBalance_orderBy' + enumValues: + | 'id' + | 'tokenId' + | 'owner' + | 'balance' + | 'network' + | 'chainId' + | 'bondToken' + | 'bondToken__id' + | 'bondToken__decimals' + | 'bondToken__symbol' + | 'bondToken__expiry' + | 'bondToken__teller' + | 'bondToken__network' + | 'bondToken__chainId' + | 'bondToken__type' + } + OwnerTokenTbv: { + kind: 'OBJECT' + name: 'OwnerTokenTbv' + fields: { + bondPurchases: { + name: 'bondPurchases' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + tbv: { + name: 'tbv' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token: { + name: 'token' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + OwnerTokenTbv_filter: { + kind: 'INPUT_OBJECT' + name: 'OwnerTokenTbv_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tbv' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tbv_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondPurchases_' + type: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'OwnerTokenTbv_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'OwnerTokenTbv_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + OwnerTokenTbv_orderBy: { + name: 'OwnerTokenTbv_orderBy' + enumValues: + | 'id' + | 'owner' + | 'token' + | 'network' + | 'chainId' + | 'tbv' + | 'bondPurchases' + } + Pair: { + kind: 'OBJECT' + name: 'Pair' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + Pair_filter: { + kind: 'INPUT_OBJECT' + name: 'Pair_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pair_orderBy: { + name: 'Pair_orderBy' + enumValues: + | 'id' + | 'token0' + | 'token0__id' + | 'token0__network' + | 'token0__chainId' + | 'token0__address' + | 'token0__decimals' + | 'token0__symbol' + | 'token0__name' + | 'token0__typeName' + | 'token0__usedAsPayout' + | 'token0__usedAsQuote' + | 'token0__totalPayoutAmount' + | 'token0__purchaseCount' + | 'token1' + | 'token1__id' + | 'token1__network' + | 'token1__chainId' + | 'token1__address' + | 'token1__decimals' + | 'token1__symbol' + | 'token1__name' + | 'token1__typeName' + | 'token1__usedAsPayout' + | 'token1__usedAsQuote' + | 'token1__totalPayoutAmount' + | 'token1__purchaseCount' + } + PayoutToken: { + kind: 'OBJECT' + name: 'PayoutToken' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + PayoutTokenTbv: { + kind: 'OBJECT' + name: 'PayoutTokenTbv' + fields: { + bondPurchases: { + name: 'bondPurchases' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + payoutToken: { + name: 'payoutToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + quoteToken: { + name: 'quoteToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + tbv: { + name: 'tbv' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PayoutTokenTbv_filter: { + kind: 'INPUT_OBJECT' + name: 'PayoutTokenTbv_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'payoutToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'quoteToken_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'quoteToken_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tbv' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tbv_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tbv_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bondPurchases_' + type: { + kind: 'INPUT_OBJECT' + name: 'BondPurchase_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PayoutTokenTbv_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PayoutTokenTbv_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PayoutTokenTbv_orderBy: { + name: 'PayoutTokenTbv_orderBy' + enumValues: + | 'id' + | 'payoutToken' + | 'payoutToken__id' + | 'payoutToken__network' + | 'payoutToken__chainId' + | 'payoutToken__address' + | 'payoutToken__decimals' + | 'payoutToken__symbol' + | 'payoutToken__name' + | 'payoutToken__typeName' + | 'payoutToken__usedAsPayout' + | 'payoutToken__usedAsQuote' + | 'payoutToken__totalPayoutAmount' + | 'payoutToken__purchaseCount' + | 'quoteToken' + | 'quoteToken__id' + | 'quoteToken__network' + | 'quoteToken__chainId' + | 'quoteToken__address' + | 'quoteToken__decimals' + | 'quoteToken__symbol' + | 'quoteToken__name' + | 'quoteToken__typeName' + | 'quoteToken__usedAsPayout' + | 'quoteToken__usedAsQuote' + | 'quoteToken__totalPayoutAmount' + | 'quoteToken__purchaseCount' + | 'network' + | 'chainId' + | 'tbv' + | 'bondPurchases' + } + PayoutToken_filter: { + kind: 'INPUT_OBJECT' + name: 'PayoutToken_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PayoutToken_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PayoutToken_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PayoutToken_orderBy: { name: 'PayoutToken_orderBy'; enumValues: 'id' } + PurchaseCount: { + kind: 'OBJECT' + name: 'PurchaseCount' + fields: { + count: { + name: 'count' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + PurchaseCount_filter: { + kind: 'INPUT_OBJECT' + name: 'PurchaseCount_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'count' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'count_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PurchaseCount_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PurchaseCount_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PurchaseCount_orderBy: { + name: 'PurchaseCount_orderBy' + enumValues: 'id' | 'count' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + balancerWeightedPool: { + name: 'balancerWeightedPool' + type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null } + } + balancerWeightedPools: { + name: 'balancerWeightedPools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'BalancerWeightedPool' + ofType: null + } + } + } + } + } + bondPurchase: { + name: 'bondPurchase' + type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + bondPurchases: { + name: 'bondPurchases' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + } + } + } + bondToken: { + name: 'bondToken' + type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null } + } + bondTokens: { + name: 'bondTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null } + } + } + } + } + market: { + name: 'market' + type: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + marketOwnerCount: { + name: 'marketOwnerCount' + type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null } + } + marketOwnerCounts: { + name: 'marketOwnerCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'MarketOwnerCount' + ofType: null + } + } + } + } + } + markets: { + name: 'markets' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + } + } + } + ownerBalance: { + name: 'ownerBalance' + type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null } + } + ownerBalances: { + name: 'ownerBalances' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null } + } + } + } + } + ownerTokenTbv: { + name: 'ownerTokenTbv' + type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null } + } + ownerTokenTbvs: { + name: 'ownerTokenTbvs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null } + } + } + } + } + pair: { + name: 'pair' + type: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + pairs: { + name: 'pairs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + payoutToken: { + name: 'payoutToken' + type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null } + } + payoutTokenTbv: { + name: 'payoutTokenTbv' + type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + payoutTokenTbvs: { + name: 'payoutTokenTbvs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + } + } + } + payoutTokens: { + name: 'payoutTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null } + } + } + } + } + purchaseCount: { + name: 'purchaseCount' + type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null } + } + purchaseCounts: { + name: 'purchaseCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null } + } + } + } + } + quoteToken: { + name: 'quoteToken' + type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null } + } + quoteTokens: { + name: 'quoteTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + tune: { + name: 'tune' + type: { kind: 'OBJECT'; name: 'Tune'; ofType: null } + } + tunes: { + name: 'tunes' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null } + } + } + } + } + uniqueBonder: { + name: 'uniqueBonder' + type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null } + } + uniqueBonderCount: { + name: 'uniqueBonderCount' + type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null } + } + uniqueBonderCounts: { + name: 'uniqueBonderCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueBonderCount' + ofType: null + } + } + } + } + } + uniqueBonders: { + name: 'uniqueBonders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null } + } + } + } + } + uniqueTokenBonder: { + name: 'uniqueTokenBonder' + type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null } + } + uniqueTokenBonderCount: { + name: 'uniqueTokenBonderCount' + type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null } + } + uniqueTokenBonderCounts: { + name: 'uniqueTokenBonderCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueTokenBonderCount' + ofType: null + } + } + } + } + } + uniqueTokenBonders: { + name: 'uniqueTokenBonders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueTokenBonder' + ofType: null + } + } + } + } + } + } + } + QuoteToken: { + kind: 'OBJECT' + name: 'QuoteToken' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + QuoteToken_filter: { + kind: 'INPUT_OBJECT' + name: 'QuoteToken_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'QuoteToken_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'QuoteToken_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + QuoteToken_orderBy: { name: 'QuoteToken_orderBy'; enumValues: 'id' } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + balancerWeightedPool: { + name: 'balancerWeightedPool' + type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null } + } + balancerWeightedPools: { + name: 'balancerWeightedPools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'BalancerWeightedPool' + ofType: null + } + } + } + } + } + bondPurchase: { + name: 'bondPurchase' + type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + bondPurchases: { + name: 'bondPurchases' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null } + } + } + } + } + bondToken: { + name: 'bondToken' + type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null } + } + bondTokens: { + name: 'bondTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null } + } + } + } + } + market: { + name: 'market' + type: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + marketOwnerCount: { + name: 'marketOwnerCount' + type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null } + } + marketOwnerCounts: { + name: 'marketOwnerCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'MarketOwnerCount' + ofType: null + } + } + } + } + } + markets: { + name: 'markets' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + } + } + } + ownerBalance: { + name: 'ownerBalance' + type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null } + } + ownerBalances: { + name: 'ownerBalances' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null } + } + } + } + } + ownerTokenTbv: { + name: 'ownerTokenTbv' + type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null } + } + ownerTokenTbvs: { + name: 'ownerTokenTbvs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null } + } + } + } + } + pair: { + name: 'pair' + type: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + pairs: { + name: 'pairs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + payoutToken: { + name: 'payoutToken' + type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null } + } + payoutTokenTbv: { + name: 'payoutTokenTbv' + type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + payoutTokenTbvs: { + name: 'payoutTokenTbvs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + } + } + } + payoutTokens: { + name: 'payoutTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null } + } + } + } + } + purchaseCount: { + name: 'purchaseCount' + type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null } + } + purchaseCounts: { + name: 'purchaseCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null } + } + } + } + } + quoteToken: { + name: 'quoteToken' + type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null } + } + quoteTokens: { + name: 'quoteTokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + tune: { + name: 'tune' + type: { kind: 'OBJECT'; name: 'Tune'; ofType: null } + } + tunes: { + name: 'tunes' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null } + } + } + } + } + uniqueBonder: { + name: 'uniqueBonder' + type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null } + } + uniqueBonderCount: { + name: 'uniqueBonderCount' + type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null } + } + uniqueBonderCounts: { + name: 'uniqueBonderCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueBonderCount' + ofType: null + } + } + } + } + } + uniqueBonders: { + name: 'uniqueBonders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null } + } + } + } + } + uniqueTokenBonder: { + name: 'uniqueTokenBonder' + type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null } + } + uniqueTokenBonderCount: { + name: 'uniqueTokenBonderCount' + type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null } + } + uniqueTokenBonderCounts: { + name: 'uniqueTokenBonderCounts' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueTokenBonderCount' + ofType: null + } + } + } + } + } + uniqueTokenBonders: { + name: 'uniqueTokenBonders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'UniqueTokenBonder' + ofType: null + } + } + } + } + } + } + } + Timestamp: unknown + Token: { + kind: 'OBJECT' + name: 'Token' + fields: { + address: { + name: 'address' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + balancerWeightedPool: { + name: 'balancerWeightedPool' + type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null } + } + chainId: { + name: 'chainId' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + decimals: { + name: 'decimals' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + lpPair: { + name: 'lpPair' + type: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + markets: { + name: 'markets' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + } + } + name: { + name: 'name' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + network: { + name: 'network' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + payoutTokenTbvs: { + name: 'payoutTokenTbvs' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null } + } + } + } + purchaseCount: { + name: 'purchaseCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + symbol: { + name: 'symbol' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + totalPayoutAmount: { + name: 'totalPayoutAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + typeName: { + name: 'typeName' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + uniqueBonders: { + name: 'uniqueBonders' + type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null } + } + usedAsPayout: { + name: 'usedAsPayout' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + usedAsQuote: { + name: 'usedAsQuote' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + Token_filter: { + kind: 'INPUT_OBJECT' + name: 'Token_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'network_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'network_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'chainId' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'chainId_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'chainId_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'decimals' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'decimals_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'typeName_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'typeName_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'typeName_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lpPair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lpPair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'lpPair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balancerWeightedPool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'balancerWeightedPool_' + type: { + kind: 'INPUT_OBJECT' + name: 'BalancerWeightedPool_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'usedAsPayout' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'usedAsPayout_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'usedAsPayout_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'usedAsPayout_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'usedAsQuote' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'usedAsQuote_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'usedAsQuote_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'usedAsQuote_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalPayoutAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalPayoutAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalPayoutAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'purchaseCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'purchaseCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'purchaseCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'payoutTokenTbvs_' + type: { + kind: 'INPUT_OBJECT' + name: 'PayoutTokenTbv_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'uniqueBonders_' + type: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonderCount_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'markets_' + type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Token_orderBy: { + name: 'Token_orderBy' + enumValues: + | 'id' + | 'network' + | 'chainId' + | 'address' + | 'decimals' + | 'symbol' + | 'name' + | 'typeName' + | 'lpPair' + | 'lpPair__id' + | 'balancerWeightedPool' + | 'balancerWeightedPool__id' + | 'balancerWeightedPool__vaultAddress' + | 'balancerWeightedPool__poolId' + | 'usedAsPayout' + | 'usedAsQuote' + | 'totalPayoutAmount' + | 'purchaseCount' + | 'payoutTokenTbvs' + | 'uniqueBonders' + | 'uniqueBonders__id' + | 'uniqueBonders__count' + | 'markets' + } + Tune: { + kind: 'OBJECT' + name: 'Tune' + fields: { + deltaTime: { + name: 'deltaTime' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + market: { + name: 'market' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null } + } + } + newControlVariable: { + name: 'newControlVariable' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + oldControlVariable: { + name: 'oldControlVariable' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + Tune_filter: { + kind: 'INPUT_OBJECT' + name: 'Tune_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'market_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'market_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'market_' + type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'oldControlVariable_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'oldControlVariable_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newControlVariable' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newControlVariable_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newControlVariable_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'deltaTime' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'deltaTime_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'deltaTime_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Tune_orderBy: { + name: 'Tune_orderBy' + enumValues: + | 'id' + | 'market' + | 'market__id' + | 'market__name' + | 'market__type' + | 'market__network' + | 'market__chainId' + | 'market__auctioneer' + | 'market__teller' + | 'market__marketId' + | 'market__owner' + | 'market__vesting' + | 'market__start' + | 'market__conclusion' + | 'market__vestingType' + | 'market__isInstantSwap' + | 'market__hasClosed' + | 'market__totalBondedAmount' + | 'market__totalPayoutAmount' + | 'market__creationBlockTimestamp' + | 'market__callbackAddress' + | 'market__capacity' + | 'market__capacityInQuote' + | 'market__minPrice' + | 'market__price' + | 'market__scale' + | 'market__averageBondPrice' + | 'market__bondsIssued' + | 'oldControlVariable' + | 'newControlVariable' + | 'deltaTime' + | 'timestamp' + } + UniqueBonder: { + kind: 'OBJECT' + name: 'UniqueBonder' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + UniqueBonderCount: { + kind: 'OBJECT' + name: 'UniqueBonderCount' + fields: { + count: { + name: 'count' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + UniqueBonderCount_filter: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonderCount_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'count' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'count_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonderCount_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonderCount_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniqueBonderCount_orderBy: { + name: 'UniqueBonderCount_orderBy' + enumValues: 'id' | 'count' + } + UniqueBonder_filter: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonder_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonder_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueBonder_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniqueBonder_orderBy: { name: 'UniqueBonder_orderBy'; enumValues: 'id' } + UniqueTokenBonder: { + kind: 'OBJECT' + name: 'UniqueTokenBonder' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + } + } + UniqueTokenBonderCount: { + kind: 'OBJECT' + name: 'UniqueTokenBonderCount' + fields: { + count: { + name: 'count' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + token: { + name: 'token' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + UniqueTokenBonderCount_filter: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonderCount_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'count' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'count_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'count_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonderCount_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonderCount_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniqueTokenBonderCount_orderBy: { + name: 'UniqueTokenBonderCount_orderBy' + enumValues: + | 'id' + | 'token' + | 'token__id' + | 'token__network' + | 'token__chainId' + | 'token__address' + | 'token__decimals' + | 'token__symbol' + | 'token__name' + | 'token__typeName' + | 'token__usedAsPayout' + | 'token__usedAsQuote' + | 'token__totalPayoutAmount' + | 'token__purchaseCount' + | 'count' + } + UniqueTokenBonder_filter: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonder_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonder_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniqueTokenBonder_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniqueTokenBonder_orderBy: { + name: 'UniqueTokenBonder_orderBy' + enumValues: 'id' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts index d240778a55..5b91691ff2 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts @@ -1,10 +1,583 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n': TadaDocumentNode< + { + positions: { + pool: { id: `0x${string}` } + amount: string + address: `0x${string}` + id: string + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + rewardDebt_not_in?: string[] + rewardDebt_in?: string[] + rewardDebt_lte?: string + rewardDebt_gte?: string + rewardDebt_lt?: string + rewardDebt_gt?: string + rewardDebt_not?: string + rewardDebt?: string + amount_not_in?: string[] + amount_in?: string[] + amount_lte?: string + amount_gte?: string + amount_lt?: string + amount_gt?: string + amount_not?: string + amount?: string + pool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + userCount_not_in?: string[] + userCount_in?: string[] + userCount_lte?: string + userCount_gte?: string + userCount_lt?: string + userCount_gt?: string + userCount_not?: string + userCount?: string + users_?: any + balance_not_in?: string[] + balance_in?: string[] + balance_lte?: string + balance_gte?: string + balance_lt?: string + balance_gt?: string + balance_not?: string + balance?: string + accSushiPerShare_not_in?: string[] + accSushiPerShare_in?: string[] + accSushiPerShare_lte?: string + accSushiPerShare_gte?: string + accSushiPerShare_lt?: string + accSushiPerShare_gt?: string + accSushiPerShare_not?: string + accSushiPerShare?: string + lastRewardBlock_not_in?: string[] + lastRewardBlock_in?: string[] + lastRewardBlock_lte?: string + lastRewardBlock_gte?: string + lastRewardBlock_lt?: string + lastRewardBlock_gt?: string + lastRewardBlock_not?: string + lastRewardBlock?: string + allocPoint_not_in?: string[] + allocPoint_in?: string[] + allocPoint_lte?: string + allocPoint_gte?: string + allocPoint_lt?: string + allocPoint_gt?: string + allocPoint_not?: string + allocPoint?: string + pair_not_contains?: `0x${string}` + pair_contains?: `0x${string}` + pair_not_in?: `0x${string}`[] + pair_in?: `0x${string}`[] + pair_lte?: `0x${string}` + pair_gte?: `0x${string}` + pair_lt?: `0x${string}` + pair_gt?: `0x${string}` + pair_not?: `0x${string}` + pair?: `0x${string}` + owner_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + history_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + owner_?: any + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + poolCount_not_in?: string[] + poolCount_in?: string[] + poolCount_lte?: string + poolCount_gte?: string + poolCount_lt?: string + poolCount_gt?: string + poolCount_not?: string + poolCount?: string + pools_?: any + totalAllocPoint_not_in?: string[] + totalAllocPoint_in?: string[] + totalAllocPoint_lte?: string + totalAllocPoint_gte?: string + totalAllocPoint_lt?: string + totalAllocPoint_gt?: string + totalAllocPoint_not?: string + totalAllocPoint?: string + sushiPerBlock_not_in?: string[] + sushiPerBlock_in?: string[] + sushiPerBlock_lte?: string + sushiPerBlock_gte?: string + sushiPerBlock_lt?: string + sushiPerBlock_gt?: string + sushiPerBlock_not?: string + sushiPerBlock?: string + sushi_not_contains?: `0x${string}` + sushi_contains?: `0x${string}` + sushi_not_in?: `0x${string}`[] + sushi_in?: `0x${string}`[] + sushi_lte?: `0x${string}` + sushi_gte?: `0x${string}` + sushi_lt?: `0x${string}` + sushi_gt?: `0x${string}` + sushi_not?: `0x${string}` + sushi?: `0x${string}` + startBlock_not_in?: string[] + startBlock_in?: string[] + startBlock_lte?: string + startBlock_gte?: string + startBlock_lt?: string + startBlock_gt?: string + startBlock_not?: string + startBlock?: string + owner_not_contains?: `0x${string}` + owner_contains?: `0x${string}` + owner_not_in?: `0x${string}`[] + owner_in?: `0x${string}`[] + owner_lte?: `0x${string}` + owner_gte?: `0x${string}` + owner_lt?: `0x${string}` + owner_gt?: `0x${string}` + owner_not?: `0x${string}` + owner?: `0x${string}` + migrator_not_contains?: `0x${string}` + migrator_contains?: `0x${string}` + migrator_not_in?: `0x${string}`[] + migrator_in?: `0x${string}`[] + migrator_lte?: `0x${string}` + migrator_gte?: `0x${string}` + migrator_lt?: `0x${string}` + migrator_gt?: `0x${string}` + migrator_not?: `0x${string}` + migrator?: `0x${string}` + devaddr_not_contains?: `0x${string}` + devaddr_contains?: `0x${string}` + devaddr_not_in?: `0x${string}`[] + devaddr_in?: `0x${string}`[] + devaddr_lte?: `0x${string}` + devaddr_gte?: `0x${string}` + devaddr_lt?: `0x${string}` + devaddr_gt?: `0x${string}` + devaddr_not?: `0x${string}` + devaddr?: `0x${string}` + bonusEndBlock_not_in?: string[] + bonusEndBlock_in?: string[] + bonusEndBlock_lte?: string + bonusEndBlock_gte?: string + bonusEndBlock_lt?: string + bonusEndBlock_gt?: string + bonusEndBlock_not?: string + bonusEndBlock?: string + bonusMultiplier_not_in?: string[] + bonusMultiplier_in?: string[] + bonusMultiplier_lte?: string + bonusMultiplier_gte?: string + bonusMultiplier_lt?: string + bonusMultiplier_gt?: string + bonusMultiplier_not?: string + bonusMultiplier?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + pool_not_ends_with_nocase?: string + pool_not_ends_with?: string + pool_ends_with_nocase?: string + pool_ends_with?: string + pool_not_starts_with_nocase?: string + pool_not_starts_with?: string + pool_starts_with_nocase?: string + pool_starts_with?: string + pool_not_contains_nocase?: string + pool_not_contains?: string + pool_contains_nocase?: string + pool_contains?: string + pool_not_in?: string[] + pool_in?: string[] + pool_lte?: string + pool_gte?: string + pool_lt?: string + pool_gt?: string + pool_not?: string + pool?: string + address_not_contains?: `0x${string}` + address_contains?: `0x${string}` + address_not_in?: `0x${string}`[] + address_in?: `0x${string}`[] + address_lte?: `0x${string}` + address_gte?: `0x${string}` + address_lt?: `0x${string}` + address_gt?: `0x${string}` + address_not?: `0x${string}` + address?: `0x${string}` + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'block' + | 'id' + | 'address' + | 'amount' + | 'pool' + | 'rewardDebt' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + | 'timestamp' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__balance' + | 'pool__userCount' + | 'pool__slpBalance' + | 'pool__slpAge' + | 'pool__slpAgeRemoved' + | 'pool__slpDeposited' + | 'pool__slpWithdrawn' + | 'pool__timestamp' + | 'pool__block' + | 'pool__updatedAt' + | 'pool__entryUSD' + | 'pool__exitUSD' + | 'pool__sushiHarvested' + | 'pool__sushiHarvestedUSD' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts index 1e79348357..d20a11bc6a 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts @@ -10,45 +10,5665 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'master-chef-v1'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'master-chef-v1' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'History': { kind: 'OBJECT'; name: 'History'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'History_filter': { kind: 'INPUT_OBJECT'; name: 'History_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'History_orderBy': { name: 'History_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block'; }; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'bonusEndBlock': { name: 'bonusEndBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bonusMultiplier': { name: 'bonusMultiplier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'devaddr': { name: 'devaddr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'history': { name: 'history'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'migrator': { name: 'migrator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'startBlock': { name: 'startBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerBlock': { name: 'sushiPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'startBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'startBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'history_'; type: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'bonusMultiplier' | 'bonusEndBlock' | 'devaddr' | 'migrator' | 'owner' | 'startBlock' | 'sushi' | 'sushiPerBlock' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'history' | 'updatedAt'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'PoolHistory': { kind: 'OBJECT'; name: 'PoolHistory'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'PoolHistory_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolHistory_orderBy': { name: 'PoolHistory_orderBy'; enumValues: 'id' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'userCount' | 'timestamp' | 'block' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'pair' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'balance' | 'users' | 'userCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block' | 'updatedAt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'amount' | 'rewardDebt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bytes: unknown + History: { + kind: 'OBJECT' + name: 'History' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + slpAge: { + name: 'slpAge' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpAgeRemoved: { + name: 'slpAgeRemoved' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpDeposited: { + name: 'slpDeposited' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpWithdrawn: { + name: 'slpWithdrawn' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + History_filter: { + kind: 'INPUT_OBJECT' + name: 'History_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_' + type: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'History_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'History_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + History_orderBy: { + name: 'History_orderBy' + enumValues: + | 'id' + | 'owner' + | 'owner__id' + | 'owner__bonusMultiplier' + | 'owner__bonusEndBlock' + | 'owner__devaddr' + | 'owner__migrator' + | 'owner__owner' + | 'owner__startBlock' + | 'owner__sushi' + | 'owner__sushiPerBlock' + | 'owner__totalAllocPoint' + | 'owner__poolCount' + | 'owner__slpBalance' + | 'owner__slpAge' + | 'owner__slpAgeRemoved' + | 'owner__slpDeposited' + | 'owner__slpWithdrawn' + | 'owner__updatedAt' + | 'slpBalance' + | 'slpAge' + | 'slpAgeRemoved' + | 'slpDeposited' + | 'slpWithdrawn' + | 'timestamp' + | 'block' + } + ID: unknown + Int: unknown + Int8: unknown + MasterChef: { + kind: 'OBJECT' + name: 'MasterChef' + fields: { + bonusEndBlock: { + name: 'bonusEndBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + bonusMultiplier: { + name: 'bonusMultiplier' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + devaddr: { + name: 'devaddr' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + history: { + name: 'history' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'History'; ofType: null } + } + } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + migrator: { + name: 'migrator' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + poolCount: { + name: 'poolCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + slpAge: { + name: 'slpAge' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpAgeRemoved: { + name: 'slpAgeRemoved' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpDeposited: { + name: 'slpDeposited' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpWithdrawn: { + name: 'slpWithdrawn' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + startBlock: { + name: 'startBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + sushi: { + name: 'sushi' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + sushiPerBlock: { + name: 'sushiPerBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalAllocPoint: { + name: 'totalAllocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + updatedAt: { + name: 'updatedAt' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + MasterChef_filter: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bonusMultiplier' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusMultiplier_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bonusMultiplier_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bonusEndBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'bonusEndBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'bonusEndBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'devaddr' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'devaddr_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'devaddr_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'devaddr_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'migrator_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'migrator_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'migrator_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'startBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'startBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiPerBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pools_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'history_' + type: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'updatedAt_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + MasterChef_orderBy: { + name: 'MasterChef_orderBy' + enumValues: + | 'id' + | 'bonusMultiplier' + | 'bonusEndBlock' + | 'devaddr' + | 'migrator' + | 'owner' + | 'startBlock' + | 'sushi' + | 'sushiPerBlock' + | 'totalAllocPoint' + | 'pools' + | 'poolCount' + | 'slpBalance' + | 'slpAge' + | 'slpAgeRemoved' + | 'slpDeposited' + | 'slpWithdrawn' + | 'history' + | 'updatedAt' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Pool: { + kind: 'OBJECT' + name: 'Pool' + fields: { + accSushiPerShare: { + name: 'accSushiPerShare' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + allocPoint: { + name: 'allocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + balance: { + name: 'balance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + entryUSD: { + name: 'entryUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + exitUSD: { + name: 'exitUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + lastRewardBlock: { + name: 'lastRewardBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + slpAge: { + name: 'slpAge' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpAgeRemoved: { + name: 'slpAgeRemoved' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpDeposited: { + name: 'slpDeposited' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpWithdrawn: { + name: 'slpWithdrawn' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvestedUSD: { + name: 'sushiHarvestedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + updatedAt: { + name: 'updatedAt' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + PoolHistory: { + kind: 'OBJECT' + name: 'PoolHistory' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + entryUSD: { + name: 'entryUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + exitUSD: { + name: 'exitUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + slpAge: { + name: 'slpAge' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpAgeRemoved: { + name: 'slpAgeRemoved' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpDeposited: { + name: 'slpDeposited' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + slpWithdrawn: { + name: 'slpWithdrawn' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvestedUSD: { + name: 'sushiHarvestedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + PoolHistory_filter: { + kind: 'INPUT_OBJECT' + name: 'PoolHistory_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolHistory_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolHistory_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PoolHistory_orderBy: { + name: 'PoolHistory_orderBy' + enumValues: + | 'id' + | 'pool' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__balance' + | 'pool__userCount' + | 'pool__slpBalance' + | 'pool__slpAge' + | 'pool__slpAgeRemoved' + | 'pool__slpDeposited' + | 'pool__slpWithdrawn' + | 'pool__timestamp' + | 'pool__block' + | 'pool__updatedAt' + | 'pool__entryUSD' + | 'pool__exitUSD' + | 'pool__sushiHarvested' + | 'pool__sushiHarvestedUSD' + | 'slpBalance' + | 'slpAge' + | 'slpAgeRemoved' + | 'slpDeposited' + | 'slpWithdrawn' + | 'userCount' + | 'timestamp' + | 'block' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + } + Pool_filter: { + kind: 'INPUT_OBJECT' + name: 'Pool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'owner_' + type: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'allocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balance' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'users_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAge_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAge_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpAgeRemoved_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpAgeRemoved_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpDeposited_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpDeposited_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'slpWithdrawn_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpWithdrawn_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'updatedAt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'updatedAt_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'updatedAt_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pool_orderBy: { + name: 'Pool_orderBy' + enumValues: + | 'id' + | 'owner' + | 'owner__id' + | 'owner__bonusMultiplier' + | 'owner__bonusEndBlock' + | 'owner__devaddr' + | 'owner__migrator' + | 'owner__owner' + | 'owner__startBlock' + | 'owner__sushi' + | 'owner__sushiPerBlock' + | 'owner__totalAllocPoint' + | 'owner__poolCount' + | 'owner__slpBalance' + | 'owner__slpAge' + | 'owner__slpAgeRemoved' + | 'owner__slpDeposited' + | 'owner__slpWithdrawn' + | 'owner__updatedAt' + | 'pair' + | 'allocPoint' + | 'lastRewardBlock' + | 'accSushiPerShare' + | 'balance' + | 'users' + | 'userCount' + | 'slpBalance' + | 'slpAge' + | 'slpAgeRemoved' + | 'slpDeposited' + | 'slpWithdrawn' + | 'timestamp' + | 'block' + | 'updatedAt' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + histories: { + name: 'histories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'History'; ofType: null } + } + } + } + } + history: { + name: 'history' + type: { kind: 'OBJECT'; name: 'History'; ofType: null } + } + masterChef: { + name: 'masterChef' + type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + masterChefs: { + name: 'masterChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + poolHistories: { + name: 'poolHistories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null } + } + } + } + } + poolHistory: { + name: 'poolHistory' + type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + histories: { + name: 'histories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'History'; ofType: null } + } + } + } + } + history: { + name: 'history' + type: { kind: 'OBJECT'; name: 'History'; ofType: null } + } + masterChef: { + name: 'masterChef' + type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + masterChefs: { + name: 'masterChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + poolHistories: { + name: 'poolHistories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null } + } + } + } + } + poolHistory: { + name: 'poolHistory' + type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Timestamp: unknown + User: { + kind: 'OBJECT' + name: 'User' + fields: { + address: { + name: 'address' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + entryUSD: { + name: 'entryUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + exitUSD: { + name: 'exitUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + rewardDebt: { + name: 'rewardDebt' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvestedUSD: { + name: 'sushiHarvestedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + User_filter: { + kind: 'INPUT_OBJECT' + name: 'User_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'entryUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'entryUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'exitUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'exitUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvestedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + User_orderBy: { + name: 'User_orderBy' + enumValues: + | 'id' + | 'address' + | 'pool' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__balance' + | 'pool__userCount' + | 'pool__slpBalance' + | 'pool__slpAge' + | 'pool__slpAgeRemoved' + | 'pool__slpDeposited' + | 'pool__slpWithdrawn' + | 'pool__timestamp' + | 'pool__block' + | 'pool__updatedAt' + | 'pool__entryUSD' + | 'pool__exitUSD' + | 'pool__sushiHarvested' + | 'pool__sushiHarvestedUSD' + | 'amount' + | 'rewardDebt' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + | 'timestamp' + | 'block' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts index d240778a55..5b91691ff2 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts @@ -1,10 +1,583 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n': TadaDocumentNode< + { + positions: { + pool: { id: `0x${string}` } + amount: string + address: `0x${string}` + id: string + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + rewardDebt_not_in?: string[] + rewardDebt_in?: string[] + rewardDebt_lte?: string + rewardDebt_gte?: string + rewardDebt_lt?: string + rewardDebt_gt?: string + rewardDebt_not?: string + rewardDebt?: string + amount_not_in?: string[] + amount_in?: string[] + amount_lte?: string + amount_gte?: string + amount_lt?: string + amount_gt?: string + amount_not?: string + amount?: string + pool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + userCount_not_in?: string[] + userCount_in?: string[] + userCount_lte?: string + userCount_gte?: string + userCount_lt?: string + userCount_gt?: string + userCount_not?: string + userCount?: string + users_?: any + balance_not_in?: string[] + balance_in?: string[] + balance_lte?: string + balance_gte?: string + balance_lt?: string + balance_gt?: string + balance_not?: string + balance?: string + accSushiPerShare_not_in?: string[] + accSushiPerShare_in?: string[] + accSushiPerShare_lte?: string + accSushiPerShare_gte?: string + accSushiPerShare_lt?: string + accSushiPerShare_gt?: string + accSushiPerShare_not?: string + accSushiPerShare?: string + lastRewardBlock_not_in?: string[] + lastRewardBlock_in?: string[] + lastRewardBlock_lte?: string + lastRewardBlock_gte?: string + lastRewardBlock_lt?: string + lastRewardBlock_gt?: string + lastRewardBlock_not?: string + lastRewardBlock?: string + allocPoint_not_in?: string[] + allocPoint_in?: string[] + allocPoint_lte?: string + allocPoint_gte?: string + allocPoint_lt?: string + allocPoint_gt?: string + allocPoint_not?: string + allocPoint?: string + pair_not_contains?: `0x${string}` + pair_contains?: `0x${string}` + pair_not_in?: `0x${string}`[] + pair_in?: `0x${string}`[] + pair_lte?: `0x${string}` + pair_gte?: `0x${string}` + pair_lt?: `0x${string}` + pair_gt?: `0x${string}` + pair_not?: `0x${string}` + pair?: `0x${string}` + owner_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + history_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + owner_?: any + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + poolCount_not_in?: string[] + poolCount_in?: string[] + poolCount_lte?: string + poolCount_gte?: string + poolCount_lt?: string + poolCount_gt?: string + poolCount_not?: string + poolCount?: string + pools_?: any + totalAllocPoint_not_in?: string[] + totalAllocPoint_in?: string[] + totalAllocPoint_lte?: string + totalAllocPoint_gte?: string + totalAllocPoint_lt?: string + totalAllocPoint_gt?: string + totalAllocPoint_not?: string + totalAllocPoint?: string + sushiPerBlock_not_in?: string[] + sushiPerBlock_in?: string[] + sushiPerBlock_lte?: string + sushiPerBlock_gte?: string + sushiPerBlock_lt?: string + sushiPerBlock_gt?: string + sushiPerBlock_not?: string + sushiPerBlock?: string + sushi_not_contains?: `0x${string}` + sushi_contains?: `0x${string}` + sushi_not_in?: `0x${string}`[] + sushi_in?: `0x${string}`[] + sushi_lte?: `0x${string}` + sushi_gte?: `0x${string}` + sushi_lt?: `0x${string}` + sushi_gt?: `0x${string}` + sushi_not?: `0x${string}` + sushi?: `0x${string}` + startBlock_not_in?: string[] + startBlock_in?: string[] + startBlock_lte?: string + startBlock_gte?: string + startBlock_lt?: string + startBlock_gt?: string + startBlock_not?: string + startBlock?: string + owner_not_contains?: `0x${string}` + owner_contains?: `0x${string}` + owner_not_in?: `0x${string}`[] + owner_in?: `0x${string}`[] + owner_lte?: `0x${string}` + owner_gte?: `0x${string}` + owner_lt?: `0x${string}` + owner_gt?: `0x${string}` + owner_not?: `0x${string}` + owner?: `0x${string}` + migrator_not_contains?: `0x${string}` + migrator_contains?: `0x${string}` + migrator_not_in?: `0x${string}`[] + migrator_in?: `0x${string}`[] + migrator_lte?: `0x${string}` + migrator_gte?: `0x${string}` + migrator_lt?: `0x${string}` + migrator_gt?: `0x${string}` + migrator_not?: `0x${string}` + migrator?: `0x${string}` + devaddr_not_contains?: `0x${string}` + devaddr_contains?: `0x${string}` + devaddr_not_in?: `0x${string}`[] + devaddr_in?: `0x${string}`[] + devaddr_lte?: `0x${string}` + devaddr_gte?: `0x${string}` + devaddr_lt?: `0x${string}` + devaddr_gt?: `0x${string}` + devaddr_not?: `0x${string}` + devaddr?: `0x${string}` + bonusEndBlock_not_in?: string[] + bonusEndBlock_in?: string[] + bonusEndBlock_lte?: string + bonusEndBlock_gte?: string + bonusEndBlock_lt?: string + bonusEndBlock_gt?: string + bonusEndBlock_not?: string + bonusEndBlock?: string + bonusMultiplier_not_in?: string[] + bonusMultiplier_in?: string[] + bonusMultiplier_lte?: string + bonusMultiplier_gte?: string + bonusMultiplier_lt?: string + bonusMultiplier_gt?: string + bonusMultiplier_not?: string + bonusMultiplier?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + pool_not_ends_with_nocase?: string + pool_not_ends_with?: string + pool_ends_with_nocase?: string + pool_ends_with?: string + pool_not_starts_with_nocase?: string + pool_not_starts_with?: string + pool_starts_with_nocase?: string + pool_starts_with?: string + pool_not_contains_nocase?: string + pool_not_contains?: string + pool_contains_nocase?: string + pool_contains?: string + pool_not_in?: string[] + pool_in?: string[] + pool_lte?: string + pool_gte?: string + pool_lt?: string + pool_gt?: string + pool_not?: string + pool?: string + address_not_contains?: `0x${string}` + address_contains?: `0x${string}` + address_not_in?: `0x${string}`[] + address_in?: `0x${string}`[] + address_lte?: `0x${string}` + address_gte?: `0x${string}` + address_lt?: `0x${string}` + address_gt?: `0x${string}` + address_not?: `0x${string}` + address?: `0x${string}` + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'block' + | 'id' + | 'address' + | 'amount' + | 'pool' + | 'rewardDebt' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + | 'timestamp' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__balance' + | 'pool__userCount' + | 'pool__slpBalance' + | 'pool__slpAge' + | 'pool__slpAgeRemoved' + | 'pool__slpDeposited' + | 'pool__slpWithdrawn' + | 'pool__timestamp' + | 'pool__block' + | 'pool__updatedAt' + | 'pool__entryUSD' + | 'pool__exitUSD' + | 'pool__sushiHarvested' + | 'pool__sushiHarvestedUSD' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts index 14ee77189b..f77b7931cf 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts @@ -10,42 +10,2661 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'master-chef-v2'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'master-chef-v2' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'masterChef' | 'masterChef__id' | 'masterChef__totalAllocPoint' | 'masterChef__poolCount' | 'masterChef__timestamp' | 'masterChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'timestamp' | 'block'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bytes: unknown + ID: unknown + Int: unknown + Int8: unknown + MasterChef: { + kind: 'OBJECT' + name: 'MasterChef' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + poolCount: { + name: 'poolCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pools: { + name: 'pools' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalAllocPoint: { + name: 'totalAllocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + MasterChef_filter: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pools_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + MasterChef_orderBy: { + name: 'MasterChef_orderBy' + enumValues: + | 'id' + | 'totalAllocPoint' + | 'pools' + | 'poolCount' + | 'timestamp' + | 'block' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Pool: { + kind: 'OBJECT' + name: 'Pool' + fields: { + accSushiPerShare: { + name: 'accSushiPerShare' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + allocPoint: { + name: 'allocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + lastRewardBlock: { + name: 'lastRewardBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + masterChef: { + name: 'masterChef' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Pool_filter: { + kind: 'INPUT_OBJECT' + name: 'Pool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'masterChef' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'masterChef_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'masterChef_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'masterChef_' + type: { + kind: 'INPUT_OBJECT' + name: 'MasterChef_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewarder_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewarder_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_' + type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'allocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'users_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pool_orderBy: { + name: 'Pool_orderBy' + enumValues: + | 'id' + | 'masterChef' + | 'masterChef__id' + | 'masterChef__totalAllocPoint' + | 'masterChef__poolCount' + | 'masterChef__timestamp' + | 'masterChef__block' + | 'pair' + | 'rewarder' + | 'rewarder__id' + | 'rewarder__rewardToken' + | 'rewarder__rewardPerSecond' + | 'rewarder__timestamp' + | 'rewarder__block' + | 'allocPoint' + | 'lastRewardBlock' + | 'accSushiPerShare' + | 'slpBalance' + | 'users' + | 'userCount' + | 'timestamp' + | 'block' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + masterChef: { + name: 'masterChef' + type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + masterChefs: { + name: 'masterChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + rewarders: { + name: 'rewarders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Rewarder: { + kind: 'OBJECT' + name: 'Rewarder' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + rewardPerSecond: { + name: 'rewardPerSecond' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + rewardToken: { + name: 'rewardToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + Rewarder_filter: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardPerSecond_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Rewarder_orderBy: { + name: 'Rewarder_orderBy' + enumValues: + | 'id' + | 'rewardToken' + | 'rewardPerSecond' + | 'timestamp' + | 'block' + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + masterChef: { + name: 'masterChef' + type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + masterChefs: { + name: 'masterChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + rewarders: { + name: 'rewarders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Timestamp: unknown + User: { + kind: 'OBJECT' + name: 'User' + fields: { + address: { + name: 'address' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + rewardDebt: { + name: 'rewardDebt' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + User_filter: { + kind: 'INPUT_OBJECT' + name: 'User_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + User_orderBy: { + name: 'User_orderBy' + enumValues: + | 'id' + | 'address' + | 'pool' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__slpBalance' + | 'pool__userCount' + | 'pool__timestamp' + | 'pool__block' + | 'amount' + | 'rewardDebt' + | 'sushiHarvested' + | 'timestamp' + | 'block' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts index d240778a55..5b91691ff2 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts @@ -1,10 +1,583 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n': TadaDocumentNode< + { + positions: { + pool: { id: `0x${string}` } + amount: string + address: `0x${string}` + id: string + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + rewardDebt_not_in?: string[] + rewardDebt_in?: string[] + rewardDebt_lte?: string + rewardDebt_gte?: string + rewardDebt_lt?: string + rewardDebt_gt?: string + rewardDebt_not?: string + rewardDebt?: string + amount_not_in?: string[] + amount_in?: string[] + amount_lte?: string + amount_gte?: string + amount_lt?: string + amount_gt?: string + amount_not?: string + amount?: string + pool_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + sushiHarvestedUSD_not_in?: string[] + sushiHarvestedUSD_in?: string[] + sushiHarvestedUSD_lte?: string + sushiHarvestedUSD_gte?: string + sushiHarvestedUSD_lt?: string + sushiHarvestedUSD_gt?: string + sushiHarvestedUSD_not?: string + sushiHarvestedUSD?: string + sushiHarvested_not_in?: string[] + sushiHarvested_in?: string[] + sushiHarvested_lte?: string + sushiHarvested_gte?: string + sushiHarvested_lt?: string + sushiHarvested_gt?: string + sushiHarvested_not?: string + sushiHarvested?: string + exitUSD_not_in?: string[] + exitUSD_in?: string[] + exitUSD_lte?: string + exitUSD_gte?: string + exitUSD_lt?: string + exitUSD_gt?: string + exitUSD_not?: string + exitUSD?: string + entryUSD_not_in?: string[] + entryUSD_in?: string[] + entryUSD_lte?: string + entryUSD_gte?: string + entryUSD_lt?: string + entryUSD_gt?: string + entryUSD_not?: string + entryUSD?: string + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + userCount_not_in?: string[] + userCount_in?: string[] + userCount_lte?: string + userCount_gte?: string + userCount_lt?: string + userCount_gt?: string + userCount_not?: string + userCount?: string + users_?: any + balance_not_in?: string[] + balance_in?: string[] + balance_lte?: string + balance_gte?: string + balance_lt?: string + balance_gt?: string + balance_not?: string + balance?: string + accSushiPerShare_not_in?: string[] + accSushiPerShare_in?: string[] + accSushiPerShare_lte?: string + accSushiPerShare_gte?: string + accSushiPerShare_lt?: string + accSushiPerShare_gt?: string + accSushiPerShare_not?: string + accSushiPerShare?: string + lastRewardBlock_not_in?: string[] + lastRewardBlock_in?: string[] + lastRewardBlock_lte?: string + lastRewardBlock_gte?: string + lastRewardBlock_lt?: string + lastRewardBlock_gt?: string + lastRewardBlock_not?: string + lastRewardBlock?: string + allocPoint_not_in?: string[] + allocPoint_in?: string[] + allocPoint_lte?: string + allocPoint_gte?: string + allocPoint_lt?: string + allocPoint_gt?: string + allocPoint_not?: string + allocPoint?: string + pair_not_contains?: `0x${string}` + pair_contains?: `0x${string}` + pair_not_in?: `0x${string}`[] + pair_in?: `0x${string}`[] + pair_lte?: `0x${string}` + pair_gte?: `0x${string}` + pair_lt?: `0x${string}` + pair_gt?: `0x${string}` + pair_not?: `0x${string}` + pair?: `0x${string}` + owner_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + updatedAt_not_in?: string[] + updatedAt_in?: string[] + updatedAt_lte?: string + updatedAt_gte?: string + updatedAt_lt?: string + updatedAt_gt?: string + updatedAt_not?: string + updatedAt?: string + history_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + block_not_in?: string[] + block_in?: string[] + block_lte?: string + block_gte?: string + block_lt?: string + block_gt?: string + block_not?: string + block?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + owner_?: any + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + slpWithdrawn_not_in?: string[] + slpWithdrawn_in?: string[] + slpWithdrawn_lte?: string + slpWithdrawn_gte?: string + slpWithdrawn_lt?: string + slpWithdrawn_gt?: string + slpWithdrawn_not?: string + slpWithdrawn?: string + slpDeposited_not_in?: string[] + slpDeposited_in?: string[] + slpDeposited_lte?: string + slpDeposited_gte?: string + slpDeposited_lt?: string + slpDeposited_gt?: string + slpDeposited_not?: string + slpDeposited?: string + slpAgeRemoved_not_in?: string[] + slpAgeRemoved_in?: string[] + slpAgeRemoved_lte?: string + slpAgeRemoved_gte?: string + slpAgeRemoved_lt?: string + slpAgeRemoved_gt?: string + slpAgeRemoved_not?: string + slpAgeRemoved?: string + slpAge_not_in?: string[] + slpAge_in?: string[] + slpAge_lte?: string + slpAge_gte?: string + slpAge_lt?: string + slpAge_gt?: string + slpAge_not?: string + slpAge?: string + slpBalance_not_in?: string[] + slpBalance_in?: string[] + slpBalance_lte?: string + slpBalance_gte?: string + slpBalance_lt?: string + slpBalance_gt?: string + slpBalance_not?: string + slpBalance?: string + poolCount_not_in?: string[] + poolCount_in?: string[] + poolCount_lte?: string + poolCount_gte?: string + poolCount_lt?: string + poolCount_gt?: string + poolCount_not?: string + poolCount?: string + pools_?: any + totalAllocPoint_not_in?: string[] + totalAllocPoint_in?: string[] + totalAllocPoint_lte?: string + totalAllocPoint_gte?: string + totalAllocPoint_lt?: string + totalAllocPoint_gt?: string + totalAllocPoint_not?: string + totalAllocPoint?: string + sushiPerBlock_not_in?: string[] + sushiPerBlock_in?: string[] + sushiPerBlock_lte?: string + sushiPerBlock_gte?: string + sushiPerBlock_lt?: string + sushiPerBlock_gt?: string + sushiPerBlock_not?: string + sushiPerBlock?: string + sushi_not_contains?: `0x${string}` + sushi_contains?: `0x${string}` + sushi_not_in?: `0x${string}`[] + sushi_in?: `0x${string}`[] + sushi_lte?: `0x${string}` + sushi_gte?: `0x${string}` + sushi_lt?: `0x${string}` + sushi_gt?: `0x${string}` + sushi_not?: `0x${string}` + sushi?: `0x${string}` + startBlock_not_in?: string[] + startBlock_in?: string[] + startBlock_lte?: string + startBlock_gte?: string + startBlock_lt?: string + startBlock_gt?: string + startBlock_not?: string + startBlock?: string + owner_not_contains?: `0x${string}` + owner_contains?: `0x${string}` + owner_not_in?: `0x${string}`[] + owner_in?: `0x${string}`[] + owner_lte?: `0x${string}` + owner_gte?: `0x${string}` + owner_lt?: `0x${string}` + owner_gt?: `0x${string}` + owner_not?: `0x${string}` + owner?: `0x${string}` + migrator_not_contains?: `0x${string}` + migrator_contains?: `0x${string}` + migrator_not_in?: `0x${string}`[] + migrator_in?: `0x${string}`[] + migrator_lte?: `0x${string}` + migrator_gte?: `0x${string}` + migrator_lt?: `0x${string}` + migrator_gt?: `0x${string}` + migrator_not?: `0x${string}` + migrator?: `0x${string}` + devaddr_not_contains?: `0x${string}` + devaddr_contains?: `0x${string}` + devaddr_not_in?: `0x${string}`[] + devaddr_in?: `0x${string}`[] + devaddr_lte?: `0x${string}` + devaddr_gte?: `0x${string}` + devaddr_lt?: `0x${string}` + devaddr_gt?: `0x${string}` + devaddr_not?: `0x${string}` + devaddr?: `0x${string}` + bonusEndBlock_not_in?: string[] + bonusEndBlock_in?: string[] + bonusEndBlock_lte?: string + bonusEndBlock_gte?: string + bonusEndBlock_lt?: string + bonusEndBlock_gt?: string + bonusEndBlock_not?: string + bonusEndBlock?: string + bonusMultiplier_not_in?: string[] + bonusMultiplier_in?: string[] + bonusMultiplier_lte?: string + bonusMultiplier_gte?: string + bonusMultiplier_lt?: string + bonusMultiplier_gt?: string + bonusMultiplier_not?: string + bonusMultiplier?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + owner_not_ends_with_nocase?: string + owner_not_ends_with?: string + owner_ends_with_nocase?: string + owner_ends_with?: string + owner_not_starts_with_nocase?: string + owner_not_starts_with?: string + owner_starts_with_nocase?: string + owner_starts_with?: string + owner_not_contains_nocase?: string + owner_not_contains?: string + owner_contains_nocase?: string + owner_contains?: string + owner_not_in?: string[] + owner_in?: string[] + owner_lte?: string + owner_gte?: string + owner_lt?: string + owner_gt?: string + owner_not?: string + owner?: string + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + pool_not_ends_with_nocase?: string + pool_not_ends_with?: string + pool_ends_with_nocase?: string + pool_ends_with?: string + pool_not_starts_with_nocase?: string + pool_not_starts_with?: string + pool_starts_with_nocase?: string + pool_starts_with?: string + pool_not_contains_nocase?: string + pool_not_contains?: string + pool_contains_nocase?: string + pool_contains?: string + pool_not_in?: string[] + pool_in?: string[] + pool_lte?: string + pool_gte?: string + pool_lt?: string + pool_gt?: string + pool_not?: string + pool?: string + address_not_contains?: `0x${string}` + address_contains?: `0x${string}` + address_not_in?: `0x${string}`[] + address_in?: `0x${string}`[] + address_lte?: `0x${string}` + address_gte?: `0x${string}` + address_lt?: `0x${string}` + address_gt?: `0x${string}` + address_not?: `0x${string}` + address?: `0x${string}` + id_not_in?: string[] + id_in?: string[] + id_lte?: string + id_gte?: string + id_lt?: string + id_gt?: string + id_not?: string + id?: string + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'block' + | 'id' + | 'address' + | 'amount' + | 'pool' + | 'rewardDebt' + | 'entryUSD' + | 'exitUSD' + | 'sushiHarvested' + | 'sushiHarvestedUSD' + | 'timestamp' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardBlock' + | 'pool__accSushiPerShare' + | 'pool__balance' + | 'pool__userCount' + | 'pool__slpBalance' + | 'pool__slpAge' + | 'pool__slpAgeRemoved' + | 'pool__slpDeposited' + | 'pool__slpWithdrawn' + | 'pool__timestamp' + | 'pool__block' + | 'pool__updatedAt' + | 'pool__entryUSD' + | 'pool__exitUSD' + | 'pool__sushiHarvested' + | 'pool__sushiHarvestedUSD' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts index c79aa9e0d8..9db294f2b0 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts @@ -10,45 +10,3093 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'mini-chef'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'mini-chef' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MiniChef': { kind: 'OBJECT'; name: 'MiniChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerSecond': { name: 'sushiPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MiniChef_filter': { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MiniChef_orderBy': { name: 'MiniChef_orderBy'; enumValues: 'id' | 'sushi' | 'sushiPerSecond' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; - 'NativeRewarderPool': { kind: 'OBJECT'; name: 'NativeRewarderPool'; fields: { 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'NativeRewarderPool_filter': { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'NativeRewarderPool_orderBy': { name: 'NativeRewarderPool_orderBy'; enumValues: 'id' | 'allocPoint'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardTime': { name: 'lastRewardTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'miniChef' | 'miniChef__id' | 'miniChef__sushi' | 'miniChef__sushiPerSecond' | 'miniChef__totalAllocPoint' | 'miniChef__poolCount' | 'miniChef__timestamp' | 'miniChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__totalAllocPoint' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardTime' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'totalAllocPoint' | 'timestamp' | 'block'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardTime' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bytes: unknown + ID: unknown + Int: unknown + Int8: unknown + MiniChef: { + kind: 'OBJECT' + name: 'MiniChef' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + poolCount: { + name: 'poolCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pools: { + name: 'pools' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + sushi: { + name: 'sushi' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + sushiPerSecond: { + name: 'sushiPerSecond' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalAllocPoint: { + name: 'totalAllocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + MiniChef_filter: { + kind: 'INPUT_OBJECT' + name: 'MiniChef_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushi_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushi_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiPerSecond_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiPerSecond_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pools_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MiniChef_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'MiniChef_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + MiniChef_orderBy: { + name: 'MiniChef_orderBy' + enumValues: + | 'id' + | 'sushi' + | 'sushiPerSecond' + | 'totalAllocPoint' + | 'pools' + | 'poolCount' + | 'timestamp' + | 'block' + } + NativeRewarderPool: { + kind: 'OBJECT' + name: 'NativeRewarderPool' + fields: { + allocPoint: { + name: 'allocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + } + } + NativeRewarderPool_filter: { + kind: 'INPUT_OBJECT' + name: 'NativeRewarderPool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'allocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'allocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'NativeRewarderPool_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'NativeRewarderPool_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + NativeRewarderPool_orderBy: { + name: 'NativeRewarderPool_orderBy' + enumValues: 'id' | 'allocPoint' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Pool: { + kind: 'OBJECT' + name: 'Pool' + fields: { + accSushiPerShare: { + name: 'accSushiPerShare' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + allocPoint: { + name: 'allocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + lastRewardTime: { + name: 'lastRewardTime' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + miniChef: { + name: 'miniChef' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + slpBalance: { + name: 'slpBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Pool_filter: { + kind: 'INPUT_OBJECT' + name: 'Pool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'miniChef' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'miniChef_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'miniChef_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'miniChef_' + type: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewarder_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewarder_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'rewarder_' + type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'allocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'allocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardTime' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'lastRewardTime_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'lastRewardTime_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'accSushiPerShare_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'accSushiPerShare_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'slpBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'slpBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'users_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pool_orderBy: { + name: 'Pool_orderBy' + enumValues: + | 'id' + | 'miniChef' + | 'miniChef__id' + | 'miniChef__sushi' + | 'miniChef__sushiPerSecond' + | 'miniChef__totalAllocPoint' + | 'miniChef__poolCount' + | 'miniChef__timestamp' + | 'miniChef__block' + | 'pair' + | 'rewarder' + | 'rewarder__id' + | 'rewarder__rewardToken' + | 'rewarder__rewardPerSecond' + | 'rewarder__totalAllocPoint' + | 'rewarder__timestamp' + | 'rewarder__block' + | 'allocPoint' + | 'lastRewardTime' + | 'accSushiPerShare' + | 'slpBalance' + | 'users' + | 'userCount' + | 'timestamp' + | 'block' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + miniChef: { + name: 'miniChef' + type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null } + } + miniChefs: { + name: 'miniChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null } + } + } + } + } + nativeRewarderPool: { + name: 'nativeRewarderPool' + type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null } + } + nativeRewarderPools: { + name: 'nativeRewarderPools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'NativeRewarderPool' + ofType: null + } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + rewarders: { + name: 'rewarders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Rewarder: { + kind: 'OBJECT' + name: 'Rewarder' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + rewardPerSecond: { + name: 'rewardPerSecond' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + rewardToken: { + name: 'rewardToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalAllocPoint: { + name: 'totalAllocPoint' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + Rewarder_filter: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardToken_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardToken_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardPerSecond_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardPerSecond_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalAllocPoint_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalAllocPoint_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Rewarder_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Rewarder_orderBy: { + name: 'Rewarder_orderBy' + enumValues: + | 'id' + | 'rewardToken' + | 'rewardPerSecond' + | 'totalAllocPoint' + | 'timestamp' + | 'block' + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + miniChef: { + name: 'miniChef' + type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null } + } + miniChefs: { + name: 'miniChefs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null } + } + } + } + } + nativeRewarderPool: { + name: 'nativeRewarderPool' + type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null } + } + nativeRewarderPools: { + name: 'nativeRewarderPools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'NativeRewarderPool' + ofType: null + } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + rewarder: { + name: 'rewarder' + type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + rewarders: { + name: 'rewarders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Timestamp: unknown + User: { + kind: 'OBJECT' + name: 'User' + fields: { + address: { + name: 'address' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + rewardDebt: { + name: 'rewardDebt' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + User_filter: { + kind: 'INPUT_OBJECT' + name: 'User_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'address_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'address_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'rewardDebt_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'rewardDebt_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + User_orderBy: { + name: 'User_orderBy' + enumValues: + | 'id' + | 'address' + | 'pool' + | 'pool__id' + | 'pool__pair' + | 'pool__allocPoint' + | 'pool__lastRewardTime' + | 'pool__accSushiPerShare' + | 'pool__slpBalance' + | 'pool__userCount' + | 'pool__timestamp' + | 'pool__block' + | 'amount' + | 'rewardDebt' + | 'sushiHarvested' + | 'timestamp' + | 'block' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts index 85c26e2b3b..d8c24ea3ed 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts @@ -1,12 +1,20 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query Bar($hourCnt: Int = 24, $dayCnt: Int = 7, $weekCnt: Int = 1000) {\n hourSnapshots(first: $hourCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n daySnapshots(first: $dayCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n weekSnapshots(first: $weekCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": - TadaDocumentNode<{ weekSnapshots: unknown; daySnapshots: unknown; hourSnapshots: unknown; }, { weekCnt?: number; dayCnt?: number; hourCnt?: number; }, void>; - "\n query Bar($block: Block_height) {\n xsushi(id: \"xSushi\", block: $block) {\n id\n sushiXsushiRatio\n xSushiSushiRatio\n sushiSupply\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": - TadaDocumentNode<{ xsushi: unknown; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; }, void>; + interface setupCache { + '\n query Bar($hourCnt: Int = 24, $dayCnt: Int = 7, $weekCnt: Int = 1000) {\n hourSnapshots(first: $hourCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n daySnapshots(first: $dayCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n weekSnapshots(first: $weekCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n': TadaDocumentNode< + { weekSnapshots: unknown; daySnapshots: unknown; hourSnapshots: unknown }, + { weekCnt?: number; dayCnt?: number; hourCnt?: number }, + void + > + '\n query Bar($block: Block_height) {\n xsushi(id: "xSushi", block: $block) {\n id\n sushiXsushiRatio\n xSushiSushiRatio\n sushiSupply\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n': TadaDocumentNode< + { xsushi: unknown }, + { + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts index f9a797a4c8..34e2221515 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts @@ -10,55 +10,8480 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'sushi-bar'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'sushi-bar' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'DaySnapshot': { kind: 'OBJECT'; name: 'DaySnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'DaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'DaySnapshot_orderBy': { name: 'DaySnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'Fee': { kind: 'OBJECT'; name: 'Fee'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; } }; }; }; - 'FeeSender': { kind: 'OBJECT'; name: 'FeeSender'; fields: { 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeeSent': { name: 'totalFeeSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'FeeSender_filter': { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'fees_'; type: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'FeeSender_orderBy': { name: 'FeeSender_orderBy'; enumValues: 'id' | 'totalFeeSent' | 'fees' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; - 'Fee_filter': { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_'; type: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Fee_orderBy': { name: 'Fee_orderBy'; enumValues: 'id' | 'sender' | 'sender__id' | 'sender__totalFeeSent' | 'sender__createdAtBlock' | 'sender__createdAtTimestamp' | 'sender__modifiedAtBlock' | 'sender__modifiedAtTimestamp' | 'amount' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'HourSnapshot': { kind: 'OBJECT'; name: 'HourSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'HourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'HourSnapshot_orderBy': { name: 'HourSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; } }; }; }; - 'TransactionType': { name: 'TransactionType'; enumValues: 'TRANSFER' | 'MINT' | 'BURN'; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'from' | 'from__id' | 'from__balance' | 'from__createdAtBlock' | 'from__createdAtTimestamp' | 'from__modifiedAtBlock' | 'from__modifiedAtTimestamp' | 'to' | 'to__id' | 'to__balance' | 'to__createdAtBlock' | 'to__createdAtTimestamp' | 'to__modifiedAtBlock' | 'to__modifiedAtTimestamp' | 'amount' | 'type' | 'gasUsed' | 'gasLimit' | 'gasPrice' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'deposits': { name: 'deposits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'withdrawals': { name: 'withdrawals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawals_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'deposits_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'balance' | 'withdrawals' | 'deposits' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; - 'WeekSnapshot': { kind: 'OBJECT'; name: 'WeekSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'WeekSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'WeekSnapshot_orderBy': { name: 'WeekSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'XSushi': { kind: 'OBJECT'; name: 'XSushi'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'aprUpdatedAtTimestamp': { name: 'aprUpdatedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'XSushi_filter': { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'XSushi_orderBy': { name: 'XSushi_orderBy'; enumValues: 'id' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'aprUpdatedAtTimestamp'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bytes: unknown + DaySnapshot: { + kind: 'OBJECT' + name: 'DaySnapshot' + fields: { + apr12m: { + name: 'apr12m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr1m: { + name: 'apr1m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr3m: { + name: 'apr3m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr6m: { + name: 'apr6m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + newFeeAmount: { + name: 'newFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiHarvested: { + name: 'newSushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiStaked: { + name: 'newSushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newTransactions: { + name: 'newTransactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + newXSushiBurned: { + name: 'newXSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newXSushiMinted: { + name: 'newXSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiStaked: { + name: 'sushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiSupply: { + name: 'sushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiXsushiRatio: { + name: 'sushiXsushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalFeeAmount: { + name: 'totalFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + transactionCount: { + name: 'transactionCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + xSushiBurned: { + name: 'xSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiMinted: { + name: 'xSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSupply: { + name: 'xSushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSushiRatio: { + name: 'xSushiSushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + DaySnapshot_filter: { + kind: 'INPUT_OBJECT' + name: 'DaySnapshot_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'DaySnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'DaySnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + DaySnapshot_orderBy: { + name: 'DaySnapshot_orderBy' + enumValues: + | 'id' + | 'date' + | 'userCount' + | 'transactionCount' + | 'sushiSupply' + | 'xSushiSupply' + | 'sushiStaked' + | 'sushiHarvested' + | 'totalFeeAmount' + | 'xSushiBurned' + | 'xSushiMinted' + | 'xSushiSushiRatio' + | 'sushiXsushiRatio' + | 'apr1m' + | 'apr3m' + | 'apr6m' + | 'apr12m' + | 'newTransactions' + | 'newSushiStaked' + | 'newSushiHarvested' + | 'newFeeAmount' + | 'newXSushiBurned' + | 'newXSushiMinted' + } + Fee: { + kind: 'OBJECT' + name: 'Fee' + fields: { + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtBlock: { + name: 'createdAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + sender: { + name: 'sender' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null } + } + } + } + } + FeeSender: { + kind: 'OBJECT' + name: 'FeeSender' + fields: { + createdAtBlock: { + name: 'createdAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + fees: { + name: 'fees' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null } + } + } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + modifiedAtBlock: { + name: 'modifiedAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + modifiedAtTimestamp: { + name: 'modifiedAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalFeeSent: { + name: 'totalFeeSent' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + FeeSender_filter: { + kind: 'INPUT_OBJECT' + name: 'FeeSender_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeSent' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeSent_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeSent_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'fees_' + type: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'FeeSender_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'FeeSender_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + FeeSender_orderBy: { + name: 'FeeSender_orderBy' + enumValues: + | 'id' + | 'totalFeeSent' + | 'fees' + | 'createdAtBlock' + | 'createdAtTimestamp' + | 'modifiedAtBlock' + | 'modifiedAtTimestamp' + } + Fee_filter: { + kind: 'INPUT_OBJECT' + name: 'Fee_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'sender_' + type: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Fee_orderBy: { + name: 'Fee_orderBy' + enumValues: + | 'id' + | 'sender' + | 'sender__id' + | 'sender__totalFeeSent' + | 'sender__createdAtBlock' + | 'sender__createdAtTimestamp' + | 'sender__modifiedAtBlock' + | 'sender__modifiedAtTimestamp' + | 'amount' + | 'createdAtBlock' + | 'createdAtTimestamp' + } + HourSnapshot: { + kind: 'OBJECT' + name: 'HourSnapshot' + fields: { + apr12m: { + name: 'apr12m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr1m: { + name: 'apr1m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr3m: { + name: 'apr3m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr6m: { + name: 'apr6m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + newFeeAmount: { + name: 'newFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiHarvested: { + name: 'newSushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiStaked: { + name: 'newSushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newTransactions: { + name: 'newTransactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + newXSushiBurned: { + name: 'newXSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newXSushiMinted: { + name: 'newXSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiStaked: { + name: 'sushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiSupply: { + name: 'sushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiXsushiRatio: { + name: 'sushiXsushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalFeeAmount: { + name: 'totalFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + transactionCount: { + name: 'transactionCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + xSushiBurned: { + name: 'xSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiMinted: { + name: 'xSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSupply: { + name: 'xSushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSushiRatio: { + name: 'xSushiSushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + HourSnapshot_filter: { + kind: 'INPUT_OBJECT' + name: 'HourSnapshot_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'HourSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'HourSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + HourSnapshot_orderBy: { + name: 'HourSnapshot_orderBy' + enumValues: + | 'id' + | 'date' + | 'userCount' + | 'transactionCount' + | 'sushiSupply' + | 'xSushiSupply' + | 'sushiStaked' + | 'sushiHarvested' + | 'totalFeeAmount' + | 'xSushiBurned' + | 'xSushiMinted' + | 'xSushiSushiRatio' + | 'sushiXsushiRatio' + | 'apr1m' + | 'apr3m' + | 'apr6m' + | 'apr12m' + | 'newTransactions' + | 'newSushiStaked' + | 'newSushiHarvested' + | 'newFeeAmount' + | 'newXSushiBurned' + | 'newXSushiMinted' + } + ID: unknown + Int: unknown + Int8: unknown + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + daySnapshot: { + name: 'daySnapshot' + type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null } + } + daySnapshots: { + name: 'daySnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null } + } + } + } + } + fee: { + name: 'fee' + type: { kind: 'OBJECT'; name: 'Fee'; ofType: null } + } + feeSender: { + name: 'feeSender' + type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null } + } + feeSenders: { + name: 'feeSenders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null } + } + } + } + } + fees: { + name: 'fees' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null } + } + } + } + } + hourSnapshot: { + name: 'hourSnapshot' + type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null } + } + hourSnapshots: { + name: 'hourSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + weekSnapshot: { + name: 'weekSnapshot' + type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null } + } + weekSnapshots: { + name: 'weekSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null } + } + } + } + } + xsushi: { + name: 'xsushi' + type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null } + } + xsushis: { + name: 'xsushis' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null } + } + } + } + } + } + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + daySnapshot: { + name: 'daySnapshot' + type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null } + } + daySnapshots: { + name: 'daySnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null } + } + } + } + } + fee: { + name: 'fee' + type: { kind: 'OBJECT'; name: 'Fee'; ofType: null } + } + feeSender: { + name: 'feeSender' + type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null } + } + feeSenders: { + name: 'feeSenders' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null } + } + } + } + } + fees: { + name: 'fees' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null } + } + } + } + } + hourSnapshot: { + name: 'hourSnapshot' + type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null } + } + hourSnapshots: { + name: 'hourSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + weekSnapshot: { + name: 'weekSnapshot' + type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null } + } + weekSnapshots: { + name: 'weekSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null } + } + } + } + } + xsushi: { + name: 'xsushi' + type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null } + } + xsushis: { + name: 'xsushis' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null } + } + } + } + } + } + } + Timestamp: unknown + Transaction: { + kind: 'OBJECT' + name: 'Transaction' + fields: { + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + createdAtBlock: { + name: 'createdAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + from: { + name: 'from' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + gasLimit: { + name: 'gasLimit' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + gasPrice: { + name: 'gasPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + gasUsed: { + name: 'gasUsed' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + to: { + name: 'to' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + type: { + name: 'type' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null } + } + } + } + } + TransactionType: { + name: 'TransactionType' + enumValues: 'TRANSFER' | 'MINT' | 'BURN' + } + Transaction_filter: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'from' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'from_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'from_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'from_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'to' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'to_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type' + type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null } + defaultValue: null + }, + { + name: 'type_not' + type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null } + defaultValue: null + }, + { + name: 'type_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'type_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasLimit' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasLimit_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasLimit_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Transaction_orderBy: { + name: 'Transaction_orderBy' + enumValues: + | 'id' + | 'from' + | 'from__id' + | 'from__balance' + | 'from__createdAtBlock' + | 'from__createdAtTimestamp' + | 'from__modifiedAtBlock' + | 'from__modifiedAtTimestamp' + | 'to' + | 'to__id' + | 'to__balance' + | 'to__createdAtBlock' + | 'to__createdAtTimestamp' + | 'to__modifiedAtBlock' + | 'to__modifiedAtTimestamp' + | 'amount' + | 'type' + | 'gasUsed' + | 'gasLimit' + | 'gasPrice' + | 'createdAtBlock' + | 'createdAtTimestamp' + } + User: { + kind: 'OBJECT' + name: 'User' + fields: { + balance: { + name: 'balance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtBlock: { + name: 'createdAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + deposits: { + name: 'deposits' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + modifiedAtBlock: { + name: 'modifiedAtBlock' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + modifiedAtTimestamp: { + name: 'modifiedAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + withdrawals: { + name: 'withdrawals' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + } + } + User_filter: { + kind: 'INPUT_OBJECT' + name: 'User_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balance' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'balance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'balance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawals_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'deposits_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'createdAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtBlock' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtBlock_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtBlock_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'modifiedAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + User_orderBy: { + name: 'User_orderBy' + enumValues: + | 'id' + | 'balance' + | 'withdrawals' + | 'deposits' + | 'createdAtBlock' + | 'createdAtTimestamp' + | 'modifiedAtBlock' + | 'modifiedAtTimestamp' + } + WeekSnapshot: { + kind: 'OBJECT' + name: 'WeekSnapshot' + fields: { + apr12m: { + name: 'apr12m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr1m: { + name: 'apr1m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr3m: { + name: 'apr3m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr6m: { + name: 'apr6m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + newFeeAmount: { + name: 'newFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiHarvested: { + name: 'newSushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newSushiStaked: { + name: 'newSushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newTransactions: { + name: 'newTransactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + newXSushiBurned: { + name: 'newXSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + newXSushiMinted: { + name: 'newXSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiStaked: { + name: 'sushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiSupply: { + name: 'sushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiXsushiRatio: { + name: 'sushiXsushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalFeeAmount: { + name: 'totalFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + transactionCount: { + name: 'transactionCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + xSushiBurned: { + name: 'xSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiMinted: { + name: 'xSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSupply: { + name: 'xSushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSushiRatio: { + name: 'xSushiSushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + WeekSnapshot_filter: { + kind: 'INPUT_OBJECT' + name: 'WeekSnapshot_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'newTransactions_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newTransactions_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newSushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newSushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'newXSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'newXSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'WeekSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'WeekSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + WeekSnapshot_orderBy: { + name: 'WeekSnapshot_orderBy' + enumValues: + | 'id' + | 'date' + | 'userCount' + | 'transactionCount' + | 'sushiSupply' + | 'xSushiSupply' + | 'sushiStaked' + | 'sushiHarvested' + | 'totalFeeAmount' + | 'xSushiBurned' + | 'xSushiMinted' + | 'xSushiSushiRatio' + | 'sushiXsushiRatio' + | 'apr1m' + | 'apr3m' + | 'apr6m' + | 'apr12m' + | 'newTransactions' + | 'newSushiStaked' + | 'newSushiHarvested' + | 'newFeeAmount' + | 'newXSushiBurned' + | 'newXSushiMinted' + } + XSushi: { + kind: 'OBJECT' + name: 'XSushi' + fields: { + apr12m: { + name: 'apr12m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr1m: { + name: 'apr1m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr3m: { + name: 'apr3m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + apr6m: { + name: 'apr6m' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + aprUpdatedAtTimestamp: { + name: 'aprUpdatedAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + sushiHarvested: { + name: 'sushiHarvested' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiStaked: { + name: 'sushiStaked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiSupply: { + name: 'sushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + sushiXsushiRatio: { + name: 'sushiXsushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalFeeAmount: { + name: 'totalFeeAmount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + transactionCount: { + name: 'transactionCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + userCount: { + name: 'userCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + xSushiBurned: { + name: 'xSushiBurned' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiMinted: { + name: 'xSushiMinted' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSupply: { + name: 'xSushiSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + xSushiSushiRatio: { + name: 'xSushiSushiRatio' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + XSushi_filter: { + kind: 'INPUT_OBJECT' + name: 'XSushi_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'userCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'userCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'transactionCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transactionCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiStaked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiStaked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiHarvested_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiHarvested_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeeAmount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeeAmount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiBurned_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiBurned_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiMinted_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiMinted_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'xSushiSushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sushiXsushiRatio_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr1m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr1m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr3m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr3m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr6m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr6m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'apr12m_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'apr12m_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'aprUpdatedAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'XSushi_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'XSushi_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + XSushi_orderBy: { + name: 'XSushi_orderBy' + enumValues: + | 'id' + | 'userCount' + | 'transactionCount' + | 'sushiSupply' + | 'xSushiSupply' + | 'sushiStaked' + | 'sushiHarvested' + | 'totalFeeAmount' + | 'xSushiBurned' + | 'xSushiMinted' + | 'xSushiSushiRatio' + | 'sushiXsushiRatio' + | 'apr1m' + | 'apr3m' + | 'apr6m' + | 'apr12m' + | 'aprUpdatedAtTimestamp' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts index 6d06f157bd..6c9c5f9138 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts @@ -1,28 +1,18552 @@ /* eslint-disable */ /* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; +import type { TadaDocumentNode, $tada } from 'gql.tada' declare module 'gql.tada' { - interface setupCache { - "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "needsComplete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Factories {\n factories: uniswapFactories(first: 1) {\n id\n totalLiquidityUSD\n untrackedVolumeUSD\n totalVolumeUSD\n poolCount: pairCount\n }\n }\n": - TadaDocumentNode<{ factories: { poolCount: number; totalVolumeUSD: string; untrackedVolumeUSD: string; totalLiquidityUSD: string; id: `0x${string}`; }[]; }, {}, void>; - "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance: liquidityTokenBalance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": - TadaDocumentNode<{ liquidityPositions: { user: { id: `0x${string}`; }; pair: { id: `0x${string}`; }; balance: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: any; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "user" | "liquidityTokenBalance" | "user__id" | "user__usdSwapped"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ mints: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: any; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n fragment PoolFields on Pair @_unmask {\n id\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n createdAtBlockNumber\n createdAtTimestamp\n reserve0\n reserve1\n totalSupply\n reserveUSD\n reserveETH\n trackedReserveETH\n # token0Price\n # token1Price\n volumeUSD\n volumeToken0\n volumeToken1\n txCount\n }\n": - TadaDocumentNode<{ txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }, {}, { fragment: "PoolFields"; on: "Pair"; masked: false; }>; - "\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pool: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; - "\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pools: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "burns" | "createdAtTimestamp" | "token0" | "token1" | "reserve0" | "reserve1" | "totalSupply" | "reserveETH" | "reserveUSD" | "trackedReserveETH" | "token0Price" | "token1Price" | "volumeToken0" | "volumeToken1" | "volumeUSD" | "untrackedVolumeUSD" | "txCount" | "createdAtBlockNumber" | "liquidityProviderCount" | "mints" | "swaps" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__tradeVolume" | "token0__tradeVolumeUSD" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__totalLiquidity" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__tradeVolume" | "token1__tradeVolumeUSD" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__totalLiquidity" | "token1__derivedETH" | "pairHourData" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "from" | "amount0In" | "amount1In" | "amount0Out" | "amount1Out"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n symbol\n decimals\n tradeVolumeUSD\n totalLiquidity\n }\n }\n": - TadaDocumentNode<{ tokens: { totalLiquidity: string; tradeVolumeUSD: string; decimals: string; symbol: string; name: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "totalSupply" | "untrackedVolumeUSD" | "txCount" | "decimals" | "tradeVolume" | "tradeVolumeUSD" | "totalLiquidity" | "derivedETH" | "tokenDayData" | "pairDayDataBase" | "pairDayDataQuote" | "pairBase" | "pairQuote"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n }\n }\n }\n": - TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "mints" | "swaps" | "blockNumber"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; + interface setupCache { + '\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n': TadaDocumentNode< + { + burns: { + transaction: { + createdAtBlock: string + createdAtTimestamp: string + id: `0x${string}` + } + logIndex: string + amountUSD: string + amount1: string + amount0: string + liquidity: string + sender: `0x${string}` + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: any + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: any + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: any + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'timestamp' + | 'sender' + | 'liquidity' + | 'amount0' + | 'amount1' + | 'amountUSD' + | 'logIndex' + | 'transaction' + | 'pair' + | 'to' + | 'needsComplete' + | 'feeTo' + | 'feeLiquidity' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query Factories {\n factories: uniswapFactories(first: 1) {\n id\n totalLiquidityUSD\n untrackedVolumeUSD\n totalVolumeUSD\n poolCount: pairCount\n }\n }\n': TadaDocumentNode< + { + factories: { + poolCount: number + totalVolumeUSD: string + untrackedVolumeUSD: string + totalLiquidityUSD: string + id: `0x${string}` + }[] + }, + {}, + void + > + '\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance: liquidityTokenBalance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n': TadaDocumentNode< + { + liquidityPositions: { + user: { id: `0x${string}` } + pair: { id: `0x${string}` } + balance: string + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: any + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: any + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: any + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: any + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'user' + | 'liquidityTokenBalance' + | 'user__id' + | 'user__usdSwapped' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n': TadaDocumentNode< + { + mints: { + transaction: { + createdAtBlock: string + createdAtTimestamp: string + id: `0x${string}` + } + logIndex: string + amountUSD: string + amount1: string + amount0: string + liquidity: string + sender: `0x${string}` + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: any + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: any + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: any + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'timestamp' + | 'sender' + | 'liquidity' + | 'amount0' + | 'amount1' + | 'amountUSD' + | 'logIndex' + | 'transaction' + | 'pair' + | 'to' + | 'feeTo' + | 'feeLiquidity' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n fragment PoolFields on Pair @_unmask {\n id\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n createdAtBlockNumber\n createdAtTimestamp\n reserve0\n reserve1\n totalSupply\n reserveUSD\n reserveETH\n trackedReserveETH\n # token0Price\n # token1Price\n volumeUSD\n volumeToken0\n volumeToken1\n txCount\n }\n': TadaDocumentNode< + { + txCount: string + volumeToken1: string + volumeToken0: string + volumeUSD: string + trackedReserveETH: string + reserveETH: string + reserveUSD: string + totalSupply: string + reserve1: string + reserve0: string + createdAtTimestamp: string + createdAtBlockNumber: string + token1: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + token0: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + id: `0x${string}` + }, + {}, + { fragment: 'PoolFields'; on: 'Pair'; masked: false } + > + '\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n': TadaDocumentNode< + { + pool: { + txCount: string + volumeToken1: string + volumeToken0: string + volumeUSD: string + trackedReserveETH: string + reserveETH: string + reserveUSD: string + totalSupply: string + reserve1: string + reserve0: string + createdAtTimestamp: string + createdAtBlockNumber: string + token1: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + token0: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + id: `0x${string}` + } + }, + { + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + id: string + }, + void + > + '\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n': TadaDocumentNode< + { + pools: { + txCount: string + volumeToken1: string + volumeToken0: string + volumeUSD: string + trackedReserveETH: string + reserveETH: string + reserveUSD: string + totalSupply: string + reserve1: string + reserve0: string + createdAtTimestamp: string + createdAtBlockNumber: string + token1: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + token0: { + symbol: string + decimals: string + id: `0x${string}` + name: string + } + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'burns' + | 'createdAtTimestamp' + | 'token0' + | 'token1' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'reserveETH' + | 'reserveUSD' + | 'trackedReserveETH' + | 'token0Price' + | 'token1Price' + | 'volumeToken0' + | 'volumeToken1' + | 'volumeUSD' + | 'untrackedVolumeUSD' + | 'txCount' + | 'createdAtBlockNumber' + | 'liquidityProviderCount' + | 'mints' + | 'swaps' + | 'liquidityPositions' + | 'token0__id' + | 'token0__symbol' + | 'token0__name' + | 'token0__decimals' + | 'token0__totalSupply' + | 'token0__tradeVolume' + | 'token0__tradeVolumeUSD' + | 'token0__untrackedVolumeUSD' + | 'token0__txCount' + | 'token0__totalLiquidity' + | 'token0__derivedETH' + | 'token1__id' + | 'token1__symbol' + | 'token1__name' + | 'token1__decimals' + | 'token1__totalSupply' + | 'token1__tradeVolume' + | 'token1__tradeVolumeUSD' + | 'token1__untrackedVolumeUSD' + | 'token1__txCount' + | 'token1__totalLiquidity' + | 'token1__derivedETH' + | 'pairHourData' + | 'liquidityPositionSnapshots' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n': TadaDocumentNode< + { + swaps: { + transaction: { + createdAtBlock: string + createdAtTimestamp: string + id: `0x${string}` + } + logIndex: string + amountUSD: string + amount1Out: string + amount0Out: string + amount1In: string + amount0In: string + to: `0x${string}` + sender: `0x${string}` + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: any + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: any + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'timestamp' + | 'sender' + | 'amountUSD' + | 'logIndex' + | 'transaction' + | 'pair' + | 'to' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'from' + | 'amount0In' + | 'amount1In' + | 'amount0Out' + | 'amount1Out' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n symbol\n decimals\n tradeVolumeUSD\n totalLiquidity\n }\n }\n': TadaDocumentNode< + { + tokens: { + totalLiquidity: string + tradeVolumeUSD: string + decimals: string + symbol: string + name: string + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'symbol' + | 'name' + | 'id' + | 'totalSupply' + | 'untrackedVolumeUSD' + | 'txCount' + | 'decimals' + | 'tradeVolume' + | 'tradeVolumeUSD' + | 'totalLiquidity' + | 'derivedETH' + | 'tokenDayData' + | 'pairDayDataBase' + | 'pairDayDataQuote' + | 'pairBase' + | 'pairQuote' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > + '\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n }\n }\n }\n': TadaDocumentNode< + { + transactions: { + swaps: { + logIndex: string + amountUSD: string + amount1Out: string + amount0Out: string + amount1In: string + amount0In: string + to: `0x${string}` + sender: `0x${string}` + id: `0x${string}` + }[] + burns: { + logIndex: string + amountUSD: string + amount1: string + amount0: string + liquidity: string + sender: `0x${string}` + id: `0x${string}` + }[] + mints: { + logIndex: string + amountUSD: string + amount1: string + amount0: string + liquidity: string + sender: `0x${string}` + id: `0x${string}` + }[] + createdAtBlock: string + createdAtTimestamp: string + id: `0x${string}` + }[] + }, + { + where?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1Out_not_in?: string[] + amount1Out_in?: string[] + amount1Out_lte?: string + amount1Out_gte?: string + amount1Out_lt?: string + amount1Out_gt?: string + amount1Out_not?: string + amount1Out?: string + amount0Out_not_in?: string[] + amount0Out_in?: string[] + amount0Out_lte?: string + amount0Out_gte?: string + amount0Out_lt?: string + amount0Out_gt?: string + amount0Out_not?: string + amount0Out?: string + amount1In_not_in?: string[] + amount1In_in?: string[] + amount1In_lte?: string + amount1In_gte?: string + amount1In_lt?: string + amount1In_gt?: string + amount1In_not?: string + amount1In?: string + amount0In_not_in?: string[] + amount0In_in?: string[] + amount0In_lte?: string + amount0In_gte?: string + amount0In_lt?: string + amount0In_gt?: string + amount0In_not?: string + amount0In?: string + from_not_contains?: `0x${string}` + from_contains?: `0x${string}` + from_not_in?: `0x${string}`[] + from_in?: `0x${string}`[] + from_lte?: `0x${string}` + from_gte?: `0x${string}` + from_lt?: `0x${string}` + from_gt?: `0x${string}` + from_not?: `0x${string}` + from?: `0x${string}` + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + pair_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + swaps_?: any + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositionSnapshots_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + liquidityTokenTotalSupply_not_in?: string[] + liquidityTokenTotalSupply_in?: string[] + liquidityTokenTotalSupply_lte?: string + liquidityTokenTotalSupply_gte?: string + liquidityTokenTotalSupply_lt?: string + liquidityTokenTotalSupply_gt?: string + liquidityTokenTotalSupply_not?: string + liquidityTokenTotalSupply?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1PriceUSD_not_in?: string[] + token1PriceUSD_in?: string[] + token1PriceUSD_lte?: string + token1PriceUSD_gte?: string + token1PriceUSD_lt?: string + token1PriceUSD_gt?: string + token1PriceUSD_not?: string + token1PriceUSD?: string + token0PriceUSD_not_in?: string[] + token0PriceUSD_in?: string[] + token0PriceUSD_lte?: string + token0PriceUSD_gte?: string + token0PriceUSD_lt?: string + token0PriceUSD_gt?: string + token0PriceUSD_not?: string + token0PriceUSD?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + usdSwapped_not_in?: string[] + usdSwapped_in?: string[] + usdSwapped_lte?: string + usdSwapped_gte?: string + usdSwapped_lt?: string + usdSwapped_gt?: string + usdSwapped_not?: string + usdSwapped?: string + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + block_not_in?: number[] + block_in?: number[] + block_lte?: number + block_gte?: number + block_lt?: number + block_gt?: number + block_not?: number + block?: number + timestamp_not_in?: number[] + timestamp_in?: number[] + timestamp_lte?: number + timestamp_gte?: number + timestamp_lt?: number + timestamp_gt?: number + timestamp_not?: number + timestamp?: number + liquidityPosition_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPosition_not_ends_with_nocase?: string + liquidityPosition_not_ends_with?: string + liquidityPosition_ends_with_nocase?: string + liquidityPosition_ends_with?: string + liquidityPosition_not_starts_with_nocase?: string + liquidityPosition_not_starts_with?: string + liquidityPosition_starts_with_nocase?: string + liquidityPosition_starts_with?: string + liquidityPosition_not_contains_nocase?: string + liquidityPosition_not_contains?: string + liquidityPosition_contains_nocase?: string + liquidityPosition_contains?: string + liquidityPosition_not_in?: string[] + liquidityPosition_in?: string[] + liquidityPosition_lte?: string + liquidityPosition_gte?: string + liquidityPosition_lt?: string + liquidityPosition_gt?: string + liquidityPosition_not?: string + liquidityPosition?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityPositions_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + liquidityTokenBalance_not_in?: string[] + liquidityTokenBalance_in?: string[] + liquidityTokenBalance_lte?: string + liquidityTokenBalance_gte?: string + liquidityTokenBalance_lt?: string + liquidityTokenBalance_gt?: string + liquidityTokenBalance_not?: string + liquidityTokenBalance?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + user_?: any + user_not_ends_with_nocase?: string + user_not_ends_with?: string + user_ends_with_nocase?: string + user_ends_with?: string + user_not_starts_with_nocase?: string + user_not_starts_with?: string + user_starts_with_nocase?: string + user_starts_with?: string + user_not_contains_nocase?: string + user_not_contains?: string + user_contains_nocase?: string + user_contains?: string + user_not_in?: string[] + user_in?: string[] + user_lte?: string + user_gte?: string + user_lt?: string + user_gt?: string + user_not?: string + user?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairHourData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + hourlyTxns_not_in?: string[] + hourlyTxns_in?: string[] + hourlyTxns_lte?: string + hourlyTxns_gte?: string + hourlyTxns_lt?: string + hourlyTxns_gt?: string + hourlyTxns_not?: string + hourlyTxns?: string + hourlyVolumeUSD_not_in?: string[] + hourlyVolumeUSD_in?: string[] + hourlyVolumeUSD_lte?: string + hourlyVolumeUSD_gte?: string + hourlyVolumeUSD_lt?: string + hourlyVolumeUSD_gt?: string + hourlyVolumeUSD_not?: string + hourlyVolumeUSD?: string + hourlyVolumeToken1_not_in?: string[] + hourlyVolumeToken1_in?: string[] + hourlyVolumeToken1_lte?: string + hourlyVolumeToken1_gte?: string + hourlyVolumeToken1_lt?: string + hourlyVolumeToken1_gt?: string + hourlyVolumeToken1_not?: string + hourlyVolumeToken1?: string + hourlyVolumeToken0_not_in?: string[] + hourlyVolumeToken0_in?: string[] + hourlyVolumeToken0_lte?: string + hourlyVolumeToken0_gte?: string + hourlyVolumeToken0_lt?: string + hourlyVolumeToken0_gt?: string + hourlyVolumeToken0_not?: string + hourlyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + hourStartUnix_not_in?: number[] + hourStartUnix_in?: number[] + hourStartUnix_lte?: number + hourStartUnix_gte?: number + hourStartUnix_lt?: number + hourStartUnix_gt?: number + hourStartUnix_not?: number + hourStartUnix?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + liquidityProviderCount_not_in?: string[] + liquidityProviderCount_in?: string[] + liquidityProviderCount_lte?: string + liquidityProviderCount_gte?: string + liquidityProviderCount_lt?: string + liquidityProviderCount_gt?: string + liquidityProviderCount_not?: string + liquidityProviderCount?: string + createdAtBlockNumber_not_in?: string[] + createdAtBlockNumber_in?: string[] + createdAtBlockNumber_lte?: string + createdAtBlockNumber_gte?: string + createdAtBlockNumber_lt?: string + createdAtBlockNumber_gt?: string + createdAtBlockNumber_not?: string + createdAtBlockNumber?: string + createdAtTimestamp_not_in?: string[] + createdAtTimestamp_in?: string[] + createdAtTimestamp_lte?: string + createdAtTimestamp_gte?: string + createdAtTimestamp_lt?: string + createdAtTimestamp_gt?: string + createdAtTimestamp_not?: string + createdAtTimestamp?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + volumeUSD_not_in?: string[] + volumeUSD_in?: string[] + volumeUSD_lte?: string + volumeUSD_gte?: string + volumeUSD_lt?: string + volumeUSD_gt?: string + volumeUSD_not?: string + volumeUSD?: string + volumeToken1_not_in?: string[] + volumeToken1_in?: string[] + volumeToken1_lte?: string + volumeToken1_gte?: string + volumeToken1_lt?: string + volumeToken1_gt?: string + volumeToken1_not?: string + volumeToken1?: string + volumeToken0_not_in?: string[] + volumeToken0_in?: string[] + volumeToken0_lte?: string + volumeToken0_gte?: string + volumeToken0_lt?: string + volumeToken0_gt?: string + volumeToken0_not?: string + volumeToken0?: string + token1Price_not_in?: string[] + token1Price_in?: string[] + token1Price_lte?: string + token1Price_gte?: string + token1Price_lt?: string + token1Price_gt?: string + token1Price_not?: string + token1Price?: string + token0Price_not_in?: string[] + token0Price_in?: string[] + token0Price_lte?: string + token0Price_gte?: string + token0Price_lt?: string + token0Price_gt?: string + token0Price_not?: string + token0Price?: string + trackedReserveETH_not_in?: string[] + trackedReserveETH_in?: string[] + trackedReserveETH_lte?: string + trackedReserveETH_gte?: string + trackedReserveETH_lt?: string + trackedReserveETH_gt?: string + trackedReserveETH_not?: string + trackedReserveETH?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + reserveETH_not_in?: string[] + reserveETH_in?: string[] + reserveETH_lte?: string + reserveETH_gte?: string + reserveETH_lt?: string + reserveETH_gt?: string + reserveETH_not?: string + reserveETH?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + pairQuote_?: any + pairBase_?: any + pairDayDataQuote_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pairDayDataBase_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeToken1_not_in?: string[] + dailyVolumeToken1_in?: string[] + dailyVolumeToken1_lte?: string + dailyVolumeToken1_gte?: string + dailyVolumeToken1_lt?: string + dailyVolumeToken1_gt?: string + dailyVolumeToken1_not?: string + dailyVolumeToken1?: string + dailyVolumeToken0_not_in?: string[] + dailyVolumeToken0_in?: string[] + dailyVolumeToken0_lte?: string + dailyVolumeToken0_gte?: string + dailyVolumeToken0_lt?: string + dailyVolumeToken0_gt?: string + dailyVolumeToken0_not?: string + dailyVolumeToken0?: string + reserveUSD_not_in?: string[] + reserveUSD_in?: string[] + reserveUSD_lte?: string + reserveUSD_gte?: string + reserveUSD_lt?: string + reserveUSD_gt?: string + reserveUSD_not?: string + reserveUSD?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + reserve1_not_in?: string[] + reserve1_in?: string[] + reserve1_lte?: string + reserve1_gte?: string + reserve1_lt?: string + reserve1_gt?: string + reserve1_not?: string + reserve1?: string + reserve0_not_in?: string[] + reserve0_in?: string[] + reserve0_lte?: string + reserve0_gte?: string + reserve0_lt?: string + reserve0_gt?: string + reserve0_not?: string + reserve0?: string + token1_?: any + token1_not_ends_with_nocase?: string + token1_not_ends_with?: string + token1_ends_with_nocase?: string + token1_ends_with?: string + token1_not_starts_with_nocase?: string + token1_not_starts_with?: string + token1_starts_with_nocase?: string + token1_starts_with?: string + token1_not_contains_nocase?: string + token1_not_contains?: string + token1_contains_nocase?: string + token1_contains?: string + token1_not_in?: string[] + token1_in?: string[] + token1_lte?: string + token1_gte?: string + token1_lt?: string + token1_gt?: string + token1_not?: string + token1?: string + token0_?: any + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + pairAddress_not_contains?: `0x${string}` + pairAddress_contains?: `0x${string}` + pairAddress_not_in?: `0x${string}`[] + pairAddress_in?: `0x${string}`[] + pairAddress_lte?: `0x${string}` + pairAddress_gte?: `0x${string}` + pairAddress_lt?: `0x${string}` + pairAddress_gt?: `0x${string}` + pairAddress_not?: `0x${string}` + pairAddress?: `0x${string}` + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + tokenDayData_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + priceUSD_not_in?: string[] + priceUSD_in?: string[] + priceUSD_lte?: string + priceUSD_gte?: string + priceUSD_lt?: string + priceUSD_gt?: string + priceUSD_not?: string + priceUSD?: string + totalLiquidityUSD_not_in?: string[] + totalLiquidityUSD_in?: string[] + totalLiquidityUSD_lte?: string + totalLiquidityUSD_gte?: string + totalLiquidityUSD_lt?: string + totalLiquidityUSD_gt?: string + totalLiquidityUSD_not?: string + totalLiquidityUSD?: string + totalLiquidityETH_not_in?: string[] + totalLiquidityETH_in?: string[] + totalLiquidityETH_lte?: string + totalLiquidityETH_gte?: string + totalLiquidityETH_lt?: string + totalLiquidityETH_gt?: string + totalLiquidityETH_not?: string + totalLiquidityETH?: string + totalLiquidityToken_not_in?: string[] + totalLiquidityToken_in?: string[] + totalLiquidityToken_lte?: string + totalLiquidityToken_gte?: string + totalLiquidityToken_lt?: string + totalLiquidityToken_gt?: string + totalLiquidityToken_not?: string + totalLiquidityToken?: string + dailyTxns_not_in?: string[] + dailyTxns_in?: string[] + dailyTxns_lte?: string + dailyTxns_gte?: string + dailyTxns_lt?: string + dailyTxns_gt?: string + dailyTxns_not?: string + dailyTxns?: string + dailyVolumeUSD_not_in?: string[] + dailyVolumeUSD_in?: string[] + dailyVolumeUSD_lte?: string + dailyVolumeUSD_gte?: string + dailyVolumeUSD_lt?: string + dailyVolumeUSD_gt?: string + dailyVolumeUSD_not?: string + dailyVolumeUSD?: string + dailyVolumeETH_not_in?: string[] + dailyVolumeETH_in?: string[] + dailyVolumeETH_lte?: string + dailyVolumeETH_gte?: string + dailyVolumeETH_lt?: string + dailyVolumeETH_gt?: string + dailyVolumeETH_not?: string + dailyVolumeETH?: string + dailyVolumeToken_not_in?: string[] + dailyVolumeToken_in?: string[] + dailyVolumeToken_lte?: string + dailyVolumeToken_gte?: string + dailyVolumeToken_lt?: string + dailyVolumeToken_gt?: string + dailyVolumeToken_not?: string + dailyVolumeToken?: string + token_?: any + token_not_ends_with_nocase?: string + token_not_ends_with?: string + token_ends_with_nocase?: string + token_ends_with?: string + token_not_starts_with_nocase?: string + token_not_starts_with?: string + token_starts_with_nocase?: string + token_starts_with?: string + token_not_contains_nocase?: string + token_not_contains?: string + token_contains_nocase?: string + token_contains?: string + token_not_in?: string[] + token_in?: string[] + token_lte?: string + token_gte?: string + token_lt?: string + token_gt?: string + token_not?: string + token?: string + date_not_in?: number[] + date_in?: number[] + date_lte?: number + date_gte?: number + date_lt?: number + date_gt?: number + date_not?: number + date?: number + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + derivedETH_not_in?: string[] + derivedETH_in?: string[] + derivedETH_lte?: string + derivedETH_gte?: string + derivedETH_lt?: string + derivedETH_gt?: string + derivedETH_not?: string + derivedETH?: string + totalLiquidity_not_in?: string[] + totalLiquidity_in?: string[] + totalLiquidity_lte?: string + totalLiquidity_gte?: string + totalLiquidity_lt?: string + totalLiquidity_gt?: string + totalLiquidity_not?: string + totalLiquidity?: string + txCount_not_in?: string[] + txCount_in?: string[] + txCount_lte?: string + txCount_gte?: string + txCount_lt?: string + txCount_gt?: string + txCount_not?: string + txCount?: string + untrackedVolumeUSD_not_in?: string[] + untrackedVolumeUSD_in?: string[] + untrackedVolumeUSD_lte?: string + untrackedVolumeUSD_gte?: string + untrackedVolumeUSD_lt?: string + untrackedVolumeUSD_gt?: string + untrackedVolumeUSD_not?: string + untrackedVolumeUSD?: string + tradeVolumeUSD_not_in?: string[] + tradeVolumeUSD_in?: string[] + tradeVolumeUSD_lte?: string + tradeVolumeUSD_gte?: string + tradeVolumeUSD_lt?: string + tradeVolumeUSD_gt?: string + tradeVolumeUSD_not?: string + tradeVolumeUSD?: string + tradeVolume_not_in?: string[] + tradeVolume_in?: string[] + tradeVolume_lte?: string + tradeVolume_gte?: string + tradeVolume_lt?: string + tradeVolume_gt?: string + tradeVolume_not?: string + tradeVolume?: string + totalSupply_not_in?: string[] + totalSupply_in?: string[] + totalSupply_lte?: string + totalSupply_gte?: string + totalSupply_lt?: string + totalSupply_gt?: string + totalSupply_not?: string + totalSupply?: string + decimals_not_in?: string[] + decimals_in?: string[] + decimals_lte?: string + decimals_gte?: string + decimals_lt?: string + decimals_gt?: string + decimals_not?: string + decimals?: string + name_not_ends_with_nocase?: string + name_not_ends_with?: string + name_ends_with_nocase?: string + name_ends_with?: string + name_not_starts_with_nocase?: string + name_not_starts_with?: string + name_starts_with_nocase?: string + name_starts_with?: string + name_not_contains_nocase?: string + name_not_contains?: string + name_contains_nocase?: string + name_contains?: string + name_not_in?: string[] + name_in?: string[] + name_lte?: string + name_gte?: string + name_lt?: string + name_gt?: string + name_not?: string + name?: string + symbol_not_ends_with_nocase?: string + symbol_not_ends_with?: string + symbol_ends_with_nocase?: string + symbol_ends_with?: string + symbol_not_starts_with_nocase?: string + symbol_not_starts_with?: string + symbol_starts_with_nocase?: string + symbol_starts_with?: string + symbol_not_contains_nocase?: string + symbol_not_contains?: string + symbol_contains_nocase?: string + symbol_contains?: string + symbol_not_in?: string[] + symbol_in?: string[] + symbol_lte?: string + symbol_gte?: string + symbol_lt?: string + symbol_gt?: string + symbol_not?: string + symbol?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + token0_not_ends_with_nocase?: string + token0_not_ends_with?: string + token0_ends_with_nocase?: string + token0_ends_with?: string + token0_not_starts_with_nocase?: string + token0_not_starts_with?: string + token0_starts_with_nocase?: string + token0_starts_with?: string + token0_not_contains_nocase?: string + token0_not_contains?: string + token0_contains_nocase?: string + token0_contains?: string + token0_not_in?: string[] + token0_in?: string[] + token0_lte?: string + token0_gte?: string + token0_lt?: string + token0_gt?: string + token0_not?: string + token0?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + swaps_not_contains_nocase?: string[] + swaps_not_contains?: string[] + swaps_contains_nocase?: string[] + swaps_contains?: string[] + swaps_not?: string[] + swaps?: string[] + burns_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + needsComplete_not_in?: boolean[] + needsComplete_in?: boolean[] + needsComplete_not?: boolean + needsComplete?: boolean + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + burns_not_contains_nocase?: string[] + burns_not_contains?: string[] + burns_contains_nocase?: string[] + burns_contains?: string[] + burns_not?: string[] + burns?: string[] + mints_?: { + or?: any[] + and?: any[] + _change_block?: { number_gte: number } + feeLiquidity_not_in?: string[] + feeLiquidity_in?: string[] + feeLiquidity_lte?: string + feeLiquidity_gte?: string + feeLiquidity_lt?: string + feeLiquidity_gt?: string + feeLiquidity_not?: string + feeLiquidity?: string + feeTo_not_contains?: `0x${string}` + feeTo_contains?: `0x${string}` + feeTo_not_in?: `0x${string}`[] + feeTo_in?: `0x${string}`[] + feeTo_lte?: `0x${string}` + feeTo_gte?: `0x${string}` + feeTo_lt?: `0x${string}` + feeTo_gt?: `0x${string}` + feeTo_not?: `0x${string}` + feeTo?: `0x${string}` + amountUSD_not_in?: string[] + amountUSD_in?: string[] + amountUSD_lte?: string + amountUSD_gte?: string + amountUSD_lt?: string + amountUSD_gt?: string + amountUSD_not?: string + amountUSD?: string + logIndex_not_in?: string[] + logIndex_in?: string[] + logIndex_lte?: string + logIndex_gte?: string + logIndex_lt?: string + logIndex_gt?: string + logIndex_not?: string + logIndex?: string + amount1_not_in?: string[] + amount1_in?: string[] + amount1_lte?: string + amount1_gte?: string + amount1_lt?: string + amount1_gt?: string + amount1_not?: string + amount1?: string + amount0_not_in?: string[] + amount0_in?: string[] + amount0_lte?: string + amount0_gte?: string + amount0_lt?: string + amount0_gt?: string + amount0_not?: string + amount0?: string + sender_not_contains?: `0x${string}` + sender_contains?: `0x${string}` + sender_not_in?: `0x${string}`[] + sender_in?: `0x${string}`[] + sender_lte?: `0x${string}` + sender_gte?: `0x${string}` + sender_lt?: `0x${string}` + sender_gt?: `0x${string}` + sender_not?: `0x${string}` + sender?: `0x${string}` + liquidity_not_in?: string[] + liquidity_in?: string[] + liquidity_lte?: string + liquidity_gte?: string + liquidity_lt?: string + liquidity_gt?: string + liquidity_not?: string + liquidity?: string + to_not_contains?: `0x${string}` + to_contains?: `0x${string}` + to_not_in?: `0x${string}`[] + to_in?: `0x${string}`[] + to_lte?: `0x${string}` + to_gte?: `0x${string}` + to_lt?: `0x${string}` + to_gt?: `0x${string}` + to_not?: `0x${string}` + to?: `0x${string}` + pair_?: any + pair_not_ends_with_nocase?: string + pair_not_ends_with?: string + pair_ends_with_nocase?: string + pair_ends_with?: string + pair_not_starts_with_nocase?: string + pair_not_starts_with?: string + pair_starts_with_nocase?: string + pair_starts_with?: string + pair_not_contains_nocase?: string + pair_not_contains?: string + pair_contains_nocase?: string + pair_contains?: string + pair_not_in?: string[] + pair_in?: string[] + pair_lte?: string + pair_gte?: string + pair_lt?: string + pair_gt?: string + pair_not?: string + pair?: string + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + transaction_?: any + transaction_not_ends_with_nocase?: string + transaction_not_ends_with?: string + transaction_ends_with_nocase?: string + transaction_ends_with?: string + transaction_not_starts_with_nocase?: string + transaction_not_starts_with?: string + transaction_starts_with_nocase?: string + transaction_starts_with?: string + transaction_not_contains_nocase?: string + transaction_not_contains?: string + transaction_contains_nocase?: string + transaction_contains?: string + transaction_not_in?: string[] + transaction_in?: string[] + transaction_lte?: string + transaction_gte?: string + transaction_lt?: string + transaction_gt?: string + transaction_not?: string + transaction?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + mints_not_contains_nocase?: string[] + mints_not_contains?: string[] + mints_contains_nocase?: string[] + mints_contains?: string[] + mints_not?: string[] + mints?: string[] + timestamp_not_in?: string[] + timestamp_in?: string[] + timestamp_lte?: string + timestamp_gte?: string + timestamp_lt?: string + timestamp_gt?: string + timestamp_not?: string + timestamp?: string + blockNumber_not_in?: string[] + blockNumber_in?: string[] + blockNumber_lte?: string + blockNumber_gte?: string + blockNumber_lt?: string + blockNumber_gt?: string + blockNumber_not?: string + blockNumber?: string + id_not_contains?: `0x${string}` + id_contains?: `0x${string}` + id_not_in?: `0x${string}`[] + id_in?: `0x${string}`[] + id_lte?: `0x${string}` + id_gte?: `0x${string}` + id_lt?: `0x${string}` + id_gt?: `0x${string}` + id_not?: `0x${string}` + id?: `0x${string}` + } + orderDirection?: 'asc' | 'desc' + orderBy?: + | 'id' + | 'timestamp' + | 'burns' + | 'mints' + | 'swaps' + | 'blockNumber' + block?: { number_gte?: number; number?: number; hash?: `0x${string}` } + skip?: number + first?: number + }, + void + > } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts index dc553450c2..efc241b709 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts @@ -10,75 +10,13208 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'sushi-v2'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'sushi-v2' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPrice': { name: 'ethPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPrice'; }; - 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'needsComplete': { name: 'needsComplete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'to' | 'logIndex' | 'amountUSD' | 'needsComplete' | 'feeTo' | 'feeLiquidity'; }; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'LiquidityPosition': { kind: 'OBJECT'; name: 'LiquidityPosition'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot': { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityTokenTotalSupply': { name: 'liquidityTokenTotalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'token0PriceUSD': { name: 'token0PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1PriceUSD': { name: 'token1PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPositionSnapshot_orderBy': { name: 'LiquidityPositionSnapshot_orderBy'; enumValues: 'id' | 'liquidityPosition' | 'liquidityPosition__id' | 'liquidityPosition__liquidityTokenBalance' | 'timestamp' | 'block' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'token0PriceUSD' | 'token1PriceUSD' | 'reserve0' | 'reserve1' | 'reserveUSD' | 'liquidityTokenTotalSupply' | 'liquidityTokenBalance'; }; - 'LiquidityPosition_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPosition_orderBy': { name: 'LiquidityPosition_orderBy'; enumValues: 'id' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidityTokenBalance'; }; - 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'to' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'logIndex' | 'amountUSD' | 'feeTo' | 'feeLiquidity'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveETH': { name: 'reserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'trackedReserveETH': { name: 'trackedReserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PairDayData': { kind: 'OBJECT'; name: 'PairDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeToken0': { name: 'dailyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken1': { name: 'dailyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairAddress': { name: 'pairAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; - 'PairDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairDayData_orderBy': { name: 'PairDayData_orderBy'; enumValues: 'id' | 'date' | 'pairAddress' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'dailyVolumeToken0' | 'dailyVolumeToken1' | 'dailyVolumeUSD' | 'dailyTxns'; }; - 'PairHourData': { kind: 'OBJECT'; name: 'PairHourData'; fields: { 'hourStartUnix': { name: 'hourStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'hourlyTxns': { name: 'hourlyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hourlyVolumeToken0': { name: 'hourlyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeToken1': { name: 'hourlyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeUSD': { name: 'hourlyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; - 'PairHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairHourData_orderBy': { name: 'PairHourData_orderBy'; enumValues: 'id' | 'hourStartUnix' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'hourlyVolumeToken0' | 'hourlyVolumeToken1' | 'hourlyVolumeUSD' | 'hourlyTxns'; }; - 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositionSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveETH' | 'reserveUSD' | 'trackedReserveETH' | 'token0Price' | 'token1Price' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'createdAtTimestamp' | 'createdAtBlockNumber' | 'liquidityProviderCount' | 'pairHourData' | 'liquidityPositions' | 'liquidityPositionSnapshots' | 'mints' | 'burns' | 'swaps'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0In': { name: 'amount0In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Out': { name: 'amount0Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1In': { name: 'amount1In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Out': { name: 'amount1Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'sender' | 'from' | 'amount0In' | 'amount1In' | 'amount0Out' | 'amount1Out' | 'to' | 'logIndex' | 'amountUSD'; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pairBase': { name: 'pairBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'pairDayDataBase': { name: 'pairDayDataBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairDayDataQuote': { name: 'pairDayDataQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairQuote': { name: 'pairQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalLiquidity': { name: 'totalLiquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tradeVolume': { name: 'tradeVolume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tradeVolumeUSD': { name: 'tradeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken': { name: 'dailyVolumeToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityToken': { name: 'totalLiquidityToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__name' | 'token__decimals' | 'token__totalSupply' | 'token__tradeVolume' | 'token__tradeVolumeUSD' | 'token__untrackedVolumeUSD' | 'token__txCount' | 'token__totalLiquidity' | 'token__derivedETH' | 'dailyVolumeToken' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyTxns' | 'totalLiquidityToken' | 'totalLiquidityETH' | 'totalLiquidityUSD' | 'priceUSD'; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataBase_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairBase_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'pairQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'tradeVolume' | 'tradeVolumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'totalLiquidity' | 'derivedETH' | 'tokenDayData' | 'pairDayDataBase' | 'pairDayDataQuote' | 'pairBase' | 'pairQuote'; }; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'mints' | 'burns' | 'swaps'; }; - 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUntracked': { name: 'dailyVolumeUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyVolumeUntracked' | 'totalVolumeETH' | 'totalLiquidityETH' | 'totalVolumeUSD' | 'totalLiquidityUSD' | 'txCount'; }; - 'UniswapFactory': { kind: 'OBJECT'; name: 'UniswapFactory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'UniswapFactory_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapFactory_orderBy': { name: 'UniswapFactory_orderBy'; enumValues: 'id' | 'pairCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'untrackedVolumeUSD' | 'totalLiquidityUSD' | 'totalLiquidityETH' | 'txCount'; }; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; } }; 'usdSwapped': { name: 'usdSwapped'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'usdSwapped_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'liquidityPositions' | 'usdSwapped'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bundle: { + kind: 'OBJECT' + name: 'Bundle' + fields: { + ethPrice: { + name: 'ethPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + } + } + Bundle_filter: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ethPrice' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ethPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Bundle_orderBy: { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPrice' } + Burn: { + kind: 'OBJECT' + name: 'Burn' + fields: { + amount0: { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + amount1: { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + amountUSD: { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + feeLiquidity: { + name: 'feeLiquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + feeTo: { + name: 'feeTo' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + needsComplete: { + name: 'needsComplete' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + sender: { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + to: { + name: 'to' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Burn_filter: { + kind: 'INPUT_OBJECT' + name: 'Burn_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'needsComplete' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'needsComplete_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'needsComplete_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'needsComplete_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeLiquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Burn_orderBy: { + name: 'Burn_orderBy' + enumValues: + | 'id' + | 'transaction' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'timestamp' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'liquidity' + | 'sender' + | 'amount0' + | 'amount1' + | 'to' + | 'logIndex' + | 'amountUSD' + | 'needsComplete' + | 'feeTo' + | 'feeLiquidity' + } + Bytes: unknown + ID: unknown + Int: unknown + Int8: unknown + LiquidityPosition: { + kind: 'OBJECT' + name: 'LiquidityPosition' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidityTokenBalance: { + name: 'liquidityTokenBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + user: { + name: 'user' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + LiquidityPositionSnapshot: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidityPosition: { + name: 'liquidityPosition' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null } + } + } + liquidityTokenBalance: { + name: 'liquidityTokenBalance' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + liquidityTokenTotalSupply: { + name: 'liquidityTokenTotalSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + reserve0: { + name: 'reserve0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserve1: { + name: 'reserve1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserveUSD: { + name: 'reserveUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + token0PriceUSD: { + name: 'token0PriceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token1PriceUSD: { + name: 'token1PriceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + user: { + name: 'user' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + LiquidityPositionSnapshot_filter: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPositionSnapshot_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityPosition_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityPosition_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPosition_' + type: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'block_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'block_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'user' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'user_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'user_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0PriceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0PriceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1PriceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1PriceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1PriceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityTokenTotalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityTokenBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPositionSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPositionSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + LiquidityPositionSnapshot_orderBy: { + name: 'LiquidityPositionSnapshot_orderBy' + enumValues: + | 'id' + | 'liquidityPosition' + | 'liquidityPosition__id' + | 'liquidityPosition__liquidityTokenBalance' + | 'timestamp' + | 'block' + | 'user' + | 'user__id' + | 'user__usdSwapped' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'token0PriceUSD' + | 'token1PriceUSD' + | 'reserve0' + | 'reserve1' + | 'reserveUSD' + | 'liquidityTokenTotalSupply' + | 'liquidityTokenBalance' + } + LiquidityPosition_filter: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'user' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'user_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'user_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'user_' + type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityTokenBalance_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + LiquidityPosition_orderBy: { + name: 'LiquidityPosition_orderBy' + enumValues: + | 'id' + | 'user' + | 'user__id' + | 'user__usdSwapped' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'liquidityTokenBalance' + } + Mint: { + kind: 'OBJECT' + name: 'Mint' + fields: { + amount0: { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + amount1: { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + amountUSD: { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + feeLiquidity: { + name: 'feeLiquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + feeTo: { + name: 'feeTo' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + sender: { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + to: { + name: 'to' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Mint_filter: { + kind: 'INPUT_OBJECT' + name: 'Mint_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'to' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTo_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeTo_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feeLiquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeLiquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Mint_orderBy: { + name: 'Mint_orderBy' + enumValues: + | 'id' + | 'transaction' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'timestamp' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'to' + | 'liquidity' + | 'sender' + | 'amount0' + | 'amount1' + | 'logIndex' + | 'amountUSD' + | 'feeTo' + | 'feeLiquidity' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Pair: { + kind: 'OBJECT' + name: 'Pair' + fields: { + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + createdAtBlockNumber: { + name: 'createdAtBlockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidityPositionSnapshots: { + name: 'liquidityPositionSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + ofType: null + } + } + } + } + } + liquidityPositions: { + name: 'liquidityPositions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPosition' + ofType: null + } + } + } + } + } + liquidityProviderCount: { + name: 'liquidityProviderCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + pairHourData: { + name: 'pairHourData' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null } + } + } + } + } + reserve0: { + name: 'reserve0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserve1: { + name: 'reserve1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserveETH: { + name: 'reserveETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserveUSD: { + name: 'reserveUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token0Price: { + name: 'token0Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1Price: { + name: 'token1Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalSupply: { + name: 'totalSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + trackedReserveETH: { + name: 'trackedReserveETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PairDayData: { + kind: 'OBJECT' + name: 'PairDayData' + fields: { + dailyTxns: { + name: 'dailyTxns' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + dailyVolumeToken0: { + name: 'dailyVolumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeToken1: { + name: 'dailyVolumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeUSD: { + name: 'dailyVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pairAddress: { + name: 'pairAddress' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + reserve0: { + name: 'reserve0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserve1: { + name: 'reserve1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserveUSD: { + name: 'reserveUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + totalSupply: { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + PairDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'PairDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pairAddress' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pairAddress_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pairAddress_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairAddress_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyTxns' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyTxns_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PairDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PairDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PairDayData_orderBy: { + name: 'PairDayData_orderBy' + enumValues: + | 'id' + | 'date' + | 'pairAddress' + | 'token0' + | 'token0__id' + | 'token0__symbol' + | 'token0__name' + | 'token0__decimals' + | 'token0__totalSupply' + | 'token0__tradeVolume' + | 'token0__tradeVolumeUSD' + | 'token0__untrackedVolumeUSD' + | 'token0__txCount' + | 'token0__totalLiquidity' + | 'token0__derivedETH' + | 'token1' + | 'token1__id' + | 'token1__symbol' + | 'token1__name' + | 'token1__decimals' + | 'token1__totalSupply' + | 'token1__tradeVolume' + | 'token1__tradeVolumeUSD' + | 'token1__untrackedVolumeUSD' + | 'token1__txCount' + | 'token1__totalLiquidity' + | 'token1__derivedETH' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'reserveUSD' + | 'dailyVolumeToken0' + | 'dailyVolumeToken1' + | 'dailyVolumeUSD' + | 'dailyTxns' + } + PairHourData: { + kind: 'OBJECT' + name: 'PairHourData' + fields: { + hourStartUnix: { + name: 'hourStartUnix' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + hourlyTxns: { + name: 'hourlyTxns' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + hourlyVolumeToken0: { + name: 'hourlyVolumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + hourlyVolumeToken1: { + name: 'hourlyVolumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + hourlyVolumeUSD: { + name: 'hourlyVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + reserve0: { + name: 'reserve0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserve1: { + name: 'reserve1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + reserveUSD: { + name: 'reserveUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalSupply: { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + PairHourData_filter: { + kind: 'INPUT_OBJECT' + name: 'PairHourData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'hourStartUnix_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourStartUnix_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyTxns' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'hourlyTxns_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'hourlyTxns_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PairHourData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PairHourData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PairHourData_orderBy: { + name: 'PairHourData_orderBy' + enumValues: + | 'id' + | 'hourStartUnix' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'reserveUSD' + | 'hourlyVolumeToken0' + | 'hourlyVolumeToken1' + | 'hourlyVolumeUSD' + | 'hourlyTxns' + } + Pair_filter: { + kind: 'INPUT_OBJECT' + name: 'Pair_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserve1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserve1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'reserveUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'reserveUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'trackedReserveETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'trackedReserveETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'trackedReserveETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pairHourData_' + type: { + kind: 'INPUT_OBJECT' + name: 'PairHourData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'liquidityPositions_' + type: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'liquidityPositionSnapshots_' + type: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPositionSnapshot_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'mints_' + type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + defaultValue: null + }, + { + name: 'burns_' + type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + defaultValue: null + }, + { + name: 'swaps_' + type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pair_orderBy: { + name: 'Pair_orderBy' + enumValues: + | 'id' + | 'token0' + | 'token0__id' + | 'token0__symbol' + | 'token0__name' + | 'token0__decimals' + | 'token0__totalSupply' + | 'token0__tradeVolume' + | 'token0__tradeVolumeUSD' + | 'token0__untrackedVolumeUSD' + | 'token0__txCount' + | 'token0__totalLiquidity' + | 'token0__derivedETH' + | 'token1' + | 'token1__id' + | 'token1__symbol' + | 'token1__name' + | 'token1__decimals' + | 'token1__totalSupply' + | 'token1__tradeVolume' + | 'token1__tradeVolumeUSD' + | 'token1__untrackedVolumeUSD' + | 'token1__txCount' + | 'token1__totalLiquidity' + | 'token1__derivedETH' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'reserveETH' + | 'reserveUSD' + | 'trackedReserveETH' + | 'token0Price' + | 'token1Price' + | 'volumeToken0' + | 'volumeToken1' + | 'volumeUSD' + | 'untrackedVolumeUSD' + | 'txCount' + | 'createdAtTimestamp' + | 'createdAtBlockNumber' + | 'liquidityProviderCount' + | 'pairHourData' + | 'liquidityPositions' + | 'liquidityPositionSnapshots' + | 'mints' + | 'burns' + | 'swaps' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + bundle: { + name: 'bundle' + type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + bundles: { + name: 'bundles' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + } + } + } + burn: { + name: 'burn' + type: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + liquidityPosition: { + name: 'liquidityPosition' + type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null } + } + liquidityPositionSnapshot: { + name: 'liquidityPositionSnapshot' + type: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + ofType: null + } + } + liquidityPositionSnapshots: { + name: 'liquidityPositionSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + ofType: null + } + } + } + } + } + liquidityPositions: { + name: 'liquidityPositions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPosition' + ofType: null + } + } + } + } + } + mint: { + name: 'mint' + type: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + pair: { + name: 'pair' + type: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + pairDayData: { + name: 'pairDayData' + type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + pairDayDatas: { + name: 'pairDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + } + } + } + pairHourData: { + name: 'pairHourData' + type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null } + } + pairHourDatas: { + name: 'pairHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null } + } + } + } + } + pairs: { + name: 'pairs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + swap: { + name: 'swap' + type: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokenDayData: { + name: 'tokenDayData' + type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + tokenDayDatas: { + name: 'tokenDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + uniswapDayData: { + name: 'uniswapDayData' + type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + uniswapDayDatas: { + name: 'uniswapDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + } + } + } + uniswapFactories: { + name: 'uniswapFactories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null } + } + } + } + } + uniswapFactory: { + name: 'uniswapFactory' + type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + bundle: { + name: 'bundle' + type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + bundles: { + name: 'bundles' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + } + } + } + burn: { + name: 'burn' + type: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + liquidityPosition: { + name: 'liquidityPosition' + type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null } + } + liquidityPositionSnapshot: { + name: 'liquidityPositionSnapshot' + type: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + ofType: null + } + } + liquidityPositionSnapshots: { + name: 'liquidityPositionSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPositionSnapshot' + ofType: null + } + } + } + } + } + liquidityPositions: { + name: 'liquidityPositions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPosition' + ofType: null + } + } + } + } + } + mint: { + name: 'mint' + type: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + pair: { + name: 'pair' + type: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + pairDayData: { + name: 'pairDayData' + type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + pairDayDatas: { + name: 'pairDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + } + } + } + pairHourData: { + name: 'pairHourData' + type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null } + } + pairHourDatas: { + name: 'pairHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null } + } + } + } + } + pairs: { + name: 'pairs' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + swap: { + name: 'swap' + type: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokenDayData: { + name: 'tokenDayData' + type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + tokenDayDatas: { + name: 'tokenDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + uniswapDayData: { + name: 'uniswapDayData' + type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + uniswapDayDatas: { + name: 'uniswapDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + } + } + } + uniswapFactories: { + name: 'uniswapFactories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null } + } + } + } + } + uniswapFactory: { + name: 'uniswapFactory' + type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null } + } + user: { + name: 'user' + type: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + users: { + name: 'users' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'User'; ofType: null } + } + } + } + } + } + } + Swap: { + kind: 'OBJECT' + name: 'Swap' + fields: { + amount0In: { + name: 'amount0In' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount0Out: { + name: 'amount0Out' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1In: { + name: 'amount1In' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1Out: { + name: 'amount1Out' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + from: { + name: 'from' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + pair: { + name: 'pair' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + sender: { + name: 'sender' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + to: { + name: 'to' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Swap_filter: { + kind: 'INPUT_OBJECT' + name: 'Swap_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pair_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pair_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'from_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'from_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'from_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0In_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0In_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1In' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1In_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1In_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0Out' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Out_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0Out_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1Out' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Out_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1Out_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'to_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'to_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Swap_orderBy: { + name: 'Swap_orderBy' + enumValues: + | 'id' + | 'transaction' + | 'transaction__id' + | 'transaction__blockNumber' + | 'transaction__timestamp' + | 'timestamp' + | 'pair' + | 'pair__id' + | 'pair__reserve0' + | 'pair__reserve1' + | 'pair__totalSupply' + | 'pair__reserveETH' + | 'pair__reserveUSD' + | 'pair__trackedReserveETH' + | 'pair__token0Price' + | 'pair__token1Price' + | 'pair__volumeToken0' + | 'pair__volumeToken1' + | 'pair__volumeUSD' + | 'pair__untrackedVolumeUSD' + | 'pair__txCount' + | 'pair__createdAtTimestamp' + | 'pair__createdAtBlockNumber' + | 'pair__liquidityProviderCount' + | 'sender' + | 'from' + | 'amount0In' + | 'amount1In' + | 'amount0Out' + | 'amount1Out' + | 'to' + | 'logIndex' + | 'amountUSD' + } + Timestamp: unknown + Token: { + kind: 'OBJECT' + name: 'Token' + fields: { + decimals: { + name: 'decimals' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + derivedETH: { + name: 'derivedETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + name: { + name: 'name' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + pairBase: { + name: 'pairBase' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + pairDayDataBase: { + name: 'pairDayDataBase' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + } + } + } + pairDayDataQuote: { + name: 'pairDayDataQuote' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null } + } + } + } + } + pairQuote: { + name: 'pairQuote' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null } + } + } + } + } + symbol: { + name: 'symbol' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + tokenDayData: { + name: 'tokenDayData' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + totalLiquidity: { + name: 'totalLiquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalSupply: { + name: 'totalSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tradeVolume: { + name: 'tradeVolume' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + tradeVolumeUSD: { + name: 'tradeVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TokenDayData: { + kind: 'OBJECT' + name: 'TokenDayData' + fields: { + dailyTxns: { + name: 'dailyTxns' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + dailyVolumeETH: { + name: 'dailyVolumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeToken: { + name: 'dailyVolumeToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeUSD: { + name: 'dailyVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + priceUSD: { + name: 'priceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token: { + name: 'token' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + totalLiquidityETH: { + name: 'totalLiquidityETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalLiquidityToken: { + name: 'totalLiquidityToken' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalLiquidityUSD: { + name: 'totalLiquidityUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TokenDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyTxns' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'dailyTxns_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyTxns_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityToken' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityToken_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityToken_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + TokenDayData_orderBy: { + name: 'TokenDayData_orderBy' + enumValues: + | 'id' + | 'date' + | 'token' + | 'token__id' + | 'token__symbol' + | 'token__name' + | 'token__decimals' + | 'token__totalSupply' + | 'token__tradeVolume' + | 'token__tradeVolumeUSD' + | 'token__untrackedVolumeUSD' + | 'token__txCount' + | 'token__totalLiquidity' + | 'token__derivedETH' + | 'dailyVolumeToken' + | 'dailyVolumeETH' + | 'dailyVolumeUSD' + | 'dailyTxns' + | 'totalLiquidityToken' + | 'totalLiquidityETH' + | 'totalLiquidityUSD' + | 'priceUSD' + } + Token_filter: { + kind: 'INPUT_OBJECT' + name: 'Token_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'symbol' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'decimals' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'decimals_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tradeVolume' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolume_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tradeVolume_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tradeVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tradeVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidity' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'derivedETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'derivedETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tokenDayData_' + type: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pairDayDataBase_' + type: { + kind: 'INPUT_OBJECT' + name: 'PairDayData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pairDayDataQuote_' + type: { + kind: 'INPUT_OBJECT' + name: 'PairDayData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pairBase_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: 'pairQuote_' + type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Token_orderBy: { + name: 'Token_orderBy' + enumValues: + | 'id' + | 'symbol' + | 'name' + | 'decimals' + | 'totalSupply' + | 'tradeVolume' + | 'tradeVolumeUSD' + | 'untrackedVolumeUSD' + | 'txCount' + | 'totalLiquidity' + | 'derivedETH' + | 'tokenDayData' + | 'pairDayDataBase' + | 'pairDayDataQuote' + | 'pairBase' + | 'pairQuote' + } + Transaction: { + kind: 'OBJECT' + name: 'Transaction' + fields: { + blockNumber: { + name: 'blockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + Transaction_filter: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'blockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_not' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_not_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_not_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_' + type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + defaultValue: null + }, + { + name: 'burns' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_not' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_not_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_not_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'burns_' + type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + defaultValue: null + }, + { + name: 'swaps' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_not' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_not_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_not_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'swaps_' + type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Transaction_orderBy: { + name: 'Transaction_orderBy' + enumValues: + | 'id' + | 'blockNumber' + | 'timestamp' + | 'mints' + | 'burns' + | 'swaps' + } + UniswapDayData: { + kind: 'OBJECT' + name: 'UniswapDayData' + fields: { + dailyVolumeETH: { + name: 'dailyVolumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeUSD: { + name: 'dailyVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + dailyVolumeUntracked: { + name: 'dailyVolumeUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + totalLiquidityETH: { + name: 'totalLiquidityETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalLiquidityUSD: { + name: 'totalLiquidityUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeETH: { + name: 'totalVolumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeUSD: { + name: 'totalVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + UniswapDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'dailyVolumeUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniswapDayData_orderBy: { + name: 'UniswapDayData_orderBy' + enumValues: + | 'id' + | 'date' + | 'dailyVolumeETH' + | 'dailyVolumeUSD' + | 'dailyVolumeUntracked' + | 'totalVolumeETH' + | 'totalLiquidityETH' + | 'totalVolumeUSD' + | 'totalLiquidityUSD' + | 'txCount' + } + UniswapFactory: { + kind: 'OBJECT' + name: 'UniswapFactory' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pairCount: { + name: 'pairCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + totalLiquidityETH: { + name: 'totalLiquidityETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalLiquidityUSD: { + name: 'totalLiquidityUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeETH: { + name: 'totalVolumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeUSD: { + name: 'totalVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + UniswapFactory_filter: { + kind: 'INPUT_OBJECT' + name: 'UniswapFactory_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'pairCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pairCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalLiquidityETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalLiquidityETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapFactory_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapFactory_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniswapFactory_orderBy: { + name: 'UniswapFactory_orderBy' + enumValues: + | 'id' + | 'pairCount' + | 'totalVolumeUSD' + | 'totalVolumeETH' + | 'untrackedVolumeUSD' + | 'totalLiquidityUSD' + | 'totalLiquidityETH' + | 'txCount' + } + User: { + kind: 'OBJECT' + name: 'User' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + liquidityPositions: { + name: 'liquidityPositions' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'LiquidityPosition' + ofType: null + } + } + } + } + usdSwapped: { + name: 'usdSwapped' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + User_filter: { + kind: 'INPUT_OBJECT' + name: 'User_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'id_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityPositions_' + type: { + kind: 'INPUT_OBJECT' + name: 'LiquidityPosition_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'usdSwapped' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'usdSwapped_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'usdSwapped_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + User_orderBy: { + name: 'User_orderBy' + enumValues: 'id' | 'liquidityPositions' | 'usdSwapped' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts index 7899d268a0..be609ff9a3 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts @@ -10,99 +10,27554 @@ * instead save to a .ts instead of a .d.ts file. */ export type introspection = { - name: 'sushi-v3'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; + name: 'sushi-v3' + query: 'Query' + mutation: never + subscription: 'Subscription' types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPriceUSD': { name: 'ethPriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPriceUSD'; }; - 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: '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'; }; - 'Bytes': unknown; - 'Collect': { kind: 'OBJECT'; name: 'Collect'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Collect_filter': { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Collect_orderBy': { name: 'Collect_orderBy'; enumValues: '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'; }; - 'DecreaseEvent': { kind: 'OBJECT'; name: 'DecreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'DecreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'DecreaseEvent_orderBy': { name: 'DecreaseEvent_orderBy'; enumValues: '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'; }; - 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeesETH': { name: 'totalFeesETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeesUSD': { name: 'totalFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETHUntracked': { name: 'totalValueLockedETHUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'poolCount' | 'txCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'totalFeesUSD' | 'totalFeesETH' | 'untrackedVolumeUSD' | 'totalValueLockedUSD' | 'totalValueLockedETH' | 'totalValueLockedUSDUntracked' | 'totalValueLockedETHUntracked' | 'owner'; }; - 'Flash': { kind: 'OBJECT'; name: 'Flash'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Paid': { name: 'amount0Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Paid': { name: 'amount1Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Flash_filter': { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Flash_orderBy': { name: 'Flash_orderBy'; enumValues: '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'; }; - 'ID': unknown; - 'IncreaseEvent': { kind: 'OBJECT'; name: 'IncreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'IncreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'IncreaseEvent_orderBy': { name: 'IncreaseEvent_orderBy'; enumValues: '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'; }; - 'Int': unknown; - 'Int8': unknown; - 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: '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'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeTier': { name: 'feeTier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isProtocolFeeEnabled': { name: 'isProtocolFeeEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'observationIndex': { name: 'observationIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken0': { name: 'totalValueLockedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken1': { name: 'totalValueLockedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolDayData': { kind: 'OBJECT'; name: 'PoolDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolDayData_orderBy': { name: 'PoolDayData_orderBy'; enumValues: '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'; }; - 'PoolHourData': { kind: 'OBJECT'; name: 'PoolHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolHourData_orderBy': { name: 'PoolHourData_orderBy'; enumValues: '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'; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'feeTier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'poolDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: 'ticks_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: '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'; }; - 'Position': { kind: 'OBJECT'; name: 'Position'; fields: { 'amountCollectedUSD': { name: 'amountCollectedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountDepositedUSD': { name: 'amountDepositedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountWithdrawnUSD': { name: 'amountWithdrawnUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken0': { name: 'collectedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken1': { name: 'collectedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PositionSnapshot': { kind: 'OBJECT'; name: 'PositionSnapshot'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PositionSnapshot_orderBy': { name: 'PositionSnapshot_orderBy'; enumValues: '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'; }; - 'Position_filter': { kind: 'INPUT_OBJECT'; name: 'Position_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'increaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: 'decreaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Position_orderBy': { name: 'Position_orderBy'; enumValues: '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'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; - 'SetProtocolFeeEvent': { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new0': { name: 'new0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new1': { name: 'new1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old0': { name: 'old0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old1': { name: 'old1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'SetProtocolFeeEvent_filter': { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'SetProtocolFeeEvent_orderBy': { name: 'SetProtocolFeeEvent_orderBy'; enumValues: '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'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; - 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sqrtPriceX96': { name: 'sqrtPriceX96'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: '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'; }; - 'Tick': { kind: 'OBJECT'; name: 'Tick'; fields: { 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'poolAddress': { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'price0': { name: 'price0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'price1': { name: 'price1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tickIdx': { name: 'tickIdx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickDayData': { kind: 'OBJECT'; name: 'TickDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickDayData_orderBy': { name: 'TickDayData_orderBy'; enumValues: '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'; }; - 'TickHourData': { kind: 'OBJECT'; name: 'TickHourData'; fields: { 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickHourData_orderBy': { name: 'TickHourData_orderBy'; enumValues: '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'; }; - 'Tick_filter': { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickIdx'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickIdx_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Tick_orderBy': { name: 'Tick_orderBy'; enumValues: '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'; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistPools': { name: 'whitelistPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; }; }; - 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: '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'; }; - 'TokenHourData': { kind: 'OBJECT'; name: 'TokenHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenHourData_orderBy': { name: 'TokenHourData_orderBy'; enumValues: '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'; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'volume' | 'volumeUSD' | 'untrackedVolumeUSD' | 'feesUSD' | 'txCount' | 'poolCount' | 'totalValueLocked' | 'totalValueLockedUSD' | 'totalValueLockedUSDUntracked' | 'derivedETH' | 'whitelistPools' | 'tokenDayData'; }; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'flashed': { name: 'flashed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'flashed_'; type: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'gasUsed' | 'gasPrice' | 'mints' | 'burns' | 'swaps' | 'flashed' | 'collects'; }; - 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeETH': { name: 'volumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSDUntracked': { name: 'volumeUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'volumeETH' | 'volumeUSD' | 'volumeUSDUntracked' | 'feesUSD' | 'txCount' | 'tvlUSD'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; + Aggregation_interval: { + name: 'Aggregation_interval' + enumValues: 'hour' | 'day' + } + BigDecimal: unknown + BigInt: unknown + BlockChangedFilter: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + isOneOf: false + inputFields: [ + { + name: 'number_gte' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + defaultValue: null + }, + ] + } + Block_height: { + kind: 'INPUT_OBJECT' + name: 'Block_height' + isOneOf: false + inputFields: [ + { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'number' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'number_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + ] + } + Boolean: unknown + Bundle: { + kind: 'OBJECT' + name: 'Bundle' + fields: { + ethPriceUSD: { + name: 'ethPriceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + } + } + Bundle_filter: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ethPriceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'ethPriceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'ethPriceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Bundle_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Bundle_orderBy: { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPriceUSD' } + Burn: { + kind: 'OBJECT' + name: 'Burn' + fields: { + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + origin: { + name: 'origin' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + owner: { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + tickLower: { + name: 'tickLower' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tickUpper: { + name: 'tickUpper' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Burn_filter: { + kind: 'INPUT_OBJECT' + name: 'Burn_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Burn_orderBy: { + name: 'Burn_orderBy' + enumValues: + | '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' + } + Bytes: unknown + Collect: { + kind: 'OBJECT' + name: 'Collect' + fields: { + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + owner: { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + tickLower: { + name: 'tickLower' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tickUpper: { + name: 'tickUpper' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Collect_filter: { + kind: 'INPUT_OBJECT' + name: 'Collect_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Collect_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Collect_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Collect_orderBy: { + name: 'Collect_orderBy' + enumValues: + | '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' + } + DecreaseEvent: { + kind: 'OBJECT' + name: 'DecreaseEvent' + fields: { + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + position: { + name: 'position' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + } + timeStamp: { + name: 'timeStamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + tokenID: { + name: 'tokenID' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + DecreaseEvent_filter: { + kind: 'INPUT_OBJECT' + name: 'DecreaseEvent_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tokenID_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_' + type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timeStamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'DecreaseEvent_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'DecreaseEvent_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + DecreaseEvent_orderBy: { + name: 'DecreaseEvent_orderBy' + enumValues: + | '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' + } + Factory: { + kind: 'OBJECT' + name: 'Factory' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + poolCount: { + name: 'poolCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalFeesETH: { + name: 'totalFeesETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalFeesUSD: { + name: 'totalFeesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedETH: { + name: 'totalValueLockedETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedETHUntracked: { + name: 'totalValueLockedETHUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSD: { + name: 'totalValueLockedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSDUntracked: { + name: 'totalValueLockedUSDUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeETH: { + name: 'totalVolumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalVolumeUSD: { + name: 'totalVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + Factory_filter: { + kind: 'INPUT_OBJECT' + name: 'Factory_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalVolumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalVolumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeesETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalFeesETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalFeesETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETHUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Factory_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Factory_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Factory_orderBy: { + name: 'Factory_orderBy' + enumValues: + | 'id' + | 'poolCount' + | 'txCount' + | 'totalVolumeUSD' + | 'totalVolumeETH' + | 'totalFeesUSD' + | 'totalFeesETH' + | 'untrackedVolumeUSD' + | 'totalValueLockedUSD' + | 'totalValueLockedETH' + | 'totalValueLockedUSDUntracked' + | 'totalValueLockedETHUntracked' + | 'owner' + } + Flash: { + kind: 'OBJECT' + name: 'Flash' + fields: { + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount0Paid: { + name: 'amount0Paid' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1Paid: { + name: 'amount1Paid' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + recipient: { + name: 'recipient' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + sender: { + name: 'sender' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Flash_filter: { + kind: 'INPUT_OBJECT' + name: 'Flash_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0Paid' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0Paid_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0Paid_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1Paid' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1Paid_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1Paid_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Flash_orderBy: { + name: 'Flash_orderBy' + enumValues: + | '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' + } + ID: unknown + IncreaseEvent: { + kind: 'OBJECT' + name: 'IncreaseEvent' + fields: { + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + position: { + name: 'position' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + } + timeStamp: { + name: 'timeStamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + tokenID: { + name: 'tokenID' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + IncreaseEvent_filter: { + kind: 'INPUT_OBJECT' + name: 'IncreaseEvent_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tokenID_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tokenID_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_' + type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timeStamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timeStamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'IncreaseEvent_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'IncreaseEvent_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + IncreaseEvent_orderBy: { + name: 'IncreaseEvent_orderBy' + enumValues: + | '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' + } + Int: unknown + Int8: unknown + Mint: { + kind: 'OBJECT' + name: 'Mint' + fields: { + amount: { + name: 'amount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + origin: { + name: 'origin' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + sender: { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + tickLower: { + name: 'tickLower' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tickUpper: { + name: 'tickUpper' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Mint_filter: { + kind: 'INPUT_OBJECT' + name: 'Mint_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'amount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Mint_orderBy: { + name: 'Mint_orderBy' + enumValues: + | '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' + } + OrderDirection: { name: 'OrderDirection'; enumValues: 'asc' | 'desc' } + Pool: { + kind: 'OBJECT' + name: 'Pool' + fields: { + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + collectedFeesToken0: { + name: 'collectedFeesToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesToken1: { + name: 'collectedFeesToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesUSD: { + name: 'collectedFeesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collects: { + name: 'collects' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + } + } + } + createdAtBlockNumber: { + name: 'createdAtBlockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthGlobal0X128: { + name: 'feeGrowthGlobal0X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthGlobal1X128: { + name: 'feeGrowthGlobal1X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeTier: { + name: 'feeTier' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + isProtocolFeeEnabled: { + name: 'isProtocolFeeEnabled' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + liquidityProviderCount: { + name: 'liquidityProviderCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + observationIndex: { + name: 'observationIndex' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + poolDayData: { + name: 'poolDayData' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null } + } + } + } + } + poolHourData: { + name: 'poolHourData' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null } + } + } + } + } + sqrtPrice: { + name: 'sqrtPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + tick: { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + ticks: { + name: 'ticks' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token0Price: { + name: 'token0Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1Price: { + name: 'token1Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedETH: { + name: 'totalValueLockedETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedToken0: { + name: 'totalValueLockedToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedToken1: { + name: 'totalValueLockedToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSD: { + name: 'totalValueLockedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSDUntracked: { + name: 'totalValueLockedUSDUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PoolDayData: { + kind: 'OBJECT' + name: 'PoolDayData' + fields: { + close: { + name: 'close' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + feeGrowthGlobal0X128: { + name: 'feeGrowthGlobal0X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthGlobal1X128: { + name: 'feeGrowthGlobal1X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + high: { + name: 'high' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + low: { + name: 'low' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + open: { + name: 'open' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + sqrtPrice: { + name: 'sqrtPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tick: { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + token0Price: { + name: 'token0Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token1Price: { + name: 'token1Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + tvlUSD: { + name: 'tvlUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PoolDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'PoolDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PoolDayData_orderBy: { + name: 'PoolDayData_orderBy' + enumValues: + | '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' + } + PoolHourData: { + kind: 'OBJECT' + name: 'PoolHourData' + fields: { + close: { + name: 'close' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + feeGrowthGlobal0X128: { + name: 'feeGrowthGlobal0X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthGlobal1X128: { + name: 'feeGrowthGlobal1X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + high: { + name: 'high' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + low: { + name: 'low' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + open: { + name: 'open' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + periodStartUnix: { + name: 'periodStartUnix' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + sqrtPrice: { + name: 'sqrtPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tick: { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + token0Price: { + name: 'token0Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token1Price: { + name: 'token1Price' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + tvlUSD: { + name: 'tvlUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PoolHourData_filter: { + kind: 'INPUT_OBJECT' + name: 'PoolHourData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolHourData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PoolHourData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PoolHourData_orderBy: { + name: 'PoolHourData_orderBy' + enumValues: + | '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' + } + Pool_filter: { + kind: 'INPUT_OBJECT' + name: 'Pool_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeTier_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeTier_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal0X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthGlobal1X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token0Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'token1Price_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1Price_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'observationIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'observationIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'observationIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'isProtocolFeeEnabled' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'isProtocolFeeEnabled_not' + type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + defaultValue: null + }, + { + name: 'isProtocolFeeEnabled_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'isProtocolFeeEnabled_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolHourData_' + type: { + kind: 'INPUT_OBJECT' + name: 'PoolHourData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'poolDayData_' + type: { + kind: 'INPUT_OBJECT' + name: 'PoolDayData_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'mints_' + type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + defaultValue: null + }, + { + name: 'burns_' + type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + defaultValue: null + }, + { + name: 'swaps_' + type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + defaultValue: null + }, + { + name: 'collects_' + type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null } + defaultValue: null + }, + { + name: 'ticks_' + type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Pool_orderBy: { + name: 'Pool_orderBy' + enumValues: + | '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' + } + Position: { + kind: 'OBJECT' + name: 'Position' + fields: { + amountCollectedUSD: { + name: 'amountCollectedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountDepositedUSD: { + name: 'amountDepositedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountWithdrawnUSD: { + name: 'amountWithdrawnUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesToken0: { + name: 'collectedFeesToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesToken1: { + name: 'collectedFeesToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedToken0: { + name: 'collectedToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedToken1: { + name: 'collectedToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + decreaseEvents: { + name: 'decreaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + } + } + } + depositedToken0: { + name: 'depositedToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + depositedToken1: { + name: 'depositedToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + feeGrowthInside0LastX128: { + name: 'feeGrowthInside0LastX128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthInside1LastX128: { + name: 'feeGrowthInside1LastX128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + increaseEvents: { + name: 'increaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + tickLower: { + name: 'tickLower' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + tickUpper: { + name: 'tickUpper' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + withdrawnToken0: { + name: 'withdrawnToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + withdrawnToken1: { + name: 'withdrawnToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PositionSnapshot: { + kind: 'OBJECT' + name: 'PositionSnapshot' + fields: { + blockNumber: { + name: 'blockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + collectedFeesToken0: { + name: 'collectedFeesToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesToken1: { + name: 'collectedFeesToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + depositedToken0: { + name: 'depositedToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + depositedToken1: { + name: 'depositedToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + feeGrowthInside0LastX128: { + name: 'feeGrowthInside0LastX128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthInside1LastX128: { + name: 'feeGrowthInside1LastX128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidity: { + name: 'liquidity' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + owner: { + name: 'owner' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + position: { + name: 'position' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + withdrawnToken0: { + name: 'withdrawnToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + withdrawnToken1: { + name: 'withdrawnToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + PositionSnapshot_filter: { + kind: 'INPUT_OBJECT' + name: 'PositionSnapshot_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'position' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'position_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'position_' + type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'blockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PositionSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'PositionSnapshot_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + PositionSnapshot_orderBy: { + name: 'PositionSnapshot_orderBy' + enumValues: + | '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' + } + Position_filter: { + kind: 'INPUT_OBJECT' + name: 'Position_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'owner_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'owner_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickLower_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickLower_' + type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickUpper_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickUpper_' + type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidity_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidity_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'depositedToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'depositedToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'withdrawnToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'withdrawnToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountDepositedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountDepositedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountDepositedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountWithdrawnUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountCollectedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountCollectedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountCollectedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside0LastX128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthInside1LastX128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'increaseEvents_' + type: { + kind: 'INPUT_OBJECT' + name: 'IncreaseEvent_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'decreaseEvents_' + type: { + kind: 'INPUT_OBJECT' + name: 'IncreaseEvent_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Position_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Position_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Position_orderBy: { + name: 'Position_orderBy' + enumValues: + | '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' + } + Query: { + kind: 'OBJECT' + name: 'Query' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + bundle: { + name: 'bundle' + type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + bundles: { + name: 'bundles' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + } + } + } + burn: { + name: 'burn' + type: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + collect: { + name: 'collect' + type: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + collects: { + name: 'collects' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + } + } + } + decreaseEvent: { + name: 'decreaseEvent' + type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null } + } + decreaseEvents: { + name: 'decreaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null } + } + } + } + } + factories: { + name: 'factories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null } + } + } + } + } + factory: { + name: 'factory' + type: { kind: 'OBJECT'; name: 'Factory'; ofType: null } + } + flash: { + name: 'flash' + type: { kind: 'OBJECT'; name: 'Flash'; ofType: null } + } + flashes: { + name: 'flashes' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null } + } + } + } + } + increaseEvent: { + name: 'increaseEvent' + type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + increaseEvents: { + name: 'increaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + } + } + } + mint: { + name: 'mint' + type: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + poolDayData: { + name: 'poolDayData' + type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null } + } + poolDayDatas: { + name: 'poolDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null } + } + } + } + } + poolHourData: { + name: 'poolHourData' + type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null } + } + poolHourDatas: { + name: 'poolHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null } + } + } + } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + position: { + name: 'position' + type: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + positionSnapshot: { + name: 'positionSnapshot' + type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null } + } + positionSnapshots: { + name: 'positionSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'PositionSnapshot' + ofType: null + } + } + } + } + } + positions: { + name: 'positions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + } + } + } + setProtocolFeeEvent: { + name: 'setProtocolFeeEvent' + type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null } + } + setProtocolFeeEvents: { + name: 'setProtocolFeeEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'SetProtocolFeeEvent' + ofType: null + } + } + } + } + } + swap: { + name: 'swap' + type: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + tick: { + name: 'tick' + type: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + tickDayData: { + name: 'tickDayData' + type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null } + } + tickDayDatas: { + name: 'tickDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null } + } + } + } + } + tickHourData: { + name: 'tickHourData' + type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null } + } + tickHourDatas: { + name: 'tickHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null } + } + } + } + } + ticks: { + name: 'ticks' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokenDayData: { + name: 'tokenDayData' + type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + tokenDayDatas: { + name: 'tokenDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + tokenHourData: { + name: 'tokenHourData' + type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null } + } + tokenHourDatas: { + name: 'tokenHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null } + } + } + } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + uniswapDayData: { + name: 'uniswapDayData' + type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + uniswapDayDatas: { + name: 'uniswapDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + } + } + } + } + } + SetProtocolFeeEvent: { + kind: 'OBJECT' + name: 'SetProtocolFeeEvent' + fields: { + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + new0: { + name: 'new0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + new1: { + name: 'new1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + old0: { + name: 'old0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + old1: { + name: 'old1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + SetProtocolFeeEvent_filter: { + kind: 'INPUT_OBJECT' + name: 'SetProtocolFeeEvent_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'new0' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'new0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'new1' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'new1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'new1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'old0' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'old0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'old1' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'old1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'old1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'SetProtocolFeeEvent_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'SetProtocolFeeEvent_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + SetProtocolFeeEvent_orderBy: { + name: 'SetProtocolFeeEvent_orderBy' + enumValues: + | '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' + } + String: unknown + Subscription: { + kind: 'OBJECT' + name: 'Subscription' + fields: { + _meta: { + name: '_meta' + type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null } + } + bundle: { + name: 'bundle' + type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + bundles: { + name: 'bundles' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null } + } + } + } + } + burn: { + name: 'burn' + type: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + collect: { + name: 'collect' + type: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + collects: { + name: 'collects' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + } + } + } + decreaseEvent: { + name: 'decreaseEvent' + type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null } + } + decreaseEvents: { + name: 'decreaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null } + } + } + } + } + factories: { + name: 'factories' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null } + } + } + } + } + factory: { + name: 'factory' + type: { kind: 'OBJECT'; name: 'Factory'; ofType: null } + } + flash: { + name: 'flash' + type: { kind: 'OBJECT'; name: 'Flash'; ofType: null } + } + flashes: { + name: 'flashes' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null } + } + } + } + } + increaseEvent: { + name: 'increaseEvent' + type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + increaseEvents: { + name: 'increaseEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null } + } + } + } + } + mint: { + name: 'mint' + type: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + pool: { + name: 'pool' + type: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + poolDayData: { + name: 'poolDayData' + type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null } + } + poolDayDatas: { + name: 'poolDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null } + } + } + } + } + poolHourData: { + name: 'poolHourData' + type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null } + } + poolHourDatas: { + name: 'poolHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null } + } + } + } + } + pools: { + name: 'pools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + position: { + name: 'position' + type: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + positionSnapshot: { + name: 'positionSnapshot' + type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null } + } + positionSnapshots: { + name: 'positionSnapshots' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'PositionSnapshot' + ofType: null + } + } + } + } + } + positions: { + name: 'positions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null } + } + } + } + } + setProtocolFeeEvent: { + name: 'setProtocolFeeEvent' + type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null } + } + setProtocolFeeEvents: { + name: 'setProtocolFeeEvents' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'OBJECT' + name: 'SetProtocolFeeEvent' + ofType: null + } + } + } + } + } + swap: { + name: 'swap' + type: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + tick: { + name: 'tick' + type: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + tickDayData: { + name: 'tickDayData' + type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null } + } + tickDayDatas: { + name: 'tickDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null } + } + } + } + } + tickHourData: { + name: 'tickHourData' + type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null } + } + tickHourDatas: { + name: 'tickHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null } + } + } + } + } + ticks: { + name: 'ticks' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + } + } + token: { + name: 'token' + type: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + tokenDayData: { + name: 'tokenDayData' + type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + tokenDayDatas: { + name: 'tokenDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + tokenHourData: { + name: 'tokenHourData' + type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null } + } + tokenHourDatas: { + name: 'tokenHourDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null } + } + } + } + } + tokens: { + name: 'tokens' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + } + } + transaction: { + name: 'transaction' + type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + transactions: { + name: 'transactions' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + uniswapDayData: { + name: 'uniswapDayData' + type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + uniswapDayDatas: { + name: 'uniswapDayDatas' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null } + } + } + } + } + } + } + Swap: { + kind: 'OBJECT' + name: 'Swap' + fields: { + amount0: { + name: 'amount0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amount1: { + name: 'amount1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + amountUSD: { + name: 'amountUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + logIndex: { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + origin: { + name: 'origin' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + recipient: { + name: 'recipient' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + sender: { + name: 'sender' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + sqrtPriceX96: { + name: 'sqrtPriceX96' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + tick: { + name: 'tick' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + token0: { + name: 'token0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + token1: { + name: 'token1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + transaction: { + name: 'transaction' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null } + } + } + } + } + Swap_filter: { + kind: 'INPUT_OBJECT' + name: 'Swap_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'transaction_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'transaction_' + type: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token0' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token0_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token0_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'token1' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token1_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token1_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'sender' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sender_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'sender_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'recipient_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'recipient_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lt' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_gte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_lte' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'origin_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'origin_not_contains' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + defaultValue: null + }, + { + name: 'amount0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amount1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amount1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'amountUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'amountUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPriceX96' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'sqrtPriceX96_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'sqrtPriceX96_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'logIndex_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'logIndex_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Swap_orderBy: { + name: 'Swap_orderBy' + enumValues: + | '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' + } + Tick: { + kind: 'OBJECT' + name: 'Tick' + fields: { + collectedFeesToken0: { + name: 'collectedFeesToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesToken1: { + name: 'collectedFeesToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + collectedFeesUSD: { + name: 'collectedFeesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + createdAtBlockNumber: { + name: 'createdAtBlockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + createdAtTimestamp: { + name: 'createdAtTimestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthOutside0X128: { + name: 'feeGrowthOutside0X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthOutside1X128: { + name: 'feeGrowthOutside1X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidityGross: { + name: 'liquidityGross' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + liquidityNet: { + name: 'liquidityNet' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + liquidityProviderCount: { + name: 'liquidityProviderCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + poolAddress: { + name: 'poolAddress' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + price0: { + name: 'price0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + price1: { + name: 'price1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + tickIdx: { + name: 'tickIdx' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TickDayData: { + kind: 'OBJECT' + name: 'TickDayData' + fields: { + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + feeGrowthOutside0X128: { + name: 'feeGrowthOutside0X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feeGrowthOutside1X128: { + name: 'feeGrowthOutside1X128' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidityGross: { + name: 'liquidityGross' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + liquidityNet: { + name: 'liquidityNet' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + tick: { + name: 'tick' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TickDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'TickDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_' + type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityGross_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TickDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TickDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + TickDayData_orderBy: { + name: 'TickDayData_orderBy' + enumValues: + | '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' + } + TickHourData: { + kind: 'OBJECT' + name: 'TickHourData' + fields: { + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + liquidityGross: { + name: 'liquidityGross' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + liquidityNet: { + name: 'liquidityNet' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + periodStartUnix: { + name: 'periodStartUnix' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + pool: { + name: 'pool' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + tick: { + name: 'tick' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null } + } + } + volumeToken0: { + name: 'volumeToken0' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeToken1: { + name: 'volumeToken1' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TickHourData_filter: { + kind: 'INPUT_OBJECT' + name: 'TickHourData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tick' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tick_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tick_' + type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityGross_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TickHourData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TickHourData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + TickHourData_orderBy: { + name: 'TickHourData_orderBy' + enumValues: + | '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' + } + Tick_filter: { + kind: 'INPUT_OBJECT' + name: 'Tick_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolAddress' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolAddress_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolAddress_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'poolAddress_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'tickIdx_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tickIdx_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'pool_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'pool_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityGross_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityGross_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityNet_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityNet_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'price1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'price1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken0_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken0_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesToken1_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesToken1_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'collectedFeesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'collectedFeesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtTimestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtTimestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'createdAtBlockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'liquidityProviderCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'liquidityProviderCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside0X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feeGrowthOutside1X128_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Tick_orderBy: { + name: 'Tick_orderBy' + enumValues: + | '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' + } + Timestamp: unknown + Token: { + kind: 'OBJECT' + name: 'Token' + fields: { + decimals: { + name: 'decimals' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + derivedETH: { + name: 'derivedETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + name: { + name: 'name' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + poolCount: { + name: 'poolCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + symbol: { + name: 'symbol' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + tokenDayData: { + name: 'tokenDayData' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null } + } + } + } + } + totalSupply: { + name: 'totalSupply' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + totalValueLocked: { + name: 'totalValueLocked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSD: { + name: 'totalValueLockedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSDUntracked: { + name: 'totalValueLockedUSDUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volume: { + name: 'volume' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + whitelistPools: { + name: 'whitelistPools' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null } + } + } + } + } + } + } + TokenDayData: { + kind: 'OBJECT' + name: 'TokenDayData' + fields: { + close: { + name: 'close' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + high: { + name: 'high' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + low: { + name: 'low' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + open: { + name: 'open' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + priceUSD: { + name: 'priceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token: { + name: 'token' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + totalValueLocked: { + name: 'totalValueLocked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSD: { + name: 'totalValueLockedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volume: { + name: 'volume' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TokenDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'volume' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volume_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + TokenDayData_orderBy: { + name: 'TokenDayData_orderBy' + enumValues: + | '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' + } + TokenHourData: { + kind: 'OBJECT' + name: 'TokenHourData' + fields: { + close: { + name: 'close' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + high: { + name: 'high' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + low: { + name: 'low' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + open: { + name: 'open' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + periodStartUnix: { + name: 'periodStartUnix' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + priceUSD: { + name: 'priceUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + token: { + name: 'token' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null } + } + } + totalValueLocked: { + name: 'totalValueLocked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + totalValueLockedUSD: { + name: 'totalValueLockedUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + untrackedVolumeUSD: { + name: 'untrackedVolumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volume: { + name: 'volume' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + TokenHourData_filter: { + kind: 'INPUT_OBJECT' + name: 'TokenHourData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'periodStartUnix_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'periodStartUnix_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'token_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'token_' + type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + defaultValue: null + }, + { + name: 'volume' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volume_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'priceUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'priceUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'open_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'open_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'high_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'high_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'low_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'low_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'close_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'close_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenHourData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'TokenHourData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + TokenHourData_orderBy: { + name: 'TokenHourData_orderBy' + enumValues: + | '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' + } + Token_filter: { + kind: 'INPUT_OBJECT' + name: 'Token_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'symbol_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'symbol_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lt' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_gte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_lte' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'name_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_contains_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_starts_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'name_not_ends_with_nocase' + type: { kind: 'SCALAR'; name: 'String'; ofType: null } + defaultValue: null + }, + { + name: 'decimals' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'decimals_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'decimals_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'totalSupply_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalSupply_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volume' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volume_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volume_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'untrackedVolumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'poolCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'poolCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLocked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLocked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'totalValueLockedUSDUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'derivedETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'derivedETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'derivedETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_not' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_not_contains' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_not_contains_nocase' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'whitelistPools_' + type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null } + defaultValue: null + }, + { + name: 'tokenDayData_' + type: { + kind: 'INPUT_OBJECT' + name: 'TokenDayData_filter' + ofType: null + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null } + } + defaultValue: null + }, + ] + } + Token_orderBy: { + name: 'Token_orderBy' + enumValues: + | 'id' + | 'symbol' + | 'name' + | 'decimals' + | 'totalSupply' + | 'volume' + | 'volumeUSD' + | 'untrackedVolumeUSD' + | 'feesUSD' + | 'txCount' + | 'poolCount' + | 'totalValueLocked' + | 'totalValueLockedUSD' + | 'totalValueLockedUSDUntracked' + | 'derivedETH' + | 'whitelistPools' + | 'tokenDayData' + } + Transaction: { + kind: 'OBJECT' + name: 'Transaction' + fields: { + blockNumber: { + name: 'blockNumber' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + burns: { + name: 'burns' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null } + } + } + } + } + collects: { + name: 'collects' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null } + } + } + } + } + flashed: { + name: 'flashed' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null } + } + } + } + } + gasPrice: { + name: 'gasPrice' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + gasUsed: { + name: 'gasUsed' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + mints: { + name: 'mints' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null } + } + } + } + } + swaps: { + name: 'swaps' + type: { + kind: 'NON_NULL' + name: never + ofType: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null } + } + } + } + } + timestamp: { + name: 'timestamp' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + } + } + Transaction_filter: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'blockNumber' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'blockNumber_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'blockNumber_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'timestamp_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'timestamp_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasUsed_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasUsed_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasPrice' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'gasPrice_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'gasPrice_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'mints_' + type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null } + defaultValue: null + }, + { + name: 'burns_' + type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null } + defaultValue: null + }, + { + name: 'swaps_' + type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null } + defaultValue: null + }, + { + name: 'flashed_' + type: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null } + defaultValue: null + }, + { + name: 'collects_' + type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'Transaction_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + Transaction_orderBy: { + name: 'Transaction_orderBy' + enumValues: + | 'id' + | 'blockNumber' + | 'timestamp' + | 'gasUsed' + | 'gasPrice' + | 'mints' + | 'burns' + | 'swaps' + | 'flashed' + | 'collects' + } + UniswapDayData: { + kind: 'OBJECT' + name: 'UniswapDayData' + fields: { + date: { + name: 'date' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + feesUSD: { + name: 'feesUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + id: { + name: 'id' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + tvlUSD: { + name: 'tvlUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + txCount: { + name: 'txCount' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + volumeETH: { + name: 'volumeETH' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSD: { + name: 'volumeUSD' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + volumeUSDUntracked: { + name: 'volumeUSDUntracked' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + } + } + UniswapDayData_filter: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + isOneOf: false + inputFields: [ + { + name: 'id' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_not' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lt' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_gte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_lte' + type: { kind: 'SCALAR'; name: 'ID'; ofType: null } + defaultValue: null + }, + { + name: 'id_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'id_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_not' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lt' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_gte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_lte' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + defaultValue: null + }, + { + name: 'date_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'date_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeETH' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeETH_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeETH_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSDUntracked' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'volumeUSDUntracked_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'feesUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'feesUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_not' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lt' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_gte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_lte' + type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + defaultValue: null + }, + { + name: 'txCount_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'txCount_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_not' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lt' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_gte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_lte' + type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + defaultValue: null + }, + { + name: 'tvlUSD_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: 'tvlUSD_not_in' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null } + } + } + defaultValue: null + }, + { + name: '_change_block' + type: { + kind: 'INPUT_OBJECT' + name: 'BlockChangedFilter' + ofType: null + } + defaultValue: null + }, + { + name: 'and' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + ofType: null + } + } + defaultValue: null + }, + { + name: 'or' + type: { + kind: 'LIST' + name: never + ofType: { + kind: 'INPUT_OBJECT' + name: 'UniswapDayData_filter' + ofType: null + } + } + defaultValue: null + }, + ] + } + UniswapDayData_orderBy: { + name: 'UniswapDayData_orderBy' + enumValues: + | 'id' + | 'date' + | 'volumeETH' + | 'volumeUSD' + | 'volumeUSDUntracked' + | 'feesUSD' + | 'txCount' + | 'tvlUSD' + } + _Block_: { + kind: 'OBJECT' + name: '_Block_' + fields: { + hash: { + name: 'hash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + number: { + name: 'number' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + parentHash: { + name: 'parentHash' + type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null } + } + timestamp: { + name: 'timestamp' + type: { kind: 'SCALAR'; name: 'Int'; ofType: null } + } + } + } + _Meta_: { + kind: 'OBJECT' + name: '_Meta_' + fields: { + block: { + name: 'block' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null } + } + } + deployment: { + name: 'deployment' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'String'; ofType: null } + } + } + hasIndexingErrors: { + name: 'hasIndexingErrors' + type: { + kind: 'NON_NULL' + name: never + ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null } + } + } + } + } + _SubgraphErrorPolicy_: { + name: '_SubgraphErrorPolicy_' + enumValues: 'allow' | 'deny' + } + } +} -import * as gqlTada from 'gql.tada'; +import * as gqlTada from 'gql.tada' From 8efb5ace6641464b02d7ffce07b6d8afa2f44d49 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Tue, 28 May 2024 22:50:57 +0000 Subject: [PATCH 034/119] feat(pkgs/graph-client): move to new graph-client --- apps/evm/src/app/(landing)/api/stats/route.ts | 106 +- .../src/app/analytics/api/bundles/route.ts | 10 - .../evm/src/app/analytics/api/tokens/route.ts | 18 - .../src/app/api/campaign/taskon/core/route.ts | 14 +- .../bentobox/components/BentoBoxKpis.tsx | 44 - .../src/app/internal/bentobox/lib/index.ts | 60 - apps/evm/src/app/internal/bentobox/page.tsx | 15 - .../internal/bentobox/strategies/lib/index.ts | 26 - .../app/internal/bentobox/strategies/page.tsx | 62 - apps/evm/src/app/internal/tokens/lib/index.ts | 48 +- .../src/app/pool/api/graphPool/[id]/route.ts | 4 +- apps/evm/src/app/pool/api/graphPools/route.ts | 4 +- apps/evm/src/app/pool/api/user/route.ts | 18 +- apps/evm/src/lib/analytics/use-furo-tokens.ts | 4 +- apps/evm/src/lib/graph.ts | 226 +- apps/evm/src/lib/hooks/api/useGraphPool.ts | 10 +- apps/evm/src/lib/hooks/api/useGraphPools.ts | 24 +- apps/evm/src/lib/hooks/usePoolsByTokenPair.ts | 7 +- apps/evm/src/lib/hooks/useTokenFromToken.ts | 20 - apps/evm/src/lib/schema.ts | 9 +- packages/graph-client-new/package.json | 4 +- packages/graph-client-new/scripts/t.ts | 6 +- .../scripts/update-schemas.ts | 1 + .../src/composite/sushi-day-datas.ts | 66 + .../src/composite/sushi-historic-pool.ts | 109 + .../src/lib/modifiers/add-chain-id.ts | 1 + .../modifiers/convert-id-to-multichain-id.ts | 2 +- .../src/lib/modifiers/copy-id-to-address.ts | 1 + .../graph-client-new/src/subgraphs/.gitignore | 0 .../src/subgraphs/blocks/blocks-cache.d.ts | 10 - .../src/subgraphs/blocks/blocks-env.d.ts | 42 - .../src/subgraphs/blocks/index.ts | 2 + .../blocks/queries/block-historic.ts | 54 + .../src/subgraphs/blocks/queries/blocks.ts | 6 +- .../src/subgraphs/bonds/bonds-cache.d.ts | 12 - .../src/subgraphs/bonds/bonds-env.d.ts | 93 - .../src/subgraphs/furo/graphql.ts | 8 + .../src/subgraphs/furo/index.ts | 1 + .../src/subgraphs/furo/queries/tokens.ts | 49 + .../src/subgraphs/furo/schema.graphql | 2096 +++++++++++++++++ .../master-chef-v1/master-chef-v1-cache.d.ts | 10 - .../master-chef-v1/master-chef-v1-env.d.ts | 54 - .../master-chef-v2/master-chef-v2-cache.d.ts | 10 - .../master-chef-v2/master-chef-v2-env.d.ts | 51 - .../subgraphs/mini-chef/mini-chef-cache.d.ts | 10 - .../subgraphs/mini-chef/mini-chef-env.d.ts | 54 - .../subgraphs/sushi-bar/sushi-bar-cache.d.ts | 12 - .../subgraphs/sushi-bar/sushi-bar-env.d.ts | 64 - .../src/subgraphs/sushi-v2/index.ts | 1 + .../subgraphs/sushi-v2/queries/day-datas.ts | 42 + .../subgraphs/sushi-v2/sushi-v2-cache.d.ts | 28 - .../src/subgraphs/sushi-v2/sushi-v2-env.d.ts | 84 - .../sushi-v2/transforms/pool-v2-to-v3.ts | 45 + .../subgraphs/sushi-v3/queries/day-datas.ts | 4 +- .../sushi-v3/queries/pools-by-token-pair.ts | 4 +- .../subgraphs/sushi-v3/sushi-v3-cache.d.ts | 26 - .../src/subgraphs/sushi-v3/sushi-v3-env.d.ts | 108 - packages/graph-client-new/tsconfig.json | 6 + .../src/config/subgraph/subgraphs/blocks.ts | 4 +- packages/sushi/src/config/sushiswap-v2.ts | 2 +- pnpm-lock.yaml | 11 +- 61 files changed, 2699 insertions(+), 1223 deletions(-) delete mode 100644 apps/evm/src/app/analytics/api/bundles/route.ts delete mode 100644 apps/evm/src/app/analytics/api/tokens/route.ts delete mode 100644 apps/evm/src/app/internal/bentobox/components/BentoBoxKpis.tsx delete mode 100644 apps/evm/src/app/internal/bentobox/lib/index.ts delete mode 100644 apps/evm/src/app/internal/bentobox/page.tsx delete mode 100644 apps/evm/src/app/internal/bentobox/strategies/lib/index.ts delete mode 100644 apps/evm/src/app/internal/bentobox/strategies/page.tsx delete mode 100644 apps/evm/src/lib/hooks/useTokenFromToken.ts create mode 100644 packages/graph-client-new/src/composite/sushi-day-datas.ts create mode 100644 packages/graph-client-new/src/composite/sushi-historic-pool.ts create mode 100644 packages/graph-client-new/src/subgraphs/.gitignore delete mode 100644 packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts delete mode 100644 packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/furo/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/furo/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts create mode 100644 packages/graph-client-new/src/subgraphs/furo/schema.graphql delete mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts diff --git a/apps/evm/src/app/(landing)/api/stats/route.ts b/apps/evm/src/app/(landing)/api/stats/route.ts index a644f51f51..3ba516ab57 100644 --- a/apps/evm/src/app/(landing)/api/stats/route.ts +++ b/apps/evm/src/app/(landing)/api/stats/route.ts @@ -1,18 +1,15 @@ -import { getBuiltGraphSDK } from '@sushiswap/graph-client' import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' import { getSushiV2Factory } from '@sushiswap/graph-client-new/sushi-v2' +import { getSushiV3Factory } from '@sushiswap/graph-client-new/sushi-v3' import { NextResponse } from 'next/server' import { DISABLED_ANALYTICS_CHAIN_IDS } from 'src/config' -import { getAllPrices } from 'src/lib/get-all-prices' import { ChainId } from 'sushi/chain' import { - BENTOBOX_SUPPORTED_CHAIN_IDS, SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, } from 'sushi/config' import { SUSHI_ADDRESS } from 'sushi/currency' import { formatNumber, formatUSD } from 'sushi/format' -import { getAddress } from 'viem' const getSushiPriceUSD = async () => { const url = `https://api.sushi.com/price/v1/1/${ @@ -30,92 +27,43 @@ interface ExchangeData { } const getV2Data = async () => { - const sdk = getBuiltGraphSDK() - - // const { data } = await fetchMultichain({ - // chainIds: SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.filter( - // (c) => - // !DISABLED_ANALYTICS_CHAIN_IDS.includes( - // c as (typeof DISABLED_ANALYTICS_CHAIN_IDS)[number], - // ), - // ), - // fetch: getSushiV2Factory, - // }) - - const { factories } = await sdk.Factories({ + const { data: factories } = await fetchMultichain({ chainIds: SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.filter( (c) => !DISABLED_ANALYTICS_CHAIN_IDS.includes( c as (typeof DISABLED_ANALYTICS_CHAIN_IDS)[number], ), ), + fetch: getSushiV2Factory, }) return { - v2: factories - .filter(({ id }) => id !== 'ALL') - .reduce( - (acc, cur) => { - return { - tvlUSD: acc.tvlUSD + Number(cur.totalLiquidityUSD), - volumeUSD: acc.volumeUSD + Number(cur.totalVolumeUSD), - pairCount: acc.pairCount + Number(cur.pairCount), - } - }, - { - tvlUSD: 0, - volumeUSD: 0, - pairCount: 0, - }, - ), - trident: factories - .filter(({ id }) => id === 'ALL') - .reduce( - (acc, cur) => { - return { - tvlUSD: acc.tvlUSD + Number(cur.totalLiquidityUSD), - volumeUSD: acc.volumeUSD + Number(cur.totalVolumeUSD), - pairCount: acc.pairCount + Number(cur.pairCount), - } - }, - { - tvlUSD: 0, - volumeUSD: 0, - pairCount: 0, - }, - ), + v2: factories.reduce( + (acc, cur) => { + return { + tvlUSD: acc.tvlUSD + Number(cur.totalLiquidityUSD), + volumeUSD: acc.volumeUSD + Number(cur.totalVolumeUSD), + pairCount: acc.pairCount + Number(cur.poolCount), + } + }, + { + tvlUSD: 0, + volumeUSD: 0, + pairCount: 0, + }, + ), } } -const getBentoTvl = async () => { - const sdk = getBuiltGraphSDK() - const { rebases } = await sdk.RebasesByChainIds({ - first: 1000, - chainIds: BENTOBOX_SUPPORTED_CHAIN_IDS, - }) - const prices = await getAllPrices() - return rebases.reduce((acc, cur) => { - const price = - prices?.[cur.chainId as keyof typeof prices]?.[cur.id] || - prices?.[cur.chainId as keyof typeof prices]?.[getAddress(cur.id)] - if (!price) return acc - - return ( - acc + - (Number(cur.elastic) / 10 ** Number(cur.token.decimals)) * Number(price) - ) - }, 0) -} - const getV3Data = async () => { - const sdk = getBuiltGraphSDK() - const { factories } = await sdk.V3Factories({ + const { data: factories } = await fetchMultichain({ chainIds: SUSHISWAP_V3_SUPPORTED_CHAIN_IDS.filter( (c) => !DISABLED_ANALYTICS_CHAIN_IDS.includes( c as (typeof DISABLED_ANALYTICS_CHAIN_IDS)[number], ), ), + fetch: getSushiV3Factory, }) return factories.reduce( @@ -137,23 +85,15 @@ const getV3Data = async () => { export const revalidate = 3600 export async function GET() { - const [sushiPrice, bentoTVL, v2Data, v3Data] = await Promise.all([ + const [sushiPrice, v2Data, v3Data] = await Promise.all([ getSushiPriceUSD(), - getBentoTvl(), getV2Data(), getV3Data(), ]) - let totalTVL = - Number(bentoTVL) + Number(v2Data.v2.tvlUSD) + Number(v3Data.tvlUSD) - let totalVolume = - Number(v2Data.v2.volumeUSD) + - Number(v2Data.trident.volumeUSD) + - Number(v3Data.volumeUSD) - const totalPoolCount = - Number(v2Data.v2.pairCount) + - Number(v2Data.trident.pairCount) + - Number(v3Data.pairCount) + let totalTVL = Number(v2Data.v2.tvlUSD) + Number(v3Data.tvlUSD) + let totalVolume = Number(v2Data.v2.volumeUSD) + Number(v3Data.volumeUSD) + const totalPoolCount = Number(v2Data.v2.pairCount) + Number(v3Data.pairCount) totalTVL = totalTVL > 10_000_000_000 ? 0 : totalTVL totalVolume = totalVolume > 5_000_000_000_000 ? 0 : totalVolume diff --git a/apps/evm/src/app/analytics/api/bundles/route.ts b/apps/evm/src/app/analytics/api/bundles/route.ts deleted file mode 100644 index 77d99e89d2..0000000000 --- a/apps/evm/src/app/analytics/api/bundles/route.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { NextResponse } from 'next/server' - -import { getBundles } from '../../../../lib/graph' - -export const revalidate = 3600 - -export async function GET() { - const bundles = await getBundles() - return NextResponse.json(bundles) -} diff --git a/apps/evm/src/app/analytics/api/tokens/route.ts b/apps/evm/src/app/analytics/api/tokens/route.ts deleted file mode 100644 index 923f6ca99b..0000000000 --- a/apps/evm/src/app/analytics/api/tokens/route.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { NextResponse } from 'next/server' - -import { GetTokensQuery, getTokens } from '../../../../lib/graph' - -export const revalidate = 3600 - -export async function GET(request: Request) { - const { searchParams } = new URL(request.url) - const networks = searchParams.get('networks') - const where = searchParams.get('where') - const pagination = searchParams.get('pagination') - const pairs = await getTokens({ - networks, - where, - pagination, - } as GetTokensQuery) - return NextResponse.json(pairs) -} diff --git a/apps/evm/src/app/api/campaign/taskon/core/route.ts b/apps/evm/src/app/api/campaign/taskon/core/route.ts index a11d80b6c0..caed28293b 100644 --- a/apps/evm/src/app/api/campaign/taskon/core/route.ts +++ b/apps/evm/src/app/api/campaign/taskon/core/route.ts @@ -1,7 +1,6 @@ -import { getBuiltGraphSDK } from '@sushiswap/graph-client' +import { getSushiV3Mints } from '@sushiswap/graph-client-new/sushi-v3' import { NextRequest, NextResponse } from 'next/server' import { ChainId } from 'sushi/chain' -import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { getAddress } from 'viem' import { z } from 'zod' @@ -16,12 +15,13 @@ export async function GET(request: NextRequest) { try { const { address } = schema.parse(params) - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[ChainId.CORE], - }) - const { mints } = await sdk.V3Mints({ - where: { origin: address, pool: poolAddress }, + const mints = await getSushiV3Mints({ + chainId: ChainId.CORE, + where: { + origin: address, + pool: poolAddress, + }, }) if (mints.length > 0) { diff --git a/apps/evm/src/app/internal/bentobox/components/BentoBoxKpis.tsx b/apps/evm/src/app/internal/bentobox/components/BentoBoxKpis.tsx deleted file mode 100644 index 5b8d7417ce..0000000000 --- a/apps/evm/src/app/internal/bentobox/components/BentoBoxKpis.tsx +++ /dev/null @@ -1,44 +0,0 @@ -'use client' - -import { formatNumber } from 'sushi/format' -import useSWR from 'swr' - -import { getBentoBoxKpis } from '../lib' - -// const stats = [ -// { name: 'Total Subscribers', value: '71,897' }, -// { name: 'Avg. Open Rate', value: '58.16%' }, -// { name: 'Avg. Click Rate', value: '24.57%' }, -// ] - -interface KpiProps { - kpi: { name: string; value: number } -} - -function Kpi({ kpi }: KpiProps) { - return ( -
-
- {kpi.name} -
-
- {formatNumber(kpi.value)} -
-
- ) -} - -export function BentoBoxKpis() { - const { data: kpis } = useSWR('bentobox-kpis', () => getBentoBoxKpis()) - - return ( -
- {kpis?.map((kpi) => ( - - ))} -
- ) -} diff --git a/apps/evm/src/app/internal/bentobox/lib/index.ts b/apps/evm/src/app/internal/bentobox/lib/index.ts deleted file mode 100644 index 0ec6049459..0000000000 --- a/apps/evm/src/app/internal/bentobox/lib/index.ts +++ /dev/null @@ -1,60 +0,0 @@ -import { ChainId } from 'sushi/chain' - -const reduceObjectArray = (arr: Record[]) => { - const keys = Object.keys(arr[0]) - - return Object.fromEntries( - keys.map((key) => [ - key, - arr.reduce((acc, cur) => Number(cur[key]) + acc, 0), - ]), - ) -} - -const keyTitleMap: Record = { - depositCount: 'Deposit Count', - withdrawCount: 'Withdraw Count', - transferCount: 'Transfer Count', - protocolCount: 'Protocol Count', - userCount: 'User Count', - tokenCount: 'Token Count', - masterContractCount: 'Master Contract Count', - cloneCount: 'Clone Count', - flashloanCount: 'Flashloan Count', - transactionCount: 'Transaction Count', - strategyCount: 'Strategy Count', - activeStrategyCount: 'Active Strategy Count', - pendingStrategyCount: 'Pending Strategy Count', -} - -export async function getBentoBoxKpis() { - const { getBuiltGraphSDK } = await import('@sushiswap/graph-client') - const sdk = getBuiltGraphSDK() - - const { crossChainBentoBoxKpis } = await sdk.CrossChainBentoBoxKpis({ - chainIds: [ - ChainId.ETHEREUM, - ChainId.POLYGON, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.FANTOM, - ChainId.GNOSIS, - ChainId.ARBITRUM, - ChainId.CELO, - ChainId.MOONRIVER, - ChainId.MOONBEAM, - ChainId.OPTIMISM, - ChainId.HARMONY, - // ChainId.KAVA, - ], - }) - - const reducedKpis = reduceObjectArray(crossChainBentoBoxKpis) - - const kpis = Object.entries(keyTitleMap).map(([key, title]) => ({ - name: title, - value: reducedKpis[key], - })) - - return kpis -} diff --git a/apps/evm/src/app/internal/bentobox/page.tsx b/apps/evm/src/app/internal/bentobox/page.tsx deleted file mode 100644 index 54a432bd32..0000000000 --- a/apps/evm/src/app/internal/bentobox/page.tsx +++ /dev/null @@ -1,15 +0,0 @@ -import { BentoBoxKpis } from './components/BentoBoxKpis' - -export default function BentoBoxPage() { - return ( -
-

BentoBox KPIs

-
-

- Cross Chain BentoBox Kpis -

- -
-
- ) -} diff --git a/apps/evm/src/app/internal/bentobox/strategies/lib/index.ts b/apps/evm/src/app/internal/bentobox/strategies/lib/index.ts deleted file mode 100644 index 5690637b51..0000000000 --- a/apps/evm/src/app/internal/bentobox/strategies/lib/index.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { ChainId } from 'sushi/chain' - -export async function getStrategies() { - const { getBuiltGraphSDK } = await import('@sushiswap/graph-client') - const sdk = getBuiltGraphSDK() - - const { crossChainStrategyKpis: data } = await sdk.CrossChainStrategyKpis({ - chainIds: [ - ChainId.ETHEREUM, - ChainId.POLYGON, - ChainId.AVALANCHE, - ChainId.BSC, - ChainId.FANTOM, - ChainId.GNOSIS, - ChainId.ARBITRUM, - ChainId.CELO, - ChainId.MOONRIVER, - ChainId.MOONBEAM, - ChainId.OPTIMISM, - ChainId.HARMONY, - // ChainId.KAVA, - ], - }) - - return data -} diff --git a/apps/evm/src/app/internal/bentobox/strategies/page.tsx b/apps/evm/src/app/internal/bentobox/strategies/page.tsx deleted file mode 100644 index f6e2653cbf..0000000000 --- a/apps/evm/src/app/internal/bentobox/strategies/page.tsx +++ /dev/null @@ -1,62 +0,0 @@ -'use client' - -import { ChevronDownIcon } from '@heroicons/react/24/outline' -import { NetworkSelector } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import React, { useMemo, useState } from 'react' -import { Chain, ChainId } from 'sushi/chain' -import useSWR from 'swr' - -import { getStrategies } from './lib' - -export default function BentoBoxStrategiesPage() { - const { data } = useSWR('bentobox-strategies', () => getStrategies()) - const strategyChainIds = useMemo( - () => - data?.reduce((acc, cur) => { - acc.push(cur.chainId as ChainId) - return acc - }, [] as ChainId[]), - [data], - ) - - const [selectedChainId, setSelectedChainId] = useState( - ChainId.ETHEREUM, - ) - const filteredStrategies = useMemo( - () => data?.filter((el) => el.chainId === selectedChainId), - [data, selectedChainId], - ) - - return ( -
-

- BentoBox Strategies -

- {strategyChainIds && ( - - - - )} -
- {filteredStrategies?.map((strategy) => ( -
-            {JSON.stringify(strategy, null, 2)}
-          
- ))} -
-
- ) -} diff --git a/apps/evm/src/app/internal/tokens/lib/index.ts b/apps/evm/src/app/internal/tokens/lib/index.ts index 043290c410..4a396cfc41 100644 --- a/apps/evm/src/app/internal/tokens/lib/index.ts +++ b/apps/evm/src/app/internal/tokens/lib/index.ts @@ -1,5 +1,7 @@ -import { getBuiltGraphSDK } from '@sushiswap/graph-client' +import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' +import { getSushiV2Tokens } from '@sushiswap/graph-client-new/sushi-v2' import { ChainId } from 'sushi/chain' +import { SushiSwapV2ChainId } from 'sushi/config' import { SUSHI_DEFAULT_TOKEN_LIST } from 'sushi/token-list' export type Token = Awaited>[0] @@ -8,29 +10,28 @@ export type Token = Awaited>[0] export async function getTokens({ chainIds, filter, -}: { chainIds: ChainId[]; filter?: string }) { - const sdk = getBuiltGraphSDK() - +}: { chainIds: SushiSwapV2ChainId[]; filter?: string }) { const defaultTokenList = await getDefaultTokenList() - const tokens = await sdk - .TokensByChainIds({ - chainIds, + const { data } = await fetchMultichain({ + chainIds, + fetch: getSushiV2Tokens, + variables: { orderBy: 'tradeVolumeUSD', where: { symbol_contains_nocase: filter }, - }) - .then(({ tokens }) => - tokens.map((token) => ({ - ...token, - listEntry: - defaultTokenList.find( - (entry) => - entry.address.toLowerCase() === - token.id.toLowerCase().split(':')[1] && - entry.chainId === token.chainId, - ) || null, - })), - ) + }, + }) + + const tokens = data.map((token) => ({ + ...token, + listEntry: + defaultTokenList.find( + (entry) => + entry.address.toLowerCase() === + token.id.toLowerCase().split(':')[1] && + entry.chainId === token.chainId, + ) || null, + })) const tokensCombined = new Map() tokens.forEach((token) => { @@ -39,9 +40,12 @@ export async function getTokens({ if (tokenCombined) { tokensCombined.set(token.id, { ...token, - volumeUSD: Number(token.volumeUSD) + Number(tokenCombined.volumeUSD), - totalLiquidity: + tradeVolumeUSD: String( + Number(token.tradeVolumeUSD) + Number(tokenCombined.tradeVolumeUSD), + ), + totalLiquidity: String( Number(token.totalLiquidity) + Number(tokenCombined.totalLiquidity), + ), }) } else { tokensCombined.set(token.id, token) diff --git a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts index 22eebef43a..52ca7db3c9 100644 --- a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts +++ b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts @@ -1,5 +1,5 @@ import { NextResponse } from 'next/server' -import { getGraphPool } from 'src/lib/graph' +import { getV2GraphPool } from 'src/lib/graph' import { z } from 'zod' export const revalidate = 15 @@ -18,6 +18,6 @@ export async function GET( return new Response(result.error.message, { status: 400 }) } - const pool = await getGraphPool(result.data.id) + const pool = await getV2GraphPool(result.data.id) return NextResponse.json(pool) } diff --git a/apps/evm/src/app/pool/api/graphPools/route.ts b/apps/evm/src/app/pool/api/graphPools/route.ts index b6dc1ebbaa..b4d393e457 100644 --- a/apps/evm/src/app/pool/api/graphPools/route.ts +++ b/apps/evm/src/app/pool/api/graphPools/route.ts @@ -1,5 +1,5 @@ import { NextResponse } from 'next/server' -import { getGraphPools } from 'src/lib/graph' +import { getV2GraphPools } from 'src/lib/graph' import { z } from 'zod' export const revalidate = 60 @@ -15,6 +15,6 @@ export async function GET(request: Request) { if (!result.success) { return new Response(result.error.message, { status: 422 }) } - const pool = await getGraphPools(result.data.ids) + const pool = await getV2GraphPools(result.data.ids) return NextResponse.json(pool) } diff --git a/apps/evm/src/app/pool/api/user/route.ts b/apps/evm/src/app/pool/api/user/route.ts index 15ee8c5145..3217f94ba6 100644 --- a/apps/evm/src/app/pool/api/user/route.ts +++ b/apps/evm/src/app/pool/api/user/route.ts @@ -1,17 +1,23 @@ import { NextResponse } from 'next/server' import { getUser } from 'src/lib/graph' import { ChainId } from 'sushi/chain' +import { isSushiSwapV2ChainId } from 'sushi/config' +import { Address } from 'viem' import { z } from 'zod' export const revalidate = 15 const schema = z.object({ - id: z.string(), - chainIds: z - .nullable(z.string()) - .transform((chainIds) => - chainIds?.split(',').map((chainId) => Number(chainId) as ChainId), - ), + id: z + .string() + .refine((id) => id.startsWith('0x')) + .transform((id) => id.toLowerCase() as Address), + chainIds: z.nullable(z.string()).transform((chainIds) => + chainIds + ?.split(',') + .map((chainId) => Number(chainId) as ChainId) + .filter(isSushiSwapV2ChainId), + ), }) // export const dynamic = 'auto' diff --git a/apps/evm/src/lib/analytics/use-furo-tokens.ts b/apps/evm/src/lib/analytics/use-furo-tokens.ts index 7c1e58fb18..e4421fbbeb 100644 --- a/apps/evm/src/lib/analytics/use-furo-tokens.ts +++ b/apps/evm/src/lib/analytics/use-furo-tokens.ts @@ -1,12 +1,12 @@ 'use client' import { GetApiInputFromOutput, parseArgs } from '@sushiswap/client' -import { Furo_token } from '@sushiswap/graph-client' import { useAllPrices } from '@sushiswap/react-query' import { useMemo } from 'react' import { Amount, Token } from 'sushi/currency' import useSWR from 'swr' +import { FuroTokens } from '@sushiswap/graph-client-new/furo' import { furoTokensSchema } from '../schema' export type GetFuroTokenArgs = GetApiInputFromOutput< @@ -22,7 +22,7 @@ export const getFuroTokensUrl = (args: GetFuroTokenArgs) => `/analytics/api/furoTokens${parseArgs(args)}` export function useFuroTokens(args: GetFuroTokenArgs) { - const { data: furoTokens, isValidating } = useSWR( + const { data: furoTokens, isValidating } = useSWR( getFuroTokensUrl(args), (url) => fetch(url).then((data) => data.json()), ) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 9e80bf77d6..ca5d85968f 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -1,178 +1,120 @@ +import { getCombinedUserPositions } from '@sushiswap/graph-client-new/composite/combined-user-positions' +import { getSushiDayDatas } from '@sushiswap/graph-client-new/composite/sushi-day-datas' +import { getFuroTokens as _getFuroTokens } from '@sushiswap/graph-client-new/furo' +import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' import { - Bundle, - Pagination, - QuerytokensByChainIdsArgs, - getBuiltGraphSDK, -} from '@sushiswap/graph-client' - + getSushiV2Pool, + getSushiV2Pools, +} from '@sushiswap/graph-client-new/sushi-v2' +import { getSushiV3PoolsByTokenPair } from '@sushiswap/graph-client-new/sushi-v3' import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { getChainIdAddressFromId } from 'sushi' +import { + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + SushiSwapV2ChainId, + isSushiSwapV2ChainId, + isSushiSwapV3ChainId, +} from 'sushi/config' +import { Address } from 'viem' +import { furoTokensSchema } from './schema' + +export async function getUser(args: { + id?: Address + chainIds?: SushiSwapV2ChainId[] +}) { + if (!args.id) return [] -import { ChainId, chainShortName } from 'sushi/chain' + const { data } = await getCombinedUserPositions({ + chainIds: args.chainIds || [...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS], + user: args.id.toLowerCase() as Address, + }) -import { bentoBoxTokensSchema, furoTokensSchema } from './schema' + return data +} -const sdk = getBuiltGraphSDK() +export const getV2GraphPool = async (id: string) => { + const split = getChainIdAddressFromId(id) -export async function getUser(args: { id?: string; chainIds?: ChainId[] }) { - if (!args.id) return [] - const { crossChainUserPositions: user } = await sdk.CrossChainUserPositions({ - chainIds: args.chainIds || SUPPORTED_CHAIN_IDS, - id: args.id.toLowerCase(), - }) - return user -} + if (!isSushiSwapV2ChainId(split.chainId)) throw Error('Invalid chain id') -export const getGraphPool = async (id: string) => { - if (!id.includes(':')) throw Error('Invalid pair id') - // Migrating to new format, graph-client uses the deprecated one - const split = id.split(':') - const { pair } = await sdk.PairById({ - id: `${chainShortName[split[0]]}:${split[1]}`, + const pool = await getSushiV2Pool({ + chainId: split.chainId, + id: split.address, }) - return pair + + return pool } -export const getGraphPools = async (ids: string[]) => { +export const getV2GraphPools = async (ids: string[]) => { if (!ids.every((id) => id.includes(':'))) throw Error('Invalid pair ids') // Migrating to new format, graph-client uses the deprecated one - const addresses = ids.map((id) => id.split(':')[1]) + const addresses = ids.map((id) => id.split(':')[1]) as Address[] // PairsByIds would be better, not implemented though... // Need to hack around - const { pairs } = await sdk.PairsByChainIds({ - chainIds: Array.from(new Set(ids.map((id) => Number(id.split(':')[0])))), - where: { - id_in: addresses, + + const chainIds = Array.from( + new Set(ids.map((id) => Number(id.split(':')[0]))), + ) as SushiSwapV2ChainId[] + + const { data: pools } = await fetchMultichain({ + chainIds, + fetch: getSushiV2Pools, + variables: { + where: { + id_in: addresses, + }, }, }) return ( - pairs - .map((pair) => ({ ...pair, id: `${pair.chainId}:${pair.address}` })) + pools + .map((pool) => ({ ...pool, id: `${pool.chainId}:${pool.address}` })) // To prevent possible (although unlikely) collisions - .filter((pair) => ids.includes(pair.id)) + .filter((pool) => ids.includes(pool.id)) ) } -export const getPoolsByTokenPair = async ( +export const getV3PoolsByTokenPair = async ( tokenId0: string, tokenId1: string, ) => { - const [chainId0, tokenAddress0] = tokenId0.split(':') - if (!chainId0 || !tokenAddress0) throw Error('Invalid token0 id') - - const [chainId1, tokenAddress1] = tokenId1.split(':') - if (!chainId1 || !tokenAddress1) throw Error('Invalid token1 id') + const { chainId: chainId0, address: address0 } = + getChainIdAddressFromId(tokenId0) + const { chainId: chainId1, address: address1 } = + getChainIdAddressFromId(tokenId1) if (chainId0 !== chainId1) throw Error('Tokens must be on the same chain') - const { pools } = await sdk.V3PoolsByTokenPair({ - tokenId0, - tokenId1, - }) - - return pools -} - -export const getBundles = async () => { - const { bundles } = await sdk.Bundles({ - chainIds: SUPPORTED_CHAIN_IDS, - }) - - return bundles.reduce>>( - (acc, cur) => { - acc[cur.chainId] = cur - return acc - }, - {}, - ) -} - -export type GetTokensQuery = Omit< - QuerytokensByChainIdsArgs, - 'where' | 'pagination' -> & { - networks: string - where?: string - pagination: string -} - -export const getTokens = async (query?: GetTokensQuery) => { - try { - const pagination: Pagination = query?.pagination - ? JSON.parse(query?.pagination) - : { - pageIndex: 0, - pageSize: 20, - } - const first = - pagination?.pageIndex && pagination?.pageSize - ? pagination.pageIndex * pagination.pageSize - : 20 - const skip = 0 - const where = { ...(query?.where && { ...JSON.parse(query.where) }) } - const orderBy = query?.orderBy || 'tradeVolumeUSD' - const orderDirection = query?.orderDirection || 'desc' - const chainIds = query?.networks - ? JSON.parse(query.networks) - : SUPPORTED_CHAIN_IDS - const { tokens } = await sdk.TokensByChainIds({ - first, - skip, - pagination, - where, - orderBy, - orderDirection, - chainIds, - }) - return tokens - } catch (error: any) { - console.error(error) - throw new Error(error) + if (!isSushiSwapV3ChainId(chainId0)) { + throw Error('Invalid chain id') } -} -export const getBentoBoxTokens = async ( - query: (typeof bentoBoxTokensSchema)['_output'], -) => { - try { - const { rebases } = await sdk.RebasesByChainIds({ - ...(query.tokenSymbols && - query.tokenSymbols?.length > 0 && { - where: { - token_: { - or: query.tokenSymbols.map((symbol) => ({ - symbol_contains_nocase: symbol, - })), - }, - }, - }), - chainIds: query.chainIds, - }) + const pools = await getSushiV3PoolsByTokenPair({ + chainId: chainId0, + token0: address0, + token1: address1, + }) - return rebases - } catch (error) { - throw new Error(error as string) - } + return pools } export const getFuroTokens = async ( query: (typeof furoTokensSchema)['_output'], ) => { try { - const { tokens } = await sdk.furoTokensByChainIds({ - ...(query.tokenSymbols && - query.tokenSymbols?.length > 0 && { - where: { - or: query.tokenSymbols.map((symbol) => ({ - symbol_contains_nocase: symbol, - })), - }, - }), - // orderBy, - // orderDirection, + const { data: tokens } = await fetchMultichain({ chainIds: query.chainIds, + fetch: _getFuroTokens, + variables: { + where: { + or: + query?.tokenSymbols?.map((symbol) => ({ + symbol_contains_nocase: symbol, + })) || [], + }, + }, }) return tokens @@ -185,23 +127,23 @@ export const getCharts = async (query?: { networks: string }) => { const chainIds = query?.networks ? JSON.parse(query.networks) : SUPPORTED_CHAIN_IDS - const { factoryDaySnapshots } = await sdk.UniswapDayDatas({ - chainIds: chainIds, - first: 1000, + + const { data: daySnapshots } = await getSushiDayDatas({ + chainIds, }) const dateSnapshotMap = new Map() - for (const snapshot of factoryDaySnapshots) { + for (const snapshot of daySnapshots) { const value = dateSnapshotMap.get(snapshot.date) dateSnapshotMap.set( snapshot.date, value ? [ - value[0] + Number(snapshot.totalLiquidityUSD), - value[1] + Number(snapshot.dailyVolumeUSD), + value[0] + Number(snapshot.tvlUSD), + value[1] + Number(snapshot.volumeUSD), ] - : [Number(snapshot.totalLiquidityUSD), Number(snapshot.dailyVolumeUSD)], + : [Number(snapshot.tvlUSD), Number(snapshot.volumeUSD)], ) } diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index d153b2cdc7..1e5229f58f 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -1,7 +1,7 @@ 'use client' import { Pool } from '@sushiswap/client' -import { Pair } from '@sushiswap/graph-client' +import { SushiV2Pool } from '@sushiswap/graph-client-new/sushi-v2' import { useMemo } from 'react' import { Amount } from 'sushi/currency' import useSWR from 'swr' @@ -18,7 +18,7 @@ export const useGraphPool = (pool: Pool) => { isLoading, isValidating, error, - } = useSWR(getGraphPoolUrl(pool.id), async (url) => + } = useSWR(getGraphPoolUrl(pool.id), async (url) => fetch(url).then((data) => data.json()), ) @@ -33,8 +33,8 @@ export const useGraphPool = (pool: Pool) => { token0, token1, liquidityToken, - liquidityNative: graphPool ? Number(graphPool?.liquidityNative) : null, - liquidityUSD: graphPool ? Number(graphPool?.liquidityUSD) : null, + liquidityNative: graphPool ? Number(graphPool?.reserveETH) : null, + liquidityUSD: graphPool ? Number(graphPool?.reserveUSD) : null, liquidity1dChange: graphPool ? Number(graphPool?.liquidity1dChange ?? 0) : null, @@ -60,7 +60,7 @@ export const useGraphPool = (pool: Pool) => { : null, totalSupply: liquidityToken && graphPool - ? Amount.fromRawAmount(liquidityToken, graphPool.liquidity) + ? Amount.fromRawAmount(liquidityToken, graphPool.totalSupply) : null, }, } diff --git a/apps/evm/src/lib/hooks/api/useGraphPools.ts b/apps/evm/src/lib/hooks/api/useGraphPools.ts index 7917712fb6..e97204520c 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPools.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPools.ts @@ -5,21 +5,21 @@ import { useMemo } from 'react' import useSWR from 'swr' import { usePools } from '@sushiswap/client/hooks' -import { getGraphPools } from '../../graph' +import { getV2GraphPools } from '../../graph' function transformGraphPool( - graphPool: Awaited>[0], + graphPool: Awaited>[0], ): Pool { return { id: graphPool.id, address: graphPool.address, - name: graphPool.name, + name: `${graphPool.token0.symbol}-${graphPool.token1.symbol}`, chainId: graphPool.chainId, protocol: Protocol.SUSHISWAP_V2, - swapFee: Number(graphPool.swapFee) / 10000, + swapFee: 30 / 10000, twapEnabled: false, - totalSupply: String(graphPool.liquidity), - liquidityUSD: String(graphPool.liquidityUSD), + totalSupply: String(graphPool.totalSupply), + liquidityUSD: String(graphPool.reserveUSD), volumeUSD: String(graphPool.volumeUSD), feeApr1h: 0, feeApr1d: 0, @@ -58,14 +58,14 @@ function transformGraphPool( address: graphPool.token0.id, name: graphPool.token0.name, symbol: graphPool.token0.symbol, - decimals: graphPool.token0.decimals, + decimals: Number(graphPool.token0.decimals), }, token1: { id: `${graphPool.chainId}:${graphPool.token1.id}`, address: graphPool.token1.id, name: graphPool.token1.name, symbol: graphPool.token1.symbol, - decimals: graphPool.token1.decimals, + decimals: Number(graphPool.token1.decimals), }, incentives: [], hasEnabledSteerVault: false, @@ -85,9 +85,9 @@ export const useGraphPools = (poolIds: string[]): Pools => { data: graphPools, isLoading: isGraphPoolsLoading, error: graphPoolsError, - } = useSWR>>( + } = useSWR>>( poolIds.length > 0 ? getGraphPoolsUrl(poolIds) : null, - async () => getGraphPools(poolIds), + async () => getV2GraphPools(poolIds), ) const { @@ -119,8 +119,8 @@ export const useGraphPools = (poolIds: string[]): Pools => { return { ...pool, - totalSupply: String(graphPool.liquidity), - liquidityUSD: String(graphPool.liquidityUSD), + totalSupply: String(graphPool.totalSupply), + liquidityUSD: String(graphPool.reserveUSD), volumeUSD: String(graphPool.volumeUSD), feeApr: Number(pool.feeApr1d), totalApr: Number(pool.feeApr1d) + pool.incentiveApr, diff --git a/apps/evm/src/lib/hooks/usePoolsByTokenPair.ts b/apps/evm/src/lib/hooks/usePoolsByTokenPair.ts index 0716cb953f..6bfcc9cf7d 100644 --- a/apps/evm/src/lib/hooks/usePoolsByTokenPair.ts +++ b/apps/evm/src/lib/hooks/usePoolsByTokenPair.ts @@ -1,7 +1,7 @@ 'use client' import { useQuery } from '@tanstack/react-query' -import { getPoolsByTokenPair } from 'src/lib/graph' +import { getV3PoolsByTokenPair } from 'src/lib/graph' function usePoolsByTokenPair(tokenId0?: string, tokenId1?: string) { return useQuery({ @@ -9,7 +9,10 @@ function usePoolsByTokenPair(tokenId0?: string, tokenId1?: string) { queryFn: () => { if (!tokenId0 || !tokenId1) return [] - return getPoolsByTokenPair(tokenId0.toLowerCase(), tokenId1.toLowerCase()) + return getV3PoolsByTokenPair( + tokenId0.toLowerCase(), + tokenId1.toLowerCase(), + ) }, enabled: !!tokenId0 && !!tokenId1, }) diff --git a/apps/evm/src/lib/hooks/useTokenFromToken.ts b/apps/evm/src/lib/hooks/useTokenFromToken.ts deleted file mode 100644 index 9cfec5cff2..0000000000 --- a/apps/evm/src/lib/hooks/useTokenFromToken.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { Token as GraphToken } from '@sushiswap/graph-client' -import { useMemo } from 'react' -import { Native, Token } from 'sushi/currency' - -export const useTokenFromToken = (token: GraphToken) => { - return useMemo(() => { - const id = token.id.includes(':') ? token.id.split(':')[1] : token.id - if (id === Native.onChain(token.chainId).wrapped.address) { - return Native.onChain(token.chainId) - } - - return new Token({ - address: id, - chainId: token.chainId, - name: token.name, - symbol: token.symbol, - decimals: Number(token.decimals), - }) - }, [token.chainId, token.decimals, token.id, token.name, token.symbol]) -} diff --git a/apps/evm/src/lib/schema.ts b/apps/evm/src/lib/schema.ts index e5ee0fd561..20dc0c3c66 100644 --- a/apps/evm/src/lib/schema.ts +++ b/apps/evm/src/lib/schema.ts @@ -1,4 +1,8 @@ -import { FURO_SUPPORTED_CHAIN_IDS } from 'node_modules/sushi/dist/config/furo' +import { + FURO_SUPPORTED_CHAIN_IDS, + isFuroChainId, +} from 'node_modules/sushi/dist/config/furo' +import { ChainId } from 'sushi/chain' import { BENTOBOX_SUPPORTED_CHAIN_IDS } from 'sushi/config' import { z } from 'zod' @@ -27,5 +31,6 @@ export const furoTokensSchema = z.object({ .string() .optional() .default(FURO_SUPPORTED_CHAIN_IDS.join(',')) - .transform((val) => val.split(',').map((v) => parseInt(v))), + .transform((val) => val.split(',').map((v) => parseInt(v) as ChainId)) + .transform((chainIds) => chainIds.filter(isFuroChainId)), }) diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index d6a6e01b51..ab80960974 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -52,7 +52,7 @@ "dist/**" ], "scripts": { - "build:types": "gql.tada generate output && gql.tada turbo", + "build:types": "rm -rf src/subgraphs/*/*.d.ts && gql.tada generate output && gql.tada turbo", "build:compile": "tsc && tsc-alias -p tsconfig.json", "build": "pnpm build:types && pnpm build:compile", "check": "tsc --pretty --noEmit", @@ -71,6 +71,7 @@ "gql.tada": "^1.7.5", "graphql": "16.6.0", "graphql-request": "^7.0.1", + "json-bigint": "^1.0.0", "sushi": "workspace:*", "viem": "2.10.11" }, @@ -79,6 +80,7 @@ "@sushiswap/jest-config": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", + "@types/json-bigint": "^1.0.4", "@types/node": "20", "eslint": "8.43.0", "tsc-alias": "^1.8.10", diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client-new/scripts/t.ts index d0c5456204..ccd8df74c5 100644 --- a/packages/graph-client-new/scripts/t.ts +++ b/packages/graph-client-new/scripts/t.ts @@ -1,5 +1,7 @@ import { getSushiV3Transactions } from '../src/subgraphs/sushi-v3/queries/transactions' -const a = await getSushiV3Transactions(1, { first: 2001 }) +// const a = await getSushiV3Transactions({ chainId: 1, first: 2001 }) -console.log(a.length) +// console.log(a[0]) + +import '../src/lib/request' diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index 675c3279bf..a36e12de6b 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -6,6 +6,7 @@ import fs from 'fs' const schemas = { blocks: 'api.studio.thegraph.com/query/72545/ethereum-blocks/v0.0.2', bonds: BONDS_SUBGRAPH_URL[1], + furo: 'api.studio.thegraph.com/query/32073/furo-ethereum/v0.0.1', 'master-chef-v1': 'api.studio.thegraph.com/query/32073/masterchef/v0.0.1', 'master-chef-v2': 'api.studio.thegraph.com/query/32073/master-chefv2/v0.0.1', 'mini-chef': diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client-new/src/composite/sushi-day-datas.ts new file mode 100644 index 0000000000..8f6330e150 --- /dev/null +++ b/packages/graph-client-new/src/composite/sushi-day-datas.ts @@ -0,0 +1,66 @@ +import type { ChainIdsVariable } from 'src/lib/types/chainId' +import { fetchMultichain } from 'src/multichain' +import { getSushiV2DayDatas } from 'src/subgraphs/sushi-v2/queries/day-datas' +import { getSushiV3DayDatas } from 'src/subgraphs/sushi-v3/queries/day-datas' +import { + SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + type SushiSwapV2ChainId, + type SushiSwapV3ChainId, + isSushiSwapV2ChainId, + isSushiSwapV3ChainId, +} from 'sushi/config' + +export type GetSushiDayDatas = {} & ChainIdsVariable< + SushiSwapV2ChainId | SushiSwapV3ChainId +> + +export async function getSushiDayDatas({ + chainIds = Array.from( + new Set([ + ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + ...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + ]), + ), +}: GetSushiDayDatas) { + const sushiSwapV2ChainIds = chainIds.filter(isSushiSwapV2ChainId) + const v2p = fetchMultichain({ + chainIds: sushiSwapV2ChainIds, + fetch: getSushiV2DayDatas, + variables: { + first: Infinity, + }, + }) + + const sushiSwapV3ChainIds = chainIds.filter(isSushiSwapV3ChainId) + const v3p = fetchMultichain({ + chainIds: sushiSwapV3ChainIds, + fetch: getSushiV3DayDatas, + variables: { + first: Infinity, + }, + }) + + const [ + { data: sushiSwapV2DayDatas, errors: sushiSwapV2DayDataErrors }, + { data: sushiSwapV3DayDatas, errors: sushiSwapV3DayDatasErrors }, + ] = await Promise.all([v2p, v3p]) + + const data = sushiSwapV3DayDatas + sushiSwapV2DayDatas.forEach((dayData) => { + data.push({ + id: dayData.id, + date: dayData.date, + volumeUSD: dayData.dailyVolumeUSD, + volumeUSDUntracked: dayData.dailyVolumeUntracked, + volumeETH: dayData.dailyVolumeETH, + tvlUSD: dayData.totalLiquidityUSD, + txCount: dayData.txCount, + feesUSD: '0', + }) + }) + + const errors = [...sushiSwapV2DayDataErrors, ...sushiSwapV3DayDatasErrors] + + return { data, errors } +} diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts new file mode 100644 index 0000000000..bc6f6a055d --- /dev/null +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -0,0 +1,109 @@ +import { getBlockHistoric } from 'src/subgraphs/blocks/queries/block-historic' +import { + type GetSushiV2Pool, + getSushiV2Pool, +} from 'src/subgraphs/sushi-v2/queries/pool' +import { transformPoolV2ToV3 } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-v3' +import { + type GetSushiV3Pool, + getSushiV3Pool, +} from 'src/subgraphs/sushi-v3/queries/pool' +import { isSushiSwapV2ChainId, isSushiSwapV3ChainId } from 'sushi/config' +import { isPromiseFulfilled } from 'sushi/validate' + +export type GetSushiHistoricPool = Omit< + GetSushiV2Pool | GetSushiV3Pool, + 'block' +> + +async function fetchSushiV2Pool({ + chainId, + ...variables +}: GetSushiV2Pool | GetSushiV3Pool) { + if (!isSushiSwapV2ChainId(chainId)) { + throw new Error(`ChainId ${chainId} is not a SushiSwap V2 chain`) + } + + return transformPoolV2ToV3(await getSushiV2Pool({ chainId, ...variables })) +} + +async function fetchSushiV3Pool({ + chainId, + ...variables +}: GetSushiV2Pool | GetSushiV3Pool) { + if (!isSushiSwapV3ChainId(chainId)) { + throw new Error(`ChainId ${chainId} is not a SushiSwap V3 chain`) + } + + return getSushiV3Pool({ chainId, ...variables }) +} + +export async function getSushiHistoricPool({ + chainId, + ...variables +}: GetSushiHistoricPool) { + const v2poolF = isSushiSwapV2ChainId(chainId) ? getSushiV2Pool : null + const v3poolF = isSushiSwapV3ChainId(chainId) ? getSushiV3Pool : null + + const [v2poolS, v3poolS] = await Promise.allSettled([v2poolF, v3poolF]) + + const v2pool = isPromiseFulfilled(v2poolS) ? v2poolS.value : null + const v3pool = isPromiseFulfilled(v3poolS) ? v3poolS.value : null + + if (!v2pool && !v3pool) { + throw new Error(`Failed to fetch pool ${chainId}:${variables.id}`) + } + + const fetcher = v2pool ? fetchSushiV2Pool : fetchSushiV3Pool + + const pool1dP = getBlockHistoric({ + chainId, + daysAgo: 1, + }) + .then(async (block) => { + return fetcher({ + chainId, + ...variables, + block: { number: block.number }, + }) + }) + .catch(() => null) + + const pool2dP = getBlockHistoric({ + chainId, + daysAgo: 2, + }) + .then(async (block) => { + return fetcher({ + chainId, + ...variables, + block: { number: block.number }, + }) + }) + .catch(() => null) + + const pool1wP = getBlockHistoric({ + chainId, + weeksAgo: 1, + }) + .then(async (block) => { + return fetcher({ + chainId, + ...variables, + block: { number: block.number }, + }) + }) + .catch(() => null) + + const [pool1dS, pool2dS, pool1wS] = await Promise.allSettled([ + pool1dP, + pool2dP, + pool1wP, + ]) + + const pool1d = isPromiseFulfilled(pool1dS) ? pool1dS.value : null + const pool2d = isPromiseFulfilled(pool2dS) ? pool2dS.value : null + const pool1w = isPromiseFulfilled(pool1wS) ? pool1wS.value : null + + console.log(pool1d, pool2d, pool1w) +} diff --git a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts index 8680a057f9..302216366a 100644 --- a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts +++ b/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts @@ -10,6 +10,7 @@ export function addChainId< >(chainId: C, object: T): ReturnType { Object.defineProperty(object, 'chainId', { value: chainId, + enumerable: true, }) return object as ReturnType } diff --git a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts index f132e24b1b..bbf062971a 100644 --- a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts +++ b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts @@ -1,6 +1,6 @@ import type { ChainId } from 'sushi/chain' -type ReturnType = T & { +type ReturnType = Omit & { id: `${string}:${string}` // id: `${T['chainId']}:${string}` } diff --git a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts index 7dedab2be8..5b5e72f01f 100644 --- a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts +++ b/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts @@ -7,6 +7,7 @@ export function copyIdToAddress< >(object: T): ReturnType { Object.defineProperty(object, 'address', { value: object.id, + enumerable: true, }) return object as ReturnType } diff --git a/packages/graph-client-new/src/subgraphs/.gitignore b/packages/graph-client-new/src/subgraphs/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts deleted file mode 100644 index 57c955795d..0000000000 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-cache.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query Blocks($first: Int = 1000, $skip: Int = 0, $orderBy: Block_orderBy = number, $orderDirection: OrderDirection = desc, $where: Block_filter) {\n blocks(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n number\n timestamp\n }\n }\n": - TadaDocumentNode<{ blocks: { timestamp: string; number: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; unclesHash_not_ends_with_nocase?: string; unclesHash_not_ends_with?: string; unclesHash_ends_with_nocase?: string; unclesHash_ends_with?: string; unclesHash_not_starts_with_nocase?: string; unclesHash_not_starts_with?: string; unclesHash_starts_with_nocase?: string; unclesHash_starts_with?: string; unclesHash_not_contains_nocase?: string; unclesHash_not_contains?: string; unclesHash_contains_nocase?: string; unclesHash_contains?: string; unclesHash_not_in?: string[]; unclesHash_in?: string[]; unclesHash_lte?: string; unclesHash_gte?: string; unclesHash_lt?: string; unclesHash_gt?: string; unclesHash_not?: string; unclesHash?: string; size_not_in?: string[]; size_in?: string[]; size_lte?: string; size_gte?: string; size_lt?: string; size_gt?: string; size_not?: string; size?: string; stateRoot_not_ends_with_nocase?: string; stateRoot_not_ends_with?: string; stateRoot_ends_with_nocase?: string; stateRoot_ends_with?: string; stateRoot_not_starts_with_nocase?: string; stateRoot_not_starts_with?: string; stateRoot_starts_with_nocase?: string; stateRoot_starts_with?: string; stateRoot_not_contains_nocase?: string; stateRoot_not_contains?: string; stateRoot_contains_nocase?: string; stateRoot_contains?: string; stateRoot_not_in?: string[]; stateRoot_in?: string[]; stateRoot_lte?: string; stateRoot_gte?: string; stateRoot_lt?: string; stateRoot_gt?: string; stateRoot_not?: string; stateRoot?: string; transactionsRoot_not_ends_with_nocase?: string; transactionsRoot_not_ends_with?: string; transactionsRoot_ends_with_nocase?: string; transactionsRoot_ends_with?: string; transactionsRoot_not_starts_with_nocase?: string; transactionsRoot_not_starts_with?: string; transactionsRoot_starts_with_nocase?: string; transactionsRoot_starts_with?: string; transactionsRoot_not_contains_nocase?: string; transactionsRoot_not_contains?: string; transactionsRoot_contains_nocase?: string; transactionsRoot_contains?: string; transactionsRoot_not_in?: string[]; transactionsRoot_in?: string[]; transactionsRoot_lte?: string; transactionsRoot_gte?: string; transactionsRoot_lt?: string; transactionsRoot_gt?: string; transactionsRoot_not?: string; transactionsRoot?: string; receiptsRoot_not_ends_with_nocase?: string; receiptsRoot_not_ends_with?: string; receiptsRoot_ends_with_nocase?: string; receiptsRoot_ends_with?: string; receiptsRoot_not_starts_with_nocase?: string; receiptsRoot_not_starts_with?: string; receiptsRoot_starts_with_nocase?: string; receiptsRoot_starts_with?: string; receiptsRoot_not_contains_nocase?: string; receiptsRoot_not_contains?: string; receiptsRoot_contains_nocase?: string; receiptsRoot_contains?: string; receiptsRoot_not_in?: string[]; receiptsRoot_in?: string[]; receiptsRoot_lte?: string; receiptsRoot_gte?: string; receiptsRoot_lt?: string; receiptsRoot_gt?: string; receiptsRoot_not?: string; receiptsRoot?: string; gasLimit_not_in?: string[]; gasLimit_in?: string[]; gasLimit_lte?: string; gasLimit_gte?: string; gasLimit_lt?: string; gasLimit_gt?: string; gasLimit_not?: string; gasLimit?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; totalDifficulty_not_in?: string[]; totalDifficulty_in?: string[]; totalDifficulty_lte?: string; totalDifficulty_gte?: string; totalDifficulty_lt?: string; totalDifficulty_gt?: string; totalDifficulty_not?: string; totalDifficulty?: string; difficulty_not_in?: string[]; difficulty_in?: string[]; difficulty_lte?: string; difficulty_gte?: string; difficulty_lt?: string; difficulty_gt?: string; difficulty_not?: string; difficulty?: string; author_not_ends_with_nocase?: string; author_not_ends_with?: string; author_ends_with_nocase?: string; author_ends_with?: string; author_not_starts_with_nocase?: string; author_not_starts_with?: string; author_starts_with_nocase?: string; author_starts_with?: string; author_not_contains_nocase?: string; author_not_contains?: string; author_contains_nocase?: string; author_contains?: string; author_not_in?: string[]; author_in?: string[]; author_lte?: string; author_gte?: string; author_lt?: string; author_gt?: string; author_not?: string; author?: string; parentHash_not_ends_with_nocase?: string; parentHash_not_ends_with?: string; parentHash_ends_with_nocase?: string; parentHash_ends_with?: string; parentHash_not_starts_with_nocase?: string; parentHash_not_starts_with?: string; parentHash_starts_with_nocase?: string; parentHash_starts_with?: string; parentHash_not_contains_nocase?: string; parentHash_not_contains?: string; parentHash_contains_nocase?: string; parentHash_contains?: string; parentHash_not_in?: string[]; parentHash_in?: string[]; parentHash_lte?: string; parentHash_gte?: string; parentHash_lt?: string; parentHash_gt?: string; parentHash_not?: string; parentHash?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; number_not_in?: string[]; number_in?: string[]; number_lte?: string; number_gte?: string; number_lt?: string; number_gt?: string; number_not?: string; number?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "number" | "id" | "timestamp" | "gasLimit" | "parentHash" | "author" | "difficulty" | "totalDifficulty" | "gasUsed" | "receiptsRoot" | "transactionsRoot" | "stateRoot" | "size" | "unclesHash"; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts b/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts deleted file mode 100644 index 5aa78c97ac..0000000000 --- a/packages/graph-client-new/src/subgraphs/blocks/blocks-env.d.ts +++ /dev/null @@ -1,42 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'blocks'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'Block': { kind: 'OBJECT'; name: 'Block'; fields: { 'author': { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'difficulty': { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'receiptsRoot': { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'size': { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'stateRoot': { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalDifficulty': { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'transactionsRoot': { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'unclesHash': { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; }; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_filter': { kind: 'INPUT_OBJECT'; name: 'Block_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'number_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'number_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'parentHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'parentHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'author_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'author_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'difficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'difficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'difficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalDifficulty_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalDifficulty_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'receiptsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'receiptsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionsRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transactionsRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'stateRoot_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'stateRoot_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'size'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'size_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'size_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'unclesHash_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'unclesHash_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Block_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Block_orderBy': { name: 'Block_orderBy'; enumValues: 'id' | 'number' | 'timestamp' | 'parentHash' | 'author' | 'difficulty' | 'totalDifficulty' | 'gasUsed' | 'gasLimit' | 'receiptsRoot' | 'transactionsRoot' | 'stateRoot' | 'size' | 'unclesHash'; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'block': { name: 'block'; type: { kind: 'OBJECT'; name: 'Block'; ofType: null; } }; 'blocks': { name: 'blocks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Block'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/blocks/index.ts b/packages/graph-client-new/src/subgraphs/blocks/index.ts index e69de29bb2..2b85d07c49 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/index.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/index.ts @@ -0,0 +1,2 @@ +export * from './queries/block-historic' +export * from './queries/blocks' diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts new file mode 100644 index 0000000000..965b5699c3 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts @@ -0,0 +1,54 @@ +import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { ChainId } from 'sushi/chain' +import { getBlocks } from './blocks' + +type GetBlockHistoric = { + secsAgo?: number + minsAgo?: number + hoursAgo?: number + daysAgo?: number + weeksAgo?: number + monthsAgo?: number + yearsAgo?: number +} & ChainIdVariable + +export async function getBlockHistoric({ + chainId, + secsAgo = 0, + minsAgo = 0, + hoursAgo = 0, + daysAgo = 0, + weeksAgo = 0, + monthsAgo = 0, + yearsAgo = 0, +}: GetBlockHistoric) { + const current = Math.floor(Date.now() / 1000) + const ago = + secsAgo + + minsAgo * 60 + + hoursAgo * 60 * 60 + + daysAgo * 60 * 60 * 24 + + weeksAgo * 60 * 60 * 24 * 7 + + monthsAgo * 60 * 60 * 24 * 30 + + yearsAgo * 60 * 60 * 24 * 365 + + const target = current - ago + + const blocks = await getBlocks({ + chainId, + first: 1, + orderBy: 'timestamp', + orderDirection: 'desc', + where: { + timestamp_gte: String(target), + }, + }) + + const block = blocks[0] + + if (!block) { + throw new Error('Block not found') + } + + return block +} diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index dfa545a176..ff84f888cd 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -33,7 +33,11 @@ export async function getBlocks({ chainId, ...variables }: GetBlocks) { const result = await request(url, BlocksQuery, variables) - return result + return result.blocks.map((block) => ({ + id: block.id, + number: Number(block.number), + timestamp: Number(block.timestamp), + })) } export type Blocks = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts deleted file mode 100644 index 5e3951ee97..0000000000 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-cache.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query Markets($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Market_orderBy, $orderDirection: OrderDirection, $where: Market_filter) {\n markets(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n chainId\n type\n auctioneer\n teller\n marketId\n owner\n capacity\n capacityInQuote\n minPrice\n scale\n start\n conclusion\n payoutToken {\n id: address\n symbol\n decimals\n name\n }\n quoteToken {\n id: address\n symbol\n decimals\n name\n }\n vesting\n vestingType\n isInstantSwap\n hasClosed\n totalBondedAmount\n totalPayoutAmount\n averageBondPrice\n bondsIssued\n }\n }\n": - TadaDocumentNode<{ markets: { bondsIssued: string; averageBondPrice: string; totalPayoutAmount: string; totalBondedAmount: string; hasClosed: boolean; isInstantSwap: boolean; vestingType: string; vesting: string; quoteToken: { name: string; decimals: string; symbol: string; id: string; }; payoutToken: { name: string; decimals: string; symbol: string; id: string; }; conclusion: string; start: string; scale: string; minPrice: string; capacityInQuote: boolean; capacity: string; owner: string; marketId: string; teller: string; auctioneer: string; type: string; chainId: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: any; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: any; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "name" | "id" | "type" | "price" | "chainId" | "auctioneer" | "teller" | "marketId" | "owner" | "capacity" | "capacityInQuote" | "minPrice" | "scale" | "start" | "conclusion" | "payoutToken" | "quoteToken" | "vesting" | "vestingType" | "isInstantSwap" | "hasClosed" | "totalBondedAmount" | "totalPayoutAmount" | "averageBondPrice" | "bondsIssued" | "network" | "creationBlockTimestamp" | "callbackAddress" | "payoutToken__id" | "payoutToken__network" | "payoutToken__chainId" | "payoutToken__address" | "payoutToken__decimals" | "payoutToken__symbol" | "payoutToken__name" | "payoutToken__typeName" | "payoutToken__usedAsPayout" | "payoutToken__usedAsQuote" | "payoutToken__totalPayoutAmount" | "payoutToken__purchaseCount" | "quoteToken__id" | "quoteToken__network" | "quoteToken__chainId" | "quoteToken__address" | "quoteToken__decimals" | "quoteToken__symbol" | "quoteToken__name" | "quoteToken__typeName" | "quoteToken__usedAsPayout" | "quoteToken__usedAsQuote" | "quoteToken__totalPayoutAmount" | "quoteToken__purchaseCount" | "tunes" | "bondPurchases"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: OwnerBalance_orderBy, $orderDirection: OrderDirection, $where: OwnerBalance_filter) {\n positions: ownerBalances(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n balance\n bondToken {\n id\n expiry\n type\n teller\n underlying {\n id: address\n symbol\n decimals\n name\n }\n }\n }\n }\n": - TadaDocumentNode<{ positions: { bondToken: { underlying: { name: string; decimals: string; symbol: string; id: string; }; teller: string; type: string; expiry: string; id: string; }; balance: string; owner: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondToken_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; expiry_not_in?: string[]; expiry_in?: string[]; expiry_lte?: string; expiry_gte?: string; expiry_lt?: string; expiry_gt?: string; expiry_not?: string; expiry?: string; underlying_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; markets_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondsIssued_not_in?: string[]; bondsIssued_in?: string[]; bondsIssued_lte?: string; bondsIssued_gte?: string; bondsIssued_lt?: string; bondsIssued_gt?: string; bondsIssued_not?: string; bondsIssued?: string; bondPurchases_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; payoutTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbv_not_ends_with_nocase?: string; payoutTokenTbv_not_ends_with?: string; payoutTokenTbv_ends_with_nocase?: string; payoutTokenTbv_ends_with?: string; payoutTokenTbv_not_starts_with_nocase?: string; payoutTokenTbv_not_starts_with?: string; payoutTokenTbv_starts_with_nocase?: string; payoutTokenTbv_starts_with?: string; payoutTokenTbv_not_contains_nocase?: string; payoutTokenTbv_not_contains?: string; payoutTokenTbv_contains_nocase?: string; payoutTokenTbv_contains?: string; payoutTokenTbv_not_in?: string[]; payoutTokenTbv_in?: string[]; payoutTokenTbv_lte?: string; payoutTokenTbv_gte?: string; payoutTokenTbv_lt?: string; payoutTokenTbv_gt?: string; payoutTokenTbv_not?: string; payoutTokenTbv?: string; ownerTokenTbv_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; ownerTokenTbv_not_ends_with_nocase?: string; ownerTokenTbv_not_ends_with?: string; ownerTokenTbv_ends_with_nocase?: string; ownerTokenTbv_ends_with?: string; ownerTokenTbv_not_starts_with_nocase?: string; ownerTokenTbv_not_starts_with?: string; ownerTokenTbv_starts_with_nocase?: string; ownerTokenTbv_starts_with?: string; ownerTokenTbv_not_contains_nocase?: string; ownerTokenTbv_not_contains?: string; ownerTokenTbv_contains_nocase?: string; ownerTokenTbv_contains?: string; ownerTokenTbv_not_in?: string[]; ownerTokenTbv_in?: string[]; ownerTokenTbv_lte?: string; ownerTokenTbv_gte?: string; ownerTokenTbv_lt?: string; ownerTokenTbv_gt?: string; ownerTokenTbv_not?: string; ownerTokenTbv?: string; postPurchasePrice_not_in?: string[]; postPurchasePrice_in?: string[]; postPurchasePrice_lte?: string; postPurchasePrice_gte?: string; postPurchasePrice_lt?: string; postPurchasePrice_gt?: string; postPurchasePrice_not?: string; postPurchasePrice?: string; purchasePrice_not_in?: string[]; purchasePrice_in?: string[]; purchasePrice_lte?: string; purchasePrice_gte?: string; purchasePrice_lt?: string; purchasePrice_gt?: string; purchasePrice_not?: string; purchasePrice?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; referrer_not_ends_with_nocase?: string; referrer_not_ends_with?: string; referrer_ends_with_nocase?: string; referrer_ends_with?: string; referrer_not_starts_with_nocase?: string; referrer_not_starts_with?: string; referrer_starts_with_nocase?: string; referrer_starts_with?: string; referrer_not_contains_nocase?: string; referrer_not_contains?: string; referrer_contains_nocase?: string; referrer_contains?: string; referrer_not_in?: string[]; referrer_in?: string[]; referrer_lte?: string; referrer_gte?: string; referrer_lt?: string; referrer_gt?: string; referrer_not?: string; referrer?: string; recipient_not_ends_with_nocase?: string; recipient_not_ends_with?: string; recipient_ends_with_nocase?: string; recipient_ends_with?: string; recipient_not_starts_with_nocase?: string; recipient_not_starts_with?: string; recipient_starts_with_nocase?: string; recipient_starts_with?: string; recipient_not_contains_nocase?: string; recipient_not_contains?: string; recipient_contains_nocase?: string; recipient_contains?: string; recipient_not_in?: string[]; recipient_in?: string[]; recipient_lte?: string; recipient_gte?: string; recipient_lt?: string; recipient_gt?: string; recipient_not?: string; recipient?: string; payout_not_in?: string[]; payout_in?: string[]; payout_lte?: string; payout_gte?: string; payout_lt?: string; payout_gt?: string; payout_not?: string; payout?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; tunes_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; deltaTime_not_in?: string[]; deltaTime_in?: string[]; deltaTime_lte?: string; deltaTime_gte?: string; deltaTime_lt?: string; deltaTime_gt?: string; deltaTime_not?: string; deltaTime?: string; newControlVariable_not_in?: string[]; newControlVariable_in?: string[]; newControlVariable_lte?: string; newControlVariable_gte?: string; newControlVariable_lt?: string; newControlVariable_gt?: string; newControlVariable_not?: string; newControlVariable?: string; oldControlVariable_not_in?: string[]; oldControlVariable_in?: string[]; oldControlVariable_lte?: string; oldControlVariable_gte?: string; oldControlVariable_lt?: string; oldControlVariable_gt?: string; oldControlVariable_not?: string; oldControlVariable?: string; market_?: any; market_not_ends_with_nocase?: string; market_not_ends_with?: string; market_ends_with_nocase?: string; market_ends_with?: string; market_not_starts_with_nocase?: string; market_not_starts_with?: string; market_starts_with_nocase?: string; market_starts_with?: string; market_not_contains_nocase?: string; market_not_contains?: string; market_contains_nocase?: string; market_contains?: string; market_not_in?: string[]; market_in?: string[]; market_lte?: string; market_gte?: string; market_lt?: string; market_gt?: string; market_not?: string; market?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; averageBondPrice_not_in?: string[]; averageBondPrice_in?: string[]; averageBondPrice_lte?: string; averageBondPrice_gte?: string; averageBondPrice_lt?: string; averageBondPrice_gt?: string; averageBondPrice_not?: string; averageBondPrice?: string; scale_not_in?: string[]; scale_in?: string[]; scale_lte?: string; scale_gte?: string; scale_lt?: string; scale_gt?: string; scale_not?: string; scale?: string; price_not_in?: string[]; price_in?: string[]; price_lte?: string; price_gte?: string; price_lt?: string; price_gt?: string; price_not?: string; price?: string; minPrice_not_in?: string[]; minPrice_in?: string[]; minPrice_lte?: string; minPrice_gte?: string; minPrice_lt?: string; minPrice_gt?: string; minPrice_not?: string; minPrice?: string; capacityInQuote_not_in?: boolean[]; capacityInQuote_in?: boolean[]; capacityInQuote_not?: boolean; capacityInQuote?: boolean; capacity_not_in?: string[]; capacity_in?: string[]; capacity_lte?: string; capacity_gte?: string; capacity_lt?: string; capacity_gt?: string; capacity_not?: string; capacity?: string; callbackAddress_not_ends_with_nocase?: string; callbackAddress_not_ends_with?: string; callbackAddress_ends_with_nocase?: string; callbackAddress_ends_with?: string; callbackAddress_not_starts_with_nocase?: string; callbackAddress_not_starts_with?: string; callbackAddress_starts_with_nocase?: string; callbackAddress_starts_with?: string; callbackAddress_not_contains_nocase?: string; callbackAddress_not_contains?: string; callbackAddress_contains_nocase?: string; callbackAddress_contains?: string; callbackAddress_not_in?: string[]; callbackAddress_in?: string[]; callbackAddress_lte?: string; callbackAddress_gte?: string; callbackAddress_lt?: string; callbackAddress_gt?: string; callbackAddress_not?: string; callbackAddress?: string; creationBlockTimestamp_not_in?: string[]; creationBlockTimestamp_in?: string[]; creationBlockTimestamp_lte?: string; creationBlockTimestamp_gte?: string; creationBlockTimestamp_lt?: string; creationBlockTimestamp_gt?: string; creationBlockTimestamp_not?: string; creationBlockTimestamp?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; totalBondedAmount_not_in?: string[]; totalBondedAmount_in?: string[]; totalBondedAmount_lte?: string; totalBondedAmount_gte?: string; totalBondedAmount_lt?: string; totalBondedAmount_gt?: string; totalBondedAmount_not?: string; totalBondedAmount?: string; hasClosed_not_in?: boolean[]; hasClosed_in?: boolean[]; hasClosed_not?: boolean; hasClosed?: boolean; isInstantSwap_not_in?: boolean[]; isInstantSwap_in?: boolean[]; isInstantSwap_not?: boolean; isInstantSwap?: boolean; vestingType_not_ends_with_nocase?: string; vestingType_not_ends_with?: string; vestingType_ends_with_nocase?: string; vestingType_ends_with?: string; vestingType_not_starts_with_nocase?: string; vestingType_not_starts_with?: string; vestingType_starts_with_nocase?: string; vestingType_starts_with?: string; vestingType_not_contains_nocase?: string; vestingType_not_contains?: string; vestingType_contains_nocase?: string; vestingType_contains?: string; vestingType_not_in?: string[]; vestingType_in?: string[]; vestingType_lte?: string; vestingType_gte?: string; vestingType_lt?: string; vestingType_gt?: string; vestingType_not?: string; vestingType?: string; conclusion_not_in?: string[]; conclusion_in?: string[]; conclusion_lte?: string; conclusion_gte?: string; conclusion_lt?: string; conclusion_gt?: string; conclusion_not?: string; conclusion?: string; start_not_in?: string[]; start_in?: string[]; start_lte?: string; start_gte?: string; start_lt?: string; start_gt?: string; start_not?: string; start?: string; vesting_not_in?: string[]; vesting_in?: string[]; vesting_lte?: string; vesting_gte?: string; vesting_lt?: string; vesting_gt?: string; vesting_not?: string; vesting?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; marketId_not_in?: string[]; marketId_in?: string[]; marketId_lte?: string; marketId_gte?: string; marketId_lt?: string; marketId_gt?: string; marketId_not?: string; marketId?: string; teller_not_ends_with_nocase?: string; teller_not_ends_with?: string; teller_ends_with_nocase?: string; teller_ends_with?: string; teller_not_starts_with_nocase?: string; teller_not_starts_with?: string; teller_starts_with_nocase?: string; teller_starts_with?: string; teller_not_contains_nocase?: string; teller_not_contains?: string; teller_contains_nocase?: string; teller_contains?: string; teller_not_in?: string[]; teller_in?: string[]; teller_lte?: string; teller_gte?: string; teller_lt?: string; teller_gt?: string; teller_not?: string; teller?: string; auctioneer_not_ends_with_nocase?: string; auctioneer_not_ends_with?: string; auctioneer_ends_with_nocase?: string; auctioneer_ends_with?: string; auctioneer_not_starts_with_nocase?: string; auctioneer_not_starts_with?: string; auctioneer_starts_with_nocase?: string; auctioneer_starts_with?: string; auctioneer_not_contains_nocase?: string; auctioneer_not_contains?: string; auctioneer_contains_nocase?: string; auctioneer_contains?: string; auctioneer_not_in?: string[]; auctioneer_in?: string[]; auctioneer_lte?: string; auctioneer_gte?: string; auctioneer_lt?: string; auctioneer_gt?: string; auctioneer_not?: string; auctioneer?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; type_not_ends_with_nocase?: string; type_not_ends_with?: string; type_ends_with_nocase?: string; type_ends_with?: string; type_not_starts_with_nocase?: string; type_not_starts_with?: string; type_starts_with_nocase?: string; type_starts_with?: string; type_not_contains_nocase?: string; type_not_contains?: string; type_contains_nocase?: string; type_contains?: string; type_not_in?: string[]; type_in?: string[]; type_lte?: string; type_gte?: string; type_lt?: string; type_gt?: string; type_not?: string; type?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; uniqueBonders_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; count_not_in?: string[]; count_in?: string[]; count_lte?: string; count_gte?: string; count_lt?: string; count_gt?: string; count_not?: string; count?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; payoutTokenTbvs_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; bondPurchases_?: any; tbv_not_in?: string[]; tbv_in?: string[]; tbv_lte?: string; tbv_gte?: string; tbv_lt?: string; tbv_gt?: string; tbv_not?: string; tbv?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; quoteToken_?: any; quoteToken_not_ends_with_nocase?: string; quoteToken_not_ends_with?: string; quoteToken_ends_with_nocase?: string; quoteToken_ends_with?: string; quoteToken_not_starts_with_nocase?: string; quoteToken_not_starts_with?: string; quoteToken_starts_with_nocase?: string; quoteToken_starts_with?: string; quoteToken_not_contains_nocase?: string; quoteToken_not_contains?: string; quoteToken_contains_nocase?: string; quoteToken_contains?: string; quoteToken_not_in?: string[]; quoteToken_in?: string[]; quoteToken_lte?: string; quoteToken_gte?: string; quoteToken_lt?: string; quoteToken_gt?: string; quoteToken_not?: string; quoteToken?: string; payoutToken_?: any; payoutToken_not_ends_with_nocase?: string; payoutToken_not_ends_with?: string; payoutToken_ends_with_nocase?: string; payoutToken_ends_with?: string; payoutToken_not_starts_with_nocase?: string; payoutToken_not_starts_with?: string; payoutToken_starts_with_nocase?: string; payoutToken_starts_with?: string; payoutToken_not_contains_nocase?: string; payoutToken_not_contains?: string; payoutToken_contains_nocase?: string; payoutToken_contains?: string; payoutToken_not_in?: string[]; payoutToken_in?: string[]; payoutToken_lte?: string; payoutToken_gte?: string; payoutToken_lt?: string; payoutToken_gt?: string; payoutToken_not?: string; payoutToken?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; purchaseCount_not_in?: string[]; purchaseCount_in?: string[]; purchaseCount_lte?: string; purchaseCount_gte?: string; purchaseCount_lt?: string; purchaseCount_gt?: string; purchaseCount_not?: string; purchaseCount?: string; totalPayoutAmount_not_in?: string[]; totalPayoutAmount_in?: string[]; totalPayoutAmount_lte?: string; totalPayoutAmount_gte?: string; totalPayoutAmount_lt?: string; totalPayoutAmount_gt?: string; totalPayoutAmount_not?: string; totalPayoutAmount?: string; usedAsQuote_not_in?: boolean[]; usedAsQuote_in?: boolean[]; usedAsQuote_not?: boolean; usedAsQuote?: boolean; usedAsPayout_not_in?: boolean[]; usedAsPayout_in?: boolean[]; usedAsPayout_not?: boolean; usedAsPayout?: boolean; balancerWeightedPool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; constituentTokens_?: any; constituentTokens_not_contains_nocase?: string[]; constituentTokens_not_contains?: string[]; constituentTokens_contains_nocase?: string[]; constituentTokens_contains?: string[]; constituentTokens_not?: string[]; constituentTokens?: string[]; poolId_not_ends_with_nocase?: string; poolId_not_ends_with?: string; poolId_ends_with_nocase?: string; poolId_ends_with?: string; poolId_not_starts_with_nocase?: string; poolId_not_starts_with?: string; poolId_starts_with_nocase?: string; poolId_starts_with?: string; poolId_not_contains_nocase?: string; poolId_not_contains?: string; poolId_contains_nocase?: string; poolId_contains?: string; poolId_not_in?: string[]; poolId_in?: string[]; poolId_lte?: string; poolId_gte?: string; poolId_lt?: string; poolId_gt?: string; poolId_not?: string; poolId?: string; vaultAddress_not_ends_with_nocase?: string; vaultAddress_not_ends_with?: string; vaultAddress_ends_with_nocase?: string; vaultAddress_ends_with?: string; vaultAddress_not_starts_with_nocase?: string; vaultAddress_not_starts_with?: string; vaultAddress_starts_with_nocase?: string; vaultAddress_starts_with?: string; vaultAddress_not_contains_nocase?: string; vaultAddress_not_contains?: string; vaultAddress_contains_nocase?: string; vaultAddress_contains?: string; vaultAddress_not_in?: string[]; vaultAddress_in?: string[]; vaultAddress_lte?: string; vaultAddress_gte?: string; vaultAddress_lt?: string; vaultAddress_gt?: string; vaultAddress_not?: string; vaultAddress?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; balancerWeightedPool_not_ends_with_nocase?: string; balancerWeightedPool_not_ends_with?: string; balancerWeightedPool_ends_with_nocase?: string; balancerWeightedPool_ends_with?: string; balancerWeightedPool_not_starts_with_nocase?: string; balancerWeightedPool_not_starts_with?: string; balancerWeightedPool_starts_with_nocase?: string; balancerWeightedPool_starts_with?: string; balancerWeightedPool_not_contains_nocase?: string; balancerWeightedPool_not_contains?: string; balancerWeightedPool_contains_nocase?: string; balancerWeightedPool_contains?: string; balancerWeightedPool_not_in?: string[]; balancerWeightedPool_in?: string[]; balancerWeightedPool_lte?: string; balancerWeightedPool_gte?: string; balancerWeightedPool_lt?: string; balancerWeightedPool_gt?: string; balancerWeightedPool_not?: string; balancerWeightedPool?: string; lpPair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; lpPair_not_ends_with_nocase?: string; lpPair_not_ends_with?: string; lpPair_ends_with_nocase?: string; lpPair_ends_with?: string; lpPair_not_starts_with_nocase?: string; lpPair_not_starts_with?: string; lpPair_starts_with_nocase?: string; lpPair_starts_with?: string; lpPair_not_contains_nocase?: string; lpPair_not_contains?: string; lpPair_contains_nocase?: string; lpPair_contains?: string; lpPair_not_in?: string[]; lpPair_in?: string[]; lpPair_lte?: string; lpPair_gte?: string; lpPair_lt?: string; lpPair_gt?: string; lpPair_not?: string; lpPair?: string; typeName_not_ends_with_nocase?: string; typeName_not_ends_with?: string; typeName_ends_with_nocase?: string; typeName_ends_with?: string; typeName_not_starts_with_nocase?: string; typeName_not_starts_with?: string; typeName_starts_with_nocase?: string; typeName_starts_with?: string; typeName_not_contains_nocase?: string; typeName_not_contains?: string; typeName_contains_nocase?: string; typeName_contains?: string; typeName_not_in?: string[]; typeName_in?: string[]; typeName_lte?: string; typeName_gte?: string; typeName_lt?: string; typeName_gt?: string; typeName_not?: string; typeName?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; address_not_ends_with_nocase?: string; address_not_ends_with?: string; address_ends_with_nocase?: string; address_ends_with?: string; address_not_starts_with_nocase?: string; address_not_starts_with?: string; address_starts_with_nocase?: string; address_starts_with?: string; address_not_contains_nocase?: string; address_not_contains?: string; address_contains_nocase?: string; address_contains?: string; address_not_in?: string[]; address_in?: string[]; address_lte?: string; address_gte?: string; address_lt?: string; address_gt?: string; address_not?: string; address?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; underlying_not_ends_with_nocase?: string; underlying_not_ends_with?: string; underlying_ends_with_nocase?: string; underlying_ends_with?: string; underlying_not_starts_with_nocase?: string; underlying_not_starts_with?: string; underlying_starts_with_nocase?: string; underlying_starts_with?: string; underlying_not_contains_nocase?: string; underlying_not_contains?: string; underlying_contains_nocase?: string; underlying_contains?: string; underlying_not_in?: string[]; underlying_in?: string[]; underlying_lte?: string; underlying_gte?: string; underlying_lt?: string; underlying_gt?: string; underlying_not?: string; underlying?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; bondToken_not_ends_with_nocase?: string; bondToken_not_ends_with?: string; bondToken_ends_with_nocase?: string; bondToken_ends_with?: string; bondToken_not_starts_with_nocase?: string; bondToken_not_starts_with?: string; bondToken_starts_with_nocase?: string; bondToken_starts_with?: string; bondToken_not_contains_nocase?: string; bondToken_not_contains?: string; bondToken_contains_nocase?: string; bondToken_contains?: string; bondToken_not_in?: string[]; bondToken_in?: string[]; bondToken_lte?: string; bondToken_gte?: string; bondToken_lt?: string; bondToken_gt?: string; bondToken_not?: string; bondToken?: string; chainId_not_in?: string[]; chainId_in?: string[]; chainId_lte?: string; chainId_gte?: string; chainId_lt?: string; chainId_gt?: string; chainId_not?: string; chainId?: string; network_not_ends_with_nocase?: string; network_not_ends_with?: string; network_ends_with_nocase?: string; network_ends_with?: string; network_not_starts_with_nocase?: string; network_not_starts_with?: string; network_starts_with_nocase?: string; network_starts_with?: string; network_not_contains_nocase?: string; network_not_contains?: string; network_contains_nocase?: string; network_contains?: string; network_not_in?: string[]; network_in?: string[]; network_lte?: string; network_gte?: string; network_lt?: string; network_gt?: string; network_not?: string; network?: string; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; tokenId_not_in?: string[]; tokenId_in?: string[]; tokenId_lte?: string; tokenId_gte?: string; tokenId_lt?: string; tokenId_gt?: string; tokenId_not?: string; tokenId?: string; id_not_ends_with_nocase?: string; id_not_ends_with?: string; id_ends_with_nocase?: string; id_ends_with?: string; id_not_starts_with_nocase?: string; id_not_starts_with?: string; id_starts_with_nocase?: string; id_starts_with?: string; id_not_contains_nocase?: string; id_not_contains?: string; id_contains_nocase?: string; id_contains?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "chainId" | "owner" | "network" | "balance" | "bondToken" | "tokenId" | "bondToken__id" | "bondToken__decimals" | "bondToken__symbol" | "bondToken__expiry" | "bondToken__teller" | "bondToken__network" | "bondToken__chainId" | "bondToken__type"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts b/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts deleted file mode 100644 index 8b53ce3781..0000000000 --- a/packages/graph-client-new/src/subgraphs/bonds/bonds-env.d.ts +++ /dev/null @@ -1,93 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'bonds'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BalancerWeightedPool': { kind: 'OBJECT'; name: 'BalancerWeightedPool'; fields: { 'constituentTokens': { name: 'constituentTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolId': { name: 'poolId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vaultAddress': { name: 'vaultAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'BalancerWeightedPool_filter': { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vaultAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vaultAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolId_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolId_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'constituentTokens'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'constituentTokens_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BalancerWeightedPool_orderBy': { name: 'BalancerWeightedPool_orderBy'; enumValues: 'id' | 'vaultAddress' | 'poolId' | 'constituentTokens'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'BondPurchase': { kind: 'OBJECT'; name: 'BondPurchase'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'payout': { name: 'payout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'postPurchasePrice': { name: 'postPurchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'purchasePrice': { name: 'purchasePrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'referrer': { name: 'referrer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'BondPurchase_filter': { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'payout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'payout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'referrer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'referrer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'purchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'postPurchasePrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'postPurchasePrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'ownerTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'ownerTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbv_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutTokenTbv_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BondPurchase_orderBy': { name: 'BondPurchase_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'owner' | 'amount' | 'payout' | 'recipient' | 'referrer' | 'timestamp' | 'teller' | 'auctioneer' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'purchasePrice' | 'postPurchasePrice' | 'ownerTokenTbv' | 'ownerTokenTbv__id' | 'ownerTokenTbv__owner' | 'ownerTokenTbv__token' | 'ownerTokenTbv__network' | 'ownerTokenTbv__chainId' | 'ownerTokenTbv__tbv' | 'payoutTokenTbv' | 'payoutTokenTbv__id' | 'payoutTokenTbv__network' | 'payoutTokenTbv__chainId' | 'payoutTokenTbv__tbv'; }; - 'BondToken': { kind: 'OBJECT'; name: 'BondToken'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'expiry': { name: 'expiry'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'underlying': { name: 'underlying'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'BondToken_filter': { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'underlying_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'underlying_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'expiry'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'expiry_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'expiry_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'BondToken_orderBy': { name: 'BondToken_orderBy'; enumValues: 'id' | 'decimals' | 'symbol' | 'underlying' | 'underlying__id' | 'underlying__network' | 'underlying__chainId' | 'underlying__address' | 'underlying__decimals' | 'underlying__symbol' | 'underlying__name' | 'underlying__typeName' | 'underlying__usedAsPayout' | 'underlying__usedAsQuote' | 'underlying__totalPayoutAmount' | 'underlying__purchaseCount' | 'expiry' | 'teller' | 'network' | 'chainId' | 'type'; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'Market': { kind: 'OBJECT'; name: 'Market'; fields: { 'auctioneer': { name: 'auctioneer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'averageBondPrice': { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'bondsIssued': { name: 'bondsIssued'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'callbackAddress': { name: 'callbackAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'capacity': { name: 'capacity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'capacityInQuote': { name: 'capacityInQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'conclusion': { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'creationBlockTimestamp': { name: 'creationBlockTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hasClosed': { name: 'hasClosed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isInstantSwap': { name: 'isInstantSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'marketId': { name: 'marketId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'minPrice': { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'price': { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'scale': { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'start': { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'teller': { name: 'teller'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalBondedAmount': { name: 'totalBondedAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tunes': { name: 'tunes'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'vesting': { name: 'vesting'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'vestingType': { name: 'vestingType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'MarketOwnerCount': { kind: 'OBJECT'; name: 'MarketOwnerCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'MarketOwnerCount_filter': { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MarketOwnerCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MarketOwnerCount_orderBy': { name: 'MarketOwnerCount_orderBy'; enumValues: 'id' | 'count'; }; - 'Market_filter': { kind: 'INPUT_OBJECT'; name: 'Market_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'type_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'auctioneer_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'auctioneer_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'teller_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'teller_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'marketId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'marketId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'marketId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'vesting'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'vesting_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vesting_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'start_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'start_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'conclusion_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'conclusion_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'vestingType_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'vestingType_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isInstantSwap_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isInstantSwap_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'hasClosed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'hasClosed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalBondedAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalBondedAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'creationBlockTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'creationBlockTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'callbackAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'callbackAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'capacity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'capacity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'capacityInQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'capacityInQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'minPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'minPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'scale_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'scale_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'averageBondPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'averageBondPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tunes_'; type: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bondsIssued_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondsIssued_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Market_orderBy': { name: 'Market_orderBy'; enumValues: 'id' | 'name' | 'type' | 'network' | 'chainId' | 'auctioneer' | 'teller' | 'marketId' | 'owner' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'vesting' | 'start' | 'conclusion' | 'vestingType' | 'isInstantSwap' | 'hasClosed' | 'totalBondedAmount' | 'totalPayoutAmount' | 'creationBlockTimestamp' | 'callbackAddress' | 'capacity' | 'capacityInQuote' | 'minPrice' | 'price' | 'scale' | 'averageBondPrice' | 'tunes' | 'bondPurchases' | 'bondsIssued'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'OwnerBalance': { kind: 'OBJECT'; name: 'OwnerBalance'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenId': { name: 'tokenId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'OwnerBalance_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tokenId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'bondToken_'; type: { kind: 'INPUT_OBJECT'; name: 'BondToken_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerBalance_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'OwnerBalance_orderBy': { name: 'OwnerBalance_orderBy'; enumValues: 'id' | 'tokenId' | 'owner' | 'balance' | 'network' | 'chainId' | 'bondToken' | 'bondToken__id' | 'bondToken__decimals' | 'bondToken__symbol' | 'bondToken__expiry' | 'bondToken__teller' | 'bondToken__network' | 'bondToken__chainId' | 'bondToken__type'; }; - 'OwnerTokenTbv': { kind: 'OBJECT'; name: 'OwnerTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'OwnerTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'OwnerTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'OwnerTokenTbv_orderBy': { name: 'OwnerTokenTbv_orderBy'; enumValues: 'id' | 'owner' | 'token' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; - 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__network' | 'token0__chainId' | 'token0__address' | 'token0__decimals' | 'token0__symbol' | 'token0__name' | 'token0__typeName' | 'token0__usedAsPayout' | 'token0__usedAsQuote' | 'token0__totalPayoutAmount' | 'token0__purchaseCount' | 'token1' | 'token1__id' | 'token1__network' | 'token1__chainId' | 'token1__address' | 'token1__decimals' | 'token1__symbol' | 'token1__name' | 'token1__typeName' | 'token1__usedAsPayout' | 'token1__usedAsQuote' | 'token1__totalPayoutAmount' | 'token1__purchaseCount'; }; - 'PayoutToken': { kind: 'OBJECT'; name: 'PayoutToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'PayoutTokenTbv': { kind: 'OBJECT'; name: 'PayoutTokenTbv'; fields: { 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tbv': { name: 'tbv'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PayoutTokenTbv_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'payoutToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'quoteToken'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'quoteToken_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'quoteToken_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tbv_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tbv_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'bondPurchases_'; type: { kind: 'INPUT_OBJECT'; name: 'BondPurchase_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PayoutTokenTbv_orderBy': { name: 'PayoutTokenTbv_orderBy'; enumValues: 'id' | 'payoutToken' | 'payoutToken__id' | 'payoutToken__network' | 'payoutToken__chainId' | 'payoutToken__address' | 'payoutToken__decimals' | 'payoutToken__symbol' | 'payoutToken__name' | 'payoutToken__typeName' | 'payoutToken__usedAsPayout' | 'payoutToken__usedAsQuote' | 'payoutToken__totalPayoutAmount' | 'payoutToken__purchaseCount' | 'quoteToken' | 'quoteToken__id' | 'quoteToken__network' | 'quoteToken__chainId' | 'quoteToken__address' | 'quoteToken__decimals' | 'quoteToken__symbol' | 'quoteToken__name' | 'quoteToken__typeName' | 'quoteToken__usedAsPayout' | 'quoteToken__usedAsQuote' | 'quoteToken__totalPayoutAmount' | 'quoteToken__purchaseCount' | 'network' | 'chainId' | 'tbv' | 'bondPurchases'; }; - 'PayoutToken_filter': { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PayoutToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PayoutToken_orderBy': { name: 'PayoutToken_orderBy'; enumValues: 'id'; }; - 'PurchaseCount': { kind: 'OBJECT'; name: 'PurchaseCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'PurchaseCount_filter': { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PurchaseCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PurchaseCount_orderBy': { name: 'PurchaseCount_orderBy'; enumValues: 'id' | 'count'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; - 'QuoteToken': { kind: 'OBJECT'; name: 'QuoteToken'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'QuoteToken_filter': { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'QuoteToken_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'QuoteToken_orderBy': { name: 'QuoteToken_orderBy'; enumValues: 'id'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'balancerWeightedPools': { name: 'balancerWeightedPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; }; }; }; } }; 'bondPurchase': { name: 'bondPurchase'; type: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; } }; 'bondPurchases': { name: 'bondPurchases'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondPurchase'; ofType: null; }; }; }; } }; 'bondToken': { name: 'bondToken'; type: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; } }; 'bondTokens': { name: 'bondTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'BondToken'; ofType: null; }; }; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'marketOwnerCount': { name: 'marketOwnerCount'; type: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; } }; 'marketOwnerCounts': { name: 'marketOwnerCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketOwnerCount'; ofType: null; }; }; }; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'ownerBalance': { name: 'ownerBalance'; type: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; } }; 'ownerBalances': { name: 'ownerBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerBalance'; ofType: null; }; }; }; } }; 'ownerTokenTbv': { name: 'ownerTokenTbv'; type: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; } }; 'ownerTokenTbvs': { name: 'ownerTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'OwnerTokenTbv'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'payoutToken': { name: 'payoutToken'; type: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; } }; 'payoutTokenTbv': { name: 'payoutTokenTbv'; type: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; }; } }; 'payoutTokens': { name: 'payoutTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutToken'; ofType: null; }; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; } }; 'purchaseCounts': { name: 'purchaseCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PurchaseCount'; ofType: null; }; }; }; } }; 'quoteToken': { name: 'quoteToken'; type: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; } }; 'quoteTokens': { name: 'quoteTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'QuoteToken'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'tune': { name: 'tune'; type: { kind: 'OBJECT'; name: 'Tune'; ofType: null; } }; 'tunes': { name: 'tunes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tune'; ofType: null; }; }; }; } }; 'uniqueBonder': { name: 'uniqueBonder'; type: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; } }; 'uniqueBonderCount': { name: 'uniqueBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; } }; 'uniqueBonderCounts': { name: 'uniqueBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonderCount'; ofType: null; }; }; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueBonder'; ofType: null; }; }; }; } }; 'uniqueTokenBonder': { name: 'uniqueTokenBonder'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; } }; 'uniqueTokenBonderCount': { name: 'uniqueTokenBonderCount'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'uniqueTokenBonderCounts': { name: 'uniqueTokenBonderCounts'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; }; }; }; } }; 'uniqueTokenBonders': { name: 'uniqueTokenBonders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniqueTokenBonder'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'balancerWeightedPool': { name: 'balancerWeightedPool'; type: { kind: 'OBJECT'; name: 'BalancerWeightedPool'; ofType: null; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'lpPair': { name: 'lpPair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'markets': { name: 'markets'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'network': { name: 'network'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'payoutTokenTbvs': { name: 'payoutTokenTbvs'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PayoutTokenTbv'; ofType: null; }; }; } }; 'purchaseCount': { name: 'purchaseCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalPayoutAmount': { name: 'totalPayoutAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'typeName': { name: 'typeName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'uniqueBonders': { name: 'uniqueBonders'; type: { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; ofType: null; } }; 'usedAsPayout': { name: 'usedAsPayout'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'usedAsQuote': { name: 'usedAsQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'network_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'network_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'chainId_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'chainId_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'address_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'typeName_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'typeName_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'lpPair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'lpPair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'balancerWeightedPool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'balancerWeightedPool_'; type: { kind: 'INPUT_OBJECT'; name: 'BalancerWeightedPool_filter'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsPayout_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsPayout_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'usedAsQuote_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'usedAsQuote_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalPayoutAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalPayoutAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'purchaseCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'purchaseCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'payoutTokenTbvs_'; type: { kind: 'INPUT_OBJECT'; name: 'PayoutTokenTbv_filter'; ofType: null; }; defaultValue: null }, { name: 'uniqueBonders_'; type: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; defaultValue: null }, { name: 'markets_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'network' | 'chainId' | 'address' | 'decimals' | 'symbol' | 'name' | 'typeName' | 'lpPair' | 'lpPair__id' | 'balancerWeightedPool' | 'balancerWeightedPool__id' | 'balancerWeightedPool__vaultAddress' | 'balancerWeightedPool__poolId' | 'usedAsPayout' | 'usedAsQuote' | 'totalPayoutAmount' | 'purchaseCount' | 'payoutTokenTbvs' | 'uniqueBonders' | 'uniqueBonders__id' | 'uniqueBonders__count' | 'markets'; }; - 'Tune': { kind: 'OBJECT'; name: 'Tune'; fields: { 'deltaTime': { name: 'deltaTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; } }; 'newControlVariable': { name: 'newControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'oldControlVariable': { name: 'oldControlVariable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Tune_filter': { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'market_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'market_'; type: { kind: 'INPUT_OBJECT'; name: 'Market_filter'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'oldControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'oldControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newControlVariable_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newControlVariable_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'deltaTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'deltaTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tune_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Tune_orderBy': { name: 'Tune_orderBy'; enumValues: 'id' | 'market' | 'market__id' | 'market__name' | 'market__type' | 'market__network' | 'market__chainId' | 'market__auctioneer' | 'market__teller' | 'market__marketId' | 'market__owner' | 'market__vesting' | 'market__start' | 'market__conclusion' | 'market__vestingType' | 'market__isInstantSwap' | 'market__hasClosed' | 'market__totalBondedAmount' | 'market__totalPayoutAmount' | 'market__creationBlockTimestamp' | 'market__callbackAddress' | 'market__capacity' | 'market__capacityInQuote' | 'market__minPrice' | 'market__price' | 'market__scale' | 'market__averageBondPrice' | 'market__bondsIssued' | 'oldControlVariable' | 'newControlVariable' | 'deltaTime' | 'timestamp'; }; - 'UniqueBonder': { kind: 'OBJECT'; name: 'UniqueBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueBonderCount': { kind: 'OBJECT'; name: 'UniqueBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueBonderCount_orderBy': { name: 'UniqueBonderCount_orderBy'; enumValues: 'id' | 'count'; }; - 'UniqueBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueBonder_orderBy': { name: 'UniqueBonder_orderBy'; enumValues: 'id'; }; - 'UniqueTokenBonder': { kind: 'OBJECT'; name: 'UniqueTokenBonder'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; }; - 'UniqueTokenBonderCount': { kind: 'OBJECT'; name: 'UniqueTokenBonderCount'; fields: { 'count': { name: 'count'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; }; }; - 'UniqueTokenBonderCount_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'count'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'count_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'count_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonderCount_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueTokenBonderCount_orderBy': { name: 'UniqueTokenBonderCount_orderBy'; enumValues: 'id' | 'token' | 'token__id' | 'token__network' | 'token__chainId' | 'token__address' | 'token__decimals' | 'token__symbol' | 'token__name' | 'token__typeName' | 'token__usedAsPayout' | 'token__usedAsQuote' | 'token__totalPayoutAmount' | 'token__purchaseCount' | 'count'; }; - 'UniqueTokenBonder_filter': { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'id_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniqueTokenBonder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniqueTokenBonder_orderBy': { name: 'UniqueTokenBonder_orderBy'; enumValues: 'id'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/furo/graphql.ts b/packages/graph-client-new/src/subgraphs/furo/graphql.ts new file mode 100644 index 0000000000..e33b67ca9f --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/furo/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './furo-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/furo/index.ts b/packages/graph-client-new/src/subgraphs/furo/index.ts new file mode 100644 index 0000000000..60e8155ff8 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/furo/index.ts @@ -0,0 +1 @@ +export * from './queries/tokens' diff --git a/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts new file mode 100644 index 0000000000..009a4e119a --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts @@ -0,0 +1,49 @@ +import type { VariablesOf } from 'gql.tada' +import type { FuroChainId } from 'sushi/config' +import { FURO_SUBGRAPH_URL } from 'sushi/config/subgraph' + +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' +import { graphql } from '../graphql' + +export const FuroTokensQuery = graphql(` + query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) { + tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + decimals + liquidityShares + symbol + name + rebase { + base + elastic + } + } + } +`) + +export type GetFuroTokens = VariablesOf & + ChainIdVariable + +export async function getFuroTokens({ chainId, ...variables }: GetFuroTokens) { + const url = `https://${FURO_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: FuroTokensQuery, + variables, + }) + + return result.tokens.map((token) => + convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, token as typeof token & { id: Hex })), + ), + ) +} + +export type FuroTokens = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/furo/schema.graphql b/packages/graph-client-new/src/subgraphs/furo/schema.graphql new file mode 100644 index 0000000000..60a1e3c975 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/furo/schema.graphql @@ -0,0 +1,2096 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +enum FuroStatus { + ACTIVE + CANCELLED +} + +type Global { + id: ID! + vestingCount: BigInt! + streamCount: BigInt! + userCount: BigInt! + transactionCount: BigInt! +} + +input Global_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!] + vestingCount: BigInt + vestingCount_not: BigInt + vestingCount_gt: BigInt + vestingCount_lt: BigInt + vestingCount_gte: BigInt + vestingCount_lte: BigInt + vestingCount_in: [BigInt!] + vestingCount_not_in: [BigInt!] + streamCount: BigInt + streamCount_not: BigInt + streamCount_gt: BigInt + streamCount_lt: BigInt + streamCount_gte: BigInt + streamCount_lte: BigInt + streamCount_in: [BigInt!] + streamCount_not_in: [BigInt!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Global_filter] + or: [Global_filter] +} + +enum Global_orderBy { + id + vestingCount + streamCount + userCount + transactionCount +} + +"8 bytes signed integer\n" +scalar Int8 + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type Query { + global( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Global + globals( + skip: Int = 0 + first: Int = 100 + orderBy: Global_orderBy + orderDirection: OrderDirection + where: Global_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Global!]! + stream( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Stream + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Stream!]! + vesting( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Vesting + vestings( + skip: Int = 0 + first: Int = 100 + orderBy: Vesting_orderBy + orderDirection: OrderDirection + where: Vesting_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Vesting!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + rebase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rebase + rebases( + skip: Int = 0 + first: Int = 100 + orderBy: Rebase_orderBy + orderDirection: OrderDirection + where: Rebase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rebase!]! + tokenHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourSnapshot + tokenHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourSnapshot_orderBy + orderDirection: OrderDirection + where: TokenHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourSnapshot!]! + tokenDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDaySnapshot + tokenDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDaySnapshot_orderBy + orderDirection: OrderDirection + where: TokenDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDaySnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Rebase { + """ Token address """ + id: ID! + + """ Token this rebase belongs to """ + token: Token! + + """ Base (Share) """ + base: BigInt! + + """ Elastic (Amount) """ + elastic: BigInt! + + """ created at block, used internally to know when to ignore updates for the rebase + """ + createdAtBlock: BigInt! +} + +input Rebase_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + base: BigInt + base_not: BigInt + base_gt: BigInt + base_lt: BigInt + base_gte: BigInt + base_lte: BigInt + base_in: [BigInt!] + base_not_in: [BigInt!] + elastic: BigInt + elastic_not: BigInt + elastic_gt: BigInt + elastic_lt: BigInt + elastic_gte: BigInt + elastic_lte: BigInt + elastic_in: [BigInt!] + elastic_not_in: [BigInt!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Rebase_filter] + or: [Rebase_filter] +} + +enum Rebase_orderBy { + id + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + base + elastic + createdAtBlock +} + +type Stream { + id: ID! + recipient: User! + + """ Initial shares """ + initialShares: BigInt! + + """ Initial amount """ + initialAmount: BigInt! + + """ Extended shares, increases for each time the stream is updated with a top up amount + """ + extendedShares: BigInt! + + """ Set when a stream is extended, useful to keep track of how much many shares a stream contained after extending + """ + initialSharesExtended: BigInt! + + """ Amount that has been withdrawn after extending the stream """ + withdrawnAmountAfterExtension: BigInt! + + """ Remaining shares """ + remainingShares: BigInt! + + """ Withdrawn amount """ + withdrawnAmount: BigInt! + token: Token! + status: FuroStatus! + createdBy: User! + fromBentoBox: Boolean! + startedAt: BigInt! + expiresAt: BigInt! + txHash: String! + transactionCount: BigInt! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! + extendedAtBlock: BigInt! + extendedAtTimestamp: BigInt! + modifiedAtBlock: BigInt! + modifiedAtTimestamp: BigInt! +} + +input Stream_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!] + recipient: String + recipient_not: String + recipient_gt: String + recipient_lt: String + recipient_gte: String + recipient_lte: String + recipient_in: [String!] + recipient_not_in: [String!] + recipient_contains: String + recipient_contains_nocase: String + recipient_not_contains: String + recipient_not_contains_nocase: String + recipient_starts_with: String + recipient_starts_with_nocase: String + recipient_not_starts_with: String + recipient_not_starts_with_nocase: String + recipient_ends_with: String + recipient_ends_with_nocase: String + recipient_not_ends_with: String + recipient_not_ends_with_nocase: String + recipient_: User_filter + initialShares: BigInt + initialShares_not: BigInt + initialShares_gt: BigInt + initialShares_lt: BigInt + initialShares_gte: BigInt + initialShares_lte: BigInt + initialShares_in: [BigInt!] + initialShares_not_in: [BigInt!] + initialAmount: BigInt + initialAmount_not: BigInt + initialAmount_gt: BigInt + initialAmount_lt: BigInt + initialAmount_gte: BigInt + initialAmount_lte: BigInt + initialAmount_in: [BigInt!] + initialAmount_not_in: [BigInt!] + extendedShares: BigInt + extendedShares_not: BigInt + extendedShares_gt: BigInt + extendedShares_lt: BigInt + extendedShares_gte: BigInt + extendedShares_lte: BigInt + extendedShares_in: [BigInt!] + extendedShares_not_in: [BigInt!] + initialSharesExtended: BigInt + initialSharesExtended_not: BigInt + initialSharesExtended_gt: BigInt + initialSharesExtended_lt: BigInt + initialSharesExtended_gte: BigInt + initialSharesExtended_lte: BigInt + initialSharesExtended_in: [BigInt!] + initialSharesExtended_not_in: [BigInt!] + withdrawnAmountAfterExtension: BigInt + withdrawnAmountAfterExtension_not: BigInt + withdrawnAmountAfterExtension_gt: BigInt + withdrawnAmountAfterExtension_lt: BigInt + withdrawnAmountAfterExtension_gte: BigInt + withdrawnAmountAfterExtension_lte: BigInt + withdrawnAmountAfterExtension_in: [BigInt!] + withdrawnAmountAfterExtension_not_in: [BigInt!] + remainingShares: BigInt + remainingShares_not: BigInt + remainingShares_gt: BigInt + remainingShares_lt: BigInt + remainingShares_gte: BigInt + remainingShares_lte: BigInt + remainingShares_in: [BigInt!] + remainingShares_not_in: [BigInt!] + withdrawnAmount: BigInt + withdrawnAmount_not: BigInt + withdrawnAmount_gt: BigInt + withdrawnAmount_lt: BigInt + withdrawnAmount_gte: BigInt + withdrawnAmount_lte: BigInt + withdrawnAmount_in: [BigInt!] + withdrawnAmount_not_in: [BigInt!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + status: FuroStatus + status_not: FuroStatus + status_in: [FuroStatus!] + status_not_in: [FuroStatus!] + createdBy: String + createdBy_not: String + createdBy_gt: String + createdBy_lt: String + createdBy_gte: String + createdBy_lte: String + createdBy_in: [String!] + createdBy_not_in: [String!] + createdBy_contains: String + createdBy_contains_nocase: String + createdBy_not_contains: String + createdBy_not_contains_nocase: String + createdBy_starts_with: String + createdBy_starts_with_nocase: String + createdBy_not_starts_with: String + createdBy_not_starts_with_nocase: String + createdBy_ends_with: String + createdBy_ends_with_nocase: String + createdBy_not_ends_with: String + createdBy_not_ends_with_nocase: String + createdBy_: User_filter + fromBentoBox: Boolean + fromBentoBox_not: Boolean + fromBentoBox_in: [Boolean!] + fromBentoBox_not_in: [Boolean!] + startedAt: BigInt + startedAt_not: BigInt + startedAt_gt: BigInt + startedAt_lt: BigInt + startedAt_gte: BigInt + startedAt_lte: BigInt + startedAt_in: [BigInt!] + startedAt_not_in: [BigInt!] + expiresAt: BigInt + expiresAt_not: BigInt + expiresAt_gt: BigInt + expiresAt_lt: BigInt + expiresAt_gte: BigInt + expiresAt_lte: BigInt + expiresAt_in: [BigInt!] + expiresAt_not_in: [BigInt!] + txHash: String + txHash_not: String + txHash_gt: String + txHash_lt: String + txHash_gte: String + txHash_lte: String + txHash_in: [String!] + txHash_not_in: [String!] + txHash_contains: String + txHash_contains_nocase: String + txHash_not_contains: String + txHash_not_contains_nocase: String + txHash_starts_with: String + txHash_starts_with_nocase: String + txHash_not_starts_with: String + txHash_not_starts_with_nocase: String + txHash_ends_with: String + txHash_ends_with_nocase: String + txHash_not_ends_with: String + txHash_not_ends_with_nocase: String + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + extendedAtBlock: BigInt + extendedAtBlock_not: BigInt + extendedAtBlock_gt: BigInt + extendedAtBlock_lt: BigInt + extendedAtBlock_gte: BigInt + extendedAtBlock_lte: BigInt + extendedAtBlock_in: [BigInt!] + extendedAtBlock_not_in: [BigInt!] + extendedAtTimestamp: BigInt + extendedAtTimestamp_not: BigInt + extendedAtTimestamp_gt: BigInt + extendedAtTimestamp_lt: BigInt + extendedAtTimestamp_gte: BigInt + extendedAtTimestamp_lte: BigInt + extendedAtTimestamp_in: [BigInt!] + extendedAtTimestamp_not_in: [BigInt!] + modifiedAtBlock: BigInt + modifiedAtBlock_not: BigInt + modifiedAtBlock_gt: BigInt + modifiedAtBlock_lt: BigInt + modifiedAtBlock_gte: BigInt + modifiedAtBlock_lte: BigInt + modifiedAtBlock_in: [BigInt!] + modifiedAtBlock_not_in: [BigInt!] + modifiedAtTimestamp: BigInt + modifiedAtTimestamp_not: BigInt + modifiedAtTimestamp_gt: BigInt + modifiedAtTimestamp_lt: BigInt + modifiedAtTimestamp_gte: BigInt + modifiedAtTimestamp_lte: BigInt + modifiedAtTimestamp_in: [BigInt!] + modifiedAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Stream_filter] + or: [Stream_filter] +} + +enum Stream_orderBy { + id + recipient + recipient__id + recipient__createdAtBlock + recipient__createdAtTimestamp + initialShares + initialAmount + extendedShares + initialSharesExtended + withdrawnAmountAfterExtension + remainingShares + withdrawnAmount + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + status + createdBy + createdBy__id + createdBy__createdAtBlock + createdBy__createdAtTimestamp + fromBentoBox + startedAt + expiresAt + txHash + transactionCount + createdAtBlock + createdAtTimestamp + extendedAtBlock + extendedAtTimestamp + modifiedAtBlock + modifiedAtTimestamp +} + +type Subscription { + global( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Global + globals( + skip: Int = 0 + first: Int = 100 + orderBy: Global_orderBy + orderDirection: OrderDirection + where: Global_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Global!]! + stream( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Stream + streams( + skip: Int = 0 + first: Int = 100 + orderBy: Stream_orderBy + orderDirection: OrderDirection + where: Stream_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Stream!]! + vesting( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Vesting + vestings( + skip: Int = 0 + first: Int = 100 + orderBy: Vesting_orderBy + orderDirection: OrderDirection + where: Vesting_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Vesting!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + rebase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rebase + rebases( + skip: Int = 0 + first: Int = 100 + orderBy: Rebase_orderBy + orderDirection: OrderDirection + where: Rebase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rebase!]! + tokenHourSnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourSnapshot + tokenHourSnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourSnapshot_orderBy + orderDirection: OrderDirection + where: TokenHourSnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourSnapshot!]! + tokenDaySnapshot( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDaySnapshot + tokenDaySnapshots( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDaySnapshot_orderBy + orderDirection: OrderDirection + where: TokenDaySnapshot_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDaySnapshot!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type Token { + id: ID! + liquidityShares: BigInt! + symbol: String! + symbolSuccess: Boolean! + name: String! + nameSuccess: Boolean! + decimals: BigInt! + decimalsSuccess: Boolean! + rebase: Rebase! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +type TokenDaySnapshot { + """ {tokenId}-day-{timestamp} """ + id: ID! + date: Int! + token: Token! + cumulativeLiquidityShares: BigInt! + cumulativeLiquidityAmount: BigInt! + transactionCount: BigInt! +} + +input TokenDaySnapshot_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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + cumulativeLiquidityShares: BigInt + cumulativeLiquidityShares_not: BigInt + cumulativeLiquidityShares_gt: BigInt + cumulativeLiquidityShares_lt: BigInt + cumulativeLiquidityShares_gte: BigInt + cumulativeLiquidityShares_lte: BigInt + cumulativeLiquidityShares_in: [BigInt!] + cumulativeLiquidityShares_not_in: [BigInt!] + cumulativeLiquidityAmount: BigInt + cumulativeLiquidityAmount_not: BigInt + cumulativeLiquidityAmount_gt: BigInt + cumulativeLiquidityAmount_lt: BigInt + cumulativeLiquidityAmount_gte: BigInt + cumulativeLiquidityAmount_lte: BigInt + cumulativeLiquidityAmount_in: [BigInt!] + cumulativeLiquidityAmount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenDaySnapshot_filter] + or: [TokenDaySnapshot_filter] +} + +enum TokenDaySnapshot_orderBy { + id + date + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + cumulativeLiquidityShares + cumulativeLiquidityAmount + transactionCount +} + +type TokenHourSnapshot { + """ {tokenId}-hour-{timestamp} """ + id: ID! + date: Int! + token: Token! + cumulativeLiquidityShares: BigInt! + cumulativeLiquidityAmount: BigInt! + transactionCount: BigInt! +} + +input TokenHourSnapshot_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_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + cumulativeLiquidityShares: BigInt + cumulativeLiquidityShares_not: BigInt + cumulativeLiquidityShares_gt: BigInt + cumulativeLiquidityShares_lt: BigInt + cumulativeLiquidityShares_gte: BigInt + cumulativeLiquidityShares_lte: BigInt + cumulativeLiquidityShares_in: [BigInt!] + cumulativeLiquidityShares_not_in: [BigInt!] + cumulativeLiquidityAmount: BigInt + cumulativeLiquidityAmount_not: BigInt + cumulativeLiquidityAmount_gt: BigInt + cumulativeLiquidityAmount_lt: BigInt + cumulativeLiquidityAmount_gte: BigInt + cumulativeLiquidityAmount_lte: BigInt + cumulativeLiquidityAmount_in: [BigInt!] + cumulativeLiquidityAmount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenHourSnapshot_filter] + or: [TokenHourSnapshot_filter] +} + +enum TokenHourSnapshot_orderBy { + id + date + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + cumulativeLiquidityShares + cumulativeLiquidityAmount + transactionCount +} + +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!] + liquidityShares: BigInt + liquidityShares_not: BigInt + liquidityShares_gt: BigInt + liquidityShares_lt: BigInt + liquidityShares_gte: BigInt + liquidityShares_lte: BigInt + liquidityShares_in: [BigInt!] + liquidityShares_not_in: [BigInt!] + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + symbolSuccess: Boolean + symbolSuccess_not: Boolean + symbolSuccess_in: [Boolean!] + symbolSuccess_not_in: [Boolean!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + nameSuccess: Boolean + nameSuccess_not: Boolean + nameSuccess_in: [Boolean!] + nameSuccess_not_in: [Boolean!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + decimalsSuccess: Boolean + decimalsSuccess_not: Boolean + decimalsSuccess_in: [Boolean!] + decimalsSuccess_not_in: [Boolean!] + rebase: String + rebase_not: String + rebase_gt: String + rebase_lt: String + rebase_gte: String + rebase_lte: String + rebase_in: [String!] + rebase_not_in: [String!] + rebase_contains: String + rebase_contains_nocase: String + rebase_not_contains: String + rebase_not_contains_nocase: String + rebase_starts_with: String + rebase_starts_with_nocase: String + rebase_not_starts_with: String + rebase_not_starts_with_nocase: String + rebase_ends_with: String + rebase_ends_with_nocase: String + rebase_not_ends_with: String + rebase_not_ends_with_nocase: String + rebase_: Rebase_filter + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + liquidityShares + symbol + symbolSuccess + name + nameSuccess + decimals + decimalsSuccess + rebase + rebase__id + rebase__base + rebase__elastic + rebase__createdAtBlock + createdAtBlock + createdAtTimestamp +} + +type Transaction { + id: ID! + type: TransactionType! + stream: Stream + vesting: Vesting + amount: BigInt! + to: User! + token: Token! + toBentoBox: Boolean! + txHash: String! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +enum TransactionType { + DEPOSIT + EXTEND + WITHDRAWAL + DISBURSEMENT +} + +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!] + type: TransactionType + type_not: TransactionType + type_in: [TransactionType!] + type_not_in: [TransactionType!] + stream: String + stream_not: String + stream_gt: String + stream_lt: String + stream_gte: String + stream_lte: String + stream_in: [String!] + stream_not_in: [String!] + stream_contains: String + stream_contains_nocase: String + stream_not_contains: String + stream_not_contains_nocase: String + stream_starts_with: String + stream_starts_with_nocase: String + stream_not_starts_with: String + stream_not_starts_with_nocase: String + stream_ends_with: String + stream_ends_with_nocase: String + stream_not_ends_with: String + stream_not_ends_with_nocase: String + stream_: Stream_filter + vesting: String + vesting_not: String + vesting_gt: String + vesting_lt: String + vesting_gte: String + vesting_lte: String + vesting_in: [String!] + vesting_not_in: [String!] + vesting_contains: String + vesting_contains_nocase: String + vesting_not_contains: String + vesting_not_contains_nocase: String + vesting_starts_with: String + vesting_starts_with_nocase: String + vesting_not_starts_with: String + vesting_not_starts_with_nocase: String + vesting_ends_with: String + vesting_ends_with_nocase: String + vesting_not_ends_with: String + vesting_not_ends_with_nocase: String + vesting_: Vesting_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + to_: User_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + toBentoBox: Boolean + toBentoBox_not: Boolean + toBentoBox_in: [Boolean!] + toBentoBox_not_in: [Boolean!] + txHash: String + txHash_not: String + txHash_gt: String + txHash_lt: String + txHash_gte: String + txHash_lte: String + txHash_in: [String!] + txHash_not_in: [String!] + txHash_contains: String + txHash_contains_nocase: String + txHash_not_contains: String + txHash_not_contains_nocase: String + txHash_starts_with: String + txHash_starts_with_nocase: String + txHash_not_starts_with: String + txHash_not_starts_with_nocase: String + txHash_ends_with: String + txHash_ends_with_nocase: String + txHash_not_ends_with: String + txHash_not_ends_with_nocase: String + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + type + stream + stream__id + stream__initialShares + stream__initialAmount + stream__extendedShares + stream__initialSharesExtended + stream__withdrawnAmountAfterExtension + stream__remainingShares + stream__withdrawnAmount + stream__status + stream__fromBentoBox + stream__startedAt + stream__expiresAt + stream__txHash + stream__transactionCount + stream__createdAtBlock + stream__createdAtTimestamp + stream__extendedAtBlock + stream__extendedAtTimestamp + stream__modifiedAtBlock + stream__modifiedAtTimestamp + vesting + vesting__id + vesting__cliffDuration + vesting__stepDuration + vesting__steps + vesting__cliffShares + vesting__stepShares + vesting__remainingShares + vesting__initialShares + vesting__initialAmount + vesting__withdrawnAmount + vesting__status + vesting__fromBentoBox + vesting__startedAt + vesting__expiresAt + vesting__txHash + vesting__transactionCount + vesting__createdAtBlock + vesting__createdAtTimestamp + vesting__modifiedAtBlock + vesting__modifiedAtTimestamp + vesting__cancelledAtBlock + vesting__cancelledAtTimestamp + amount + to + to__id + to__createdAtBlock + to__createdAtTimestamp + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + toBentoBox + txHash + createdAtBlock + createdAtTimestamp +} + +type User { + id: ID! + incomingStreams(skip: Int = 0, first: Int = 100, orderBy: Stream_orderBy, orderDirection: OrderDirection, where: Stream_filter): [Stream!]! + outgoingStreams(skip: Int = 0, first: Int = 100, orderBy: Stream_orderBy, orderDirection: OrderDirection, where: Stream_filter): [Stream!]! + incomingVestings(skip: Int = 0, first: Int = 100, orderBy: Vesting_orderBy, orderDirection: OrderDirection, where: Vesting_filter): [Vesting!]! + outgoingVestings(skip: Int = 0, first: Int = 100, orderBy: Vesting_orderBy, orderDirection: OrderDirection, where: Vesting_filter): [Vesting!]! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! +} + +input User_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!] + incomingStreams_: Stream_filter + outgoingStreams_: Stream_filter + incomingVestings_: Vesting_filter + outgoingVestings_: Vesting_filter + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + incomingStreams + outgoingStreams + incomingVestings + outgoingVestings + createdAtBlock + createdAtTimestamp +} + +type Vesting { + id: ID! + recipient: User! + cliffDuration: BigInt! + stepDuration: BigInt! + steps: BigInt! + cliffShares: BigInt! + stepShares: BigInt! + + """ shares remaining, decreases on withdrawal """ + remainingShares: BigInt! + + """ Initial shares """ + initialShares: BigInt! + + """ Initial amount """ + initialAmount: BigInt! + + """ Withdrawn amount """ + withdrawnAmount: BigInt! + token: Token! + status: FuroStatus! + createdBy: User! + fromBentoBox: Boolean! + startedAt: BigInt! + expiresAt: BigInt! + txHash: String! + transactionCount: BigInt! + createdAtBlock: BigInt! + createdAtTimestamp: BigInt! + modifiedAtBlock: BigInt! + modifiedAtTimestamp: BigInt! + cancelledAtBlock: BigInt + cancelledAtTimestamp: BigInt +} + +input Vesting_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!] + recipient: String + recipient_not: String + recipient_gt: String + recipient_lt: String + recipient_gte: String + recipient_lte: String + recipient_in: [String!] + recipient_not_in: [String!] + recipient_contains: String + recipient_contains_nocase: String + recipient_not_contains: String + recipient_not_contains_nocase: String + recipient_starts_with: String + recipient_starts_with_nocase: String + recipient_not_starts_with: String + recipient_not_starts_with_nocase: String + recipient_ends_with: String + recipient_ends_with_nocase: String + recipient_not_ends_with: String + recipient_not_ends_with_nocase: String + recipient_: User_filter + cliffDuration: BigInt + cliffDuration_not: BigInt + cliffDuration_gt: BigInt + cliffDuration_lt: BigInt + cliffDuration_gte: BigInt + cliffDuration_lte: BigInt + cliffDuration_in: [BigInt!] + cliffDuration_not_in: [BigInt!] + stepDuration: BigInt + stepDuration_not: BigInt + stepDuration_gt: BigInt + stepDuration_lt: BigInt + stepDuration_gte: BigInt + stepDuration_lte: BigInt + stepDuration_in: [BigInt!] + stepDuration_not_in: [BigInt!] + steps: BigInt + steps_not: BigInt + steps_gt: BigInt + steps_lt: BigInt + steps_gte: BigInt + steps_lte: BigInt + steps_in: [BigInt!] + steps_not_in: [BigInt!] + cliffShares: BigInt + cliffShares_not: BigInt + cliffShares_gt: BigInt + cliffShares_lt: BigInt + cliffShares_gte: BigInt + cliffShares_lte: BigInt + cliffShares_in: [BigInt!] + cliffShares_not_in: [BigInt!] + stepShares: BigInt + stepShares_not: BigInt + stepShares_gt: BigInt + stepShares_lt: BigInt + stepShares_gte: BigInt + stepShares_lte: BigInt + stepShares_in: [BigInt!] + stepShares_not_in: [BigInt!] + remainingShares: BigInt + remainingShares_not: BigInt + remainingShares_gt: BigInt + remainingShares_lt: BigInt + remainingShares_gte: BigInt + remainingShares_lte: BigInt + remainingShares_in: [BigInt!] + remainingShares_not_in: [BigInt!] + initialShares: BigInt + initialShares_not: BigInt + initialShares_gt: BigInt + initialShares_lt: BigInt + initialShares_gte: BigInt + initialShares_lte: BigInt + initialShares_in: [BigInt!] + initialShares_not_in: [BigInt!] + initialAmount: BigInt + initialAmount_not: BigInt + initialAmount_gt: BigInt + initialAmount_lt: BigInt + initialAmount_gte: BigInt + initialAmount_lte: BigInt + initialAmount_in: [BigInt!] + initialAmount_not_in: [BigInt!] + withdrawnAmount: BigInt + withdrawnAmount_not: BigInt + withdrawnAmount_gt: BigInt + withdrawnAmount_lt: BigInt + withdrawnAmount_gte: BigInt + withdrawnAmount_lte: BigInt + withdrawnAmount_in: [BigInt!] + withdrawnAmount_not_in: [BigInt!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + status: FuroStatus + status_not: FuroStatus + status_in: [FuroStatus!] + status_not_in: [FuroStatus!] + createdBy: String + createdBy_not: String + createdBy_gt: String + createdBy_lt: String + createdBy_gte: String + createdBy_lte: String + createdBy_in: [String!] + createdBy_not_in: [String!] + createdBy_contains: String + createdBy_contains_nocase: String + createdBy_not_contains: String + createdBy_not_contains_nocase: String + createdBy_starts_with: String + createdBy_starts_with_nocase: String + createdBy_not_starts_with: String + createdBy_not_starts_with_nocase: String + createdBy_ends_with: String + createdBy_ends_with_nocase: String + createdBy_not_ends_with: String + createdBy_not_ends_with_nocase: String + createdBy_: User_filter + fromBentoBox: Boolean + fromBentoBox_not: Boolean + fromBentoBox_in: [Boolean!] + fromBentoBox_not_in: [Boolean!] + startedAt: BigInt + startedAt_not: BigInt + startedAt_gt: BigInt + startedAt_lt: BigInt + startedAt_gte: BigInt + startedAt_lte: BigInt + startedAt_in: [BigInt!] + startedAt_not_in: [BigInt!] + expiresAt: BigInt + expiresAt_not: BigInt + expiresAt_gt: BigInt + expiresAt_lt: BigInt + expiresAt_gte: BigInt + expiresAt_lte: BigInt + expiresAt_in: [BigInt!] + expiresAt_not_in: [BigInt!] + txHash: String + txHash_not: String + txHash_gt: String + txHash_lt: String + txHash_gte: String + txHash_lte: String + txHash_in: [String!] + txHash_not_in: [String!] + txHash_contains: String + txHash_contains_nocase: String + txHash_not_contains: String + txHash_not_contains_nocase: String + txHash_starts_with: String + txHash_starts_with_nocase: String + txHash_not_starts_with: String + txHash_not_starts_with_nocase: String + txHash_ends_with: String + txHash_ends_with_nocase: String + txHash_not_ends_with: String + txHash_not_ends_with_nocase: String + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + createdAtBlock: BigInt + createdAtBlock_not: BigInt + createdAtBlock_gt: BigInt + createdAtBlock_lt: BigInt + createdAtBlock_gte: BigInt + createdAtBlock_lte: BigInt + createdAtBlock_in: [BigInt!] + createdAtBlock_not_in: [BigInt!] + createdAtTimestamp: BigInt + createdAtTimestamp_not: BigInt + createdAtTimestamp_gt: BigInt + createdAtTimestamp_lt: BigInt + createdAtTimestamp_gte: BigInt + createdAtTimestamp_lte: BigInt + createdAtTimestamp_in: [BigInt!] + createdAtTimestamp_not_in: [BigInt!] + modifiedAtBlock: BigInt + modifiedAtBlock_not: BigInt + modifiedAtBlock_gt: BigInt + modifiedAtBlock_lt: BigInt + modifiedAtBlock_gte: BigInt + modifiedAtBlock_lte: BigInt + modifiedAtBlock_in: [BigInt!] + modifiedAtBlock_not_in: [BigInt!] + modifiedAtTimestamp: BigInt + modifiedAtTimestamp_not: BigInt + modifiedAtTimestamp_gt: BigInt + modifiedAtTimestamp_lt: BigInt + modifiedAtTimestamp_gte: BigInt + modifiedAtTimestamp_lte: BigInt + modifiedAtTimestamp_in: [BigInt!] + modifiedAtTimestamp_not_in: [BigInt!] + cancelledAtBlock: BigInt + cancelledAtBlock_not: BigInt + cancelledAtBlock_gt: BigInt + cancelledAtBlock_lt: BigInt + cancelledAtBlock_gte: BigInt + cancelledAtBlock_lte: BigInt + cancelledAtBlock_in: [BigInt!] + cancelledAtBlock_not_in: [BigInt!] + cancelledAtTimestamp: BigInt + cancelledAtTimestamp_not: BigInt + cancelledAtTimestamp_gt: BigInt + cancelledAtTimestamp_lt: BigInt + cancelledAtTimestamp_gte: BigInt + cancelledAtTimestamp_lte: BigInt + cancelledAtTimestamp_in: [BigInt!] + cancelledAtTimestamp_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Vesting_filter] + or: [Vesting_filter] +} + +enum Vesting_orderBy { + id + recipient + recipient__id + recipient__createdAtBlock + recipient__createdAtTimestamp + cliffDuration + stepDuration + steps + cliffShares + stepShares + remainingShares + initialShares + initialAmount + withdrawnAmount + token + token__id + token__liquidityShares + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + token__createdAtBlock + token__createdAtTimestamp + status + createdBy + createdBy__id + createdBy__createdAtBlock + createdBy__createdAtTimestamp + fromBentoBox + startedAt + expiresAt + txHash + transactionCount + createdAtBlock + createdAtTimestamp + modifiedAtBlock + modifiedAtTimestamp + cancelledAtBlock + cancelledAtTimestamp +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts deleted file mode 100644 index d240778a55..0000000000 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-cache.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts deleted file mode 100644 index 1e79348357..0000000000 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/master-chef-v1-env.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'master-chef-v1'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'History': { kind: 'OBJECT'; name: 'History'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'History_filter': { kind: 'INPUT_OBJECT'; name: 'History_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'History_orderBy': { name: 'History_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block'; }; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'bonusEndBlock': { name: 'bonusEndBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'bonusMultiplier': { name: 'bonusMultiplier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'devaddr': { name: 'devaddr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'history': { name: 'history'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'migrator': { name: 'migrator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'startBlock': { name: 'startBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerBlock': { name: 'sushiPerBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusMultiplier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusMultiplier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'bonusEndBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'bonusEndBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'devaddr_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'devaddr_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'migrator_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'migrator_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'startBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'startBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'startBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'history_'; type: { kind: 'INPUT_OBJECT'; name: 'History_filter'; ofType: null; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'bonusMultiplier' | 'bonusEndBlock' | 'devaddr' | 'migrator' | 'owner' | 'startBlock' | 'sushi' | 'sushiPerBlock' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'history' | 'updatedAt'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'updatedAt': { name: 'updatedAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'PoolHistory': { kind: 'OBJECT'; name: 'PoolHistory'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'slpAge': { name: 'slpAge'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpAgeRemoved': { name: 'slpAgeRemoved'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpDeposited': { name: 'slpDeposited'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'slpWithdrawn': { name: 'slpWithdrawn'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'PoolHistory_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHistory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolHistory_orderBy': { name: 'PoolHistory_orderBy'; enumValues: 'id' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'userCount' | 'timestamp' | 'block' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'owner_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAge_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAge_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpAgeRemoved_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpAgeRemoved_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpDeposited_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpDeposited_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'slpWithdrawn_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpWithdrawn_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'updatedAt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'updatedAt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'owner' | 'owner__id' | 'owner__bonusMultiplier' | 'owner__bonusEndBlock' | 'owner__devaddr' | 'owner__migrator' | 'owner__owner' | 'owner__startBlock' | 'owner__sushi' | 'owner__sushiPerBlock' | 'owner__totalAllocPoint' | 'owner__poolCount' | 'owner__slpBalance' | 'owner__slpAge' | 'owner__slpAgeRemoved' | 'owner__slpDeposited' | 'owner__slpWithdrawn' | 'owner__updatedAt' | 'pair' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'balance' | 'users' | 'userCount' | 'slpBalance' | 'slpAge' | 'slpAgeRemoved' | 'slpDeposited' | 'slpWithdrawn' | 'timestamp' | 'block' | 'updatedAt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'histories': { name: 'histories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'History'; ofType: null; }; }; }; } }; 'history': { name: 'history'; type: { kind: 'OBJECT'; name: 'History'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolHistories': { name: 'poolHistories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; }; }; }; } }; 'poolHistory': { name: 'poolHistory'; type: { kind: 'OBJECT'; name: 'PoolHistory'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'entryUSD': { name: 'entryUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'exitUSD': { name: 'exitUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvestedUSD': { name: 'sushiHarvestedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'entryUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'entryUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'exitUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'exitUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvestedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvestedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__balance' | 'pool__userCount' | 'pool__slpBalance' | 'pool__slpAge' | 'pool__slpAgeRemoved' | 'pool__slpDeposited' | 'pool__slpWithdrawn' | 'pool__timestamp' | 'pool__block' | 'pool__updatedAt' | 'pool__entryUSD' | 'pool__exitUSD' | 'pool__sushiHarvested' | 'pool__sushiHarvestedUSD' | 'amount' | 'rewardDebt' | 'entryUSD' | 'exitUSD' | 'sushiHarvested' | 'sushiHarvestedUSD' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts deleted file mode 100644 index d240778a55..0000000000 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-cache.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts deleted file mode 100644 index 14ee77189b..0000000000 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/master-chef-v2-env.d.ts +++ /dev/null @@ -1,51 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'master-chef-v2'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MasterChef': { kind: 'OBJECT'; name: 'MasterChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MasterChef_filter': { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MasterChef_orderBy': { name: 'MasterChef_orderBy'; enumValues: 'id' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardBlock': { name: 'lastRewardBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'masterChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'masterChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MasterChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'masterChef' | 'masterChef__id' | 'masterChef__totalAllocPoint' | 'masterChef__poolCount' | 'masterChef__timestamp' | 'masterChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardBlock' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'timestamp' | 'block'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'masterChef': { name: 'masterChef'; type: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; } }; 'masterChefs': { name: 'masterChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MasterChef'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardBlock' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts deleted file mode 100644 index d240778a55..0000000000 --- a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-cache.d.ts +++ /dev/null @@ -1,10 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query UserPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: User_orderBy, $orderDirection: OrderDirection, $where: User_filter) {\n positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n address\n amount\n pool {\n id: pair\n }\n }\n }\n": - TadaDocumentNode<{ positions: { pool: { id: `0x${string}`; }; amount: string; address: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; rewardDebt_not_in?: string[]; rewardDebt_in?: string[]; rewardDebt_lte?: string; rewardDebt_gte?: string; rewardDebt_lt?: string; rewardDebt_gt?: string; rewardDebt_not?: string; rewardDebt?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; sushiHarvestedUSD_not_in?: string[]; sushiHarvestedUSD_in?: string[]; sushiHarvestedUSD_lte?: string; sushiHarvestedUSD_gte?: string; sushiHarvestedUSD_lt?: string; sushiHarvestedUSD_gt?: string; sushiHarvestedUSD_not?: string; sushiHarvestedUSD?: string; sushiHarvested_not_in?: string[]; sushiHarvested_in?: string[]; sushiHarvested_lte?: string; sushiHarvested_gte?: string; sushiHarvested_lt?: string; sushiHarvested_gt?: string; sushiHarvested_not?: string; sushiHarvested?: string; exitUSD_not_in?: string[]; exitUSD_in?: string[]; exitUSD_lte?: string; exitUSD_gte?: string; exitUSD_lt?: string; exitUSD_gt?: string; exitUSD_not?: string; exitUSD?: string; entryUSD_not_in?: string[]; entryUSD_in?: string[]; entryUSD_lte?: string; entryUSD_gte?: string; entryUSD_lt?: string; entryUSD_gt?: string; entryUSD_not?: string; entryUSD?: string; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; userCount_not_in?: string[]; userCount_in?: string[]; userCount_lte?: string; userCount_gte?: string; userCount_lt?: string; userCount_gt?: string; userCount_not?: string; userCount?: string; users_?: any; balance_not_in?: string[]; balance_in?: string[]; balance_lte?: string; balance_gte?: string; balance_lt?: string; balance_gt?: string; balance_not?: string; balance?: string; accSushiPerShare_not_in?: string[]; accSushiPerShare_in?: string[]; accSushiPerShare_lte?: string; accSushiPerShare_gte?: string; accSushiPerShare_lt?: string; accSushiPerShare_gt?: string; accSushiPerShare_not?: string; accSushiPerShare?: string; lastRewardBlock_not_in?: string[]; lastRewardBlock_in?: string[]; lastRewardBlock_lte?: string; lastRewardBlock_gte?: string; lastRewardBlock_lt?: string; lastRewardBlock_gt?: string; lastRewardBlock_not?: string; lastRewardBlock?: string; allocPoint_not_in?: string[]; allocPoint_in?: string[]; allocPoint_lte?: string; allocPoint_gte?: string; allocPoint_lt?: string; allocPoint_gt?: string; allocPoint_not?: string; allocPoint?: string; pair_not_contains?: `0x${string}`; pair_contains?: `0x${string}`; pair_not_in?: `0x${string}`[]; pair_in?: `0x${string}`[]; pair_lte?: `0x${string}`; pair_gte?: `0x${string}`; pair_lt?: `0x${string}`; pair_gt?: `0x${string}`; pair_not?: `0x${string}`; pair?: `0x${string}`; owner_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; updatedAt_not_in?: string[]; updatedAt_in?: string[]; updatedAt_lte?: string; updatedAt_gte?: string; updatedAt_lt?: string; updatedAt_gt?: string; updatedAt_not?: string; updatedAt?: string; history_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; block_not_in?: string[]; block_in?: string[]; block_lte?: string; block_gte?: string; block_lt?: string; block_gt?: string; block_not?: string; block?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; owner_?: any; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; slpWithdrawn_not_in?: string[]; slpWithdrawn_in?: string[]; slpWithdrawn_lte?: string; slpWithdrawn_gte?: string; slpWithdrawn_lt?: string; slpWithdrawn_gt?: string; slpWithdrawn_not?: string; slpWithdrawn?: string; slpDeposited_not_in?: string[]; slpDeposited_in?: string[]; slpDeposited_lte?: string; slpDeposited_gte?: string; slpDeposited_lt?: string; slpDeposited_gt?: string; slpDeposited_not?: string; slpDeposited?: string; slpAgeRemoved_not_in?: string[]; slpAgeRemoved_in?: string[]; slpAgeRemoved_lte?: string; slpAgeRemoved_gte?: string; slpAgeRemoved_lt?: string; slpAgeRemoved_gt?: string; slpAgeRemoved_not?: string; slpAgeRemoved?: string; slpAge_not_in?: string[]; slpAge_in?: string[]; slpAge_lte?: string; slpAge_gte?: string; slpAge_lt?: string; slpAge_gt?: string; slpAge_not?: string; slpAge?: string; slpBalance_not_in?: string[]; slpBalance_in?: string[]; slpBalance_lte?: string; slpBalance_gte?: string; slpBalance_lt?: string; slpBalance_gt?: string; slpBalance_not?: string; slpBalance?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; pools_?: any; totalAllocPoint_not_in?: string[]; totalAllocPoint_in?: string[]; totalAllocPoint_lte?: string; totalAllocPoint_gte?: string; totalAllocPoint_lt?: string; totalAllocPoint_gt?: string; totalAllocPoint_not?: string; totalAllocPoint?: string; sushiPerBlock_not_in?: string[]; sushiPerBlock_in?: string[]; sushiPerBlock_lte?: string; sushiPerBlock_gte?: string; sushiPerBlock_lt?: string; sushiPerBlock_gt?: string; sushiPerBlock_not?: string; sushiPerBlock?: string; sushi_not_contains?: `0x${string}`; sushi_contains?: `0x${string}`; sushi_not_in?: `0x${string}`[]; sushi_in?: `0x${string}`[]; sushi_lte?: `0x${string}`; sushi_gte?: `0x${string}`; sushi_lt?: `0x${string}`; sushi_gt?: `0x${string}`; sushi_not?: `0x${string}`; sushi?: `0x${string}`; startBlock_not_in?: string[]; startBlock_in?: string[]; startBlock_lte?: string; startBlock_gte?: string; startBlock_lt?: string; startBlock_gt?: string; startBlock_not?: string; startBlock?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; migrator_not_contains?: `0x${string}`; migrator_contains?: `0x${string}`; migrator_not_in?: `0x${string}`[]; migrator_in?: `0x${string}`[]; migrator_lte?: `0x${string}`; migrator_gte?: `0x${string}`; migrator_lt?: `0x${string}`; migrator_gt?: `0x${string}`; migrator_not?: `0x${string}`; migrator?: `0x${string}`; devaddr_not_contains?: `0x${string}`; devaddr_contains?: `0x${string}`; devaddr_not_in?: `0x${string}`[]; devaddr_in?: `0x${string}`[]; devaddr_lte?: `0x${string}`; devaddr_gte?: `0x${string}`; devaddr_lt?: `0x${string}`; devaddr_gt?: `0x${string}`; devaddr_not?: `0x${string}`; devaddr?: `0x${string}`; bonusEndBlock_not_in?: string[]; bonusEndBlock_in?: string[]; bonusEndBlock_lte?: string; bonusEndBlock_gte?: string; bonusEndBlock_lt?: string; bonusEndBlock_gt?: string; bonusEndBlock_not?: string; bonusEndBlock?: string; bonusMultiplier_not_in?: string[]; bonusMultiplier_in?: string[]; bonusMultiplier_lte?: string; bonusMultiplier_gte?: string; bonusMultiplier_lt?: string; bonusMultiplier_gt?: string; bonusMultiplier_not?: string; bonusMultiplier?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; owner_not_ends_with_nocase?: string; owner_not_ends_with?: string; owner_ends_with_nocase?: string; owner_ends_with?: string; owner_not_starts_with_nocase?: string; owner_not_starts_with?: string; owner_starts_with_nocase?: string; owner_starts_with?: string; owner_not_contains_nocase?: string; owner_not_contains?: string; owner_contains_nocase?: string; owner_contains?: string; owner_not_in?: string[]; owner_in?: string[]; owner_lte?: string; owner_gte?: string; owner_lt?: string; owner_gt?: string; owner_not?: string; owner?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; address_not_contains?: `0x${string}`; address_contains?: `0x${string}`; address_not_in?: `0x${string}`[]; address_in?: `0x${string}`[]; address_lte?: `0x${string}`; address_gte?: `0x${string}`; address_lt?: `0x${string}`; address_gt?: `0x${string}`; address_not?: `0x${string}`; address?: `0x${string}`; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "block" | "id" | "address" | "amount" | "pool" | "rewardDebt" | "entryUSD" | "exitUSD" | "sushiHarvested" | "sushiHarvestedUSD" | "timestamp" | "pool__id" | "pool__pair" | "pool__allocPoint" | "pool__lastRewardBlock" | "pool__accSushiPerShare" | "pool__balance" | "pool__userCount" | "pool__slpBalance" | "pool__slpAge" | "pool__slpAgeRemoved" | "pool__slpDeposited" | "pool__slpWithdrawn" | "pool__timestamp" | "pool__block" | "pool__updatedAt" | "pool__entryUSD" | "pool__exitUSD" | "pool__sushiHarvested" | "pool__sushiHarvestedUSD"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts b/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts deleted file mode 100644 index c79aa9e0d8..0000000000 --- a/packages/graph-client-new/src/subgraphs/mini-chef/mini-chef-env.d.ts +++ /dev/null @@ -1,54 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'mini-chef'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'MiniChef': { kind: 'OBJECT'; name: 'MiniChef'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pools': { name: 'pools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; } }; 'sushi': { name: 'sushi'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sushiPerSecond': { name: 'sushiPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'MiniChef_filter': { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushi_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushi_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'MiniChef_orderBy': { name: 'MiniChef_orderBy'; enumValues: 'id' | 'sushi' | 'sushiPerSecond' | 'totalAllocPoint' | 'pools' | 'poolCount' | 'timestamp' | 'block'; }; - 'NativeRewarderPool': { kind: 'OBJECT'; name: 'NativeRewarderPool'; fields: { 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'NativeRewarderPool_filter': { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'NativeRewarderPool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'NativeRewarderPool_orderBy': { name: 'NativeRewarderPool_orderBy'; enumValues: 'id' | 'allocPoint'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'accSushiPerShare': { name: 'accSushiPerShare'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'allocPoint': { name: 'allocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'lastRewardTime': { name: 'lastRewardTime'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'slpBalance': { name: 'slpBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'miniChef_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'miniChef_'; type: { kind: 'INPUT_OBJECT'; name: 'MiniChef_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewarder'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewarder_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'rewarder_'; type: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; defaultValue: null }, { name: 'allocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'allocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'allocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'lastRewardTime_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'lastRewardTime_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'accSushiPerShare_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'accSushiPerShare_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'slpBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'slpBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'users_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: 'id' | 'miniChef' | 'miniChef__id' | 'miniChef__sushi' | 'miniChef__sushiPerSecond' | 'miniChef__totalAllocPoint' | 'miniChef__poolCount' | 'miniChef__timestamp' | 'miniChef__block' | 'pair' | 'rewarder' | 'rewarder__id' | 'rewarder__rewardToken' | 'rewarder__rewardPerSecond' | 'rewarder__totalAllocPoint' | 'rewarder__timestamp' | 'rewarder__block' | 'allocPoint' | 'lastRewardTime' | 'accSushiPerShare' | 'slpBalance' | 'users' | 'userCount' | 'timestamp' | 'block'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Rewarder': { kind: 'OBJECT'; name: 'Rewarder'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'rewardPerSecond': { name: 'rewardPerSecond'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'rewardToken': { name: 'rewardToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalAllocPoint': { name: 'totalAllocPoint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Rewarder_filter': { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardToken_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardToken_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardPerSecond_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardPerSecond_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalAllocPoint_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalAllocPoint_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Rewarder_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Rewarder_orderBy': { name: 'Rewarder_orderBy'; enumValues: 'id' | 'rewardToken' | 'rewardPerSecond' | 'totalAllocPoint' | 'timestamp' | 'block'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'miniChef': { name: 'miniChef'; type: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; } }; 'miniChefs': { name: 'miniChefs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MiniChef'; ofType: null; }; }; }; } }; 'nativeRewarderPool': { name: 'nativeRewarderPool'; type: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; } }; 'nativeRewarderPools': { name: 'nativeRewarderPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'NativeRewarderPool'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'rewarder': { name: 'rewarder'; type: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; } }; 'rewarders': { name: 'rewarders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Rewarder'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'rewardDebt': { name: 'rewardDebt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'address'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'address_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'address_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'rewardDebt_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'rewardDebt_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'address' | 'pool' | 'pool__id' | 'pool__pair' | 'pool__allocPoint' | 'pool__lastRewardTime' | 'pool__accSushiPerShare' | 'pool__slpBalance' | 'pool__userCount' | 'pool__timestamp' | 'pool__block' | 'amount' | 'rewardDebt' | 'sushiHarvested' | 'timestamp' | 'block'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts deleted file mode 100644 index 85c26e2b3b..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-cache.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query Bar($hourCnt: Int = 24, $dayCnt: Int = 7, $weekCnt: Int = 1000) {\n hourSnapshots(first: $hourCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n daySnapshots(first: $dayCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n weekSnapshots(first: $weekCnt, orderBy: date, orderDirection: desc) {\n id\n date\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": - TadaDocumentNode<{ weekSnapshots: unknown; daySnapshots: unknown; hourSnapshots: unknown; }, { weekCnt?: number; dayCnt?: number; hourCnt?: number; }, void>; - "\n query Bar($block: Block_height) {\n xsushi(id: \"xSushi\", block: $block) {\n id\n sushiXsushiRatio\n xSushiSushiRatio\n sushiSupply\n xSushiSupply\n apr1m\n apr3m\n apr6m\n apr12m\n }\n }\n": - TadaDocumentNode<{ xsushi: unknown; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts deleted file mode 100644 index f9a797a4c8..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/sushi-bar-env.d.ts +++ /dev/null @@ -1,64 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'sushi-bar'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bytes': unknown; - 'DaySnapshot': { kind: 'OBJECT'; name: 'DaySnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'DaySnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DaySnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'DaySnapshot_orderBy': { name: 'DaySnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'Fee': { kind: 'OBJECT'; name: 'Fee'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; } }; }; }; - 'FeeSender': { kind: 'OBJECT'; name: 'FeeSender'; fields: { 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeeSent': { name: 'totalFeeSent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'FeeSender_filter': { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalFeeSent_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeSent_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'fees_'; type: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'FeeSender_orderBy': { name: 'FeeSender_orderBy'; enumValues: 'id' | 'totalFeeSent' | 'fees' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; - 'Fee_filter': { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'sender_'; type: { kind: 'INPUT_OBJECT'; name: 'FeeSender_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Fee_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Fee_orderBy': { name: 'Fee_orderBy'; enumValues: 'id' | 'sender' | 'sender__id' | 'sender__totalFeeSent' | 'sender__createdAtBlock' | 'sender__createdAtTimestamp' | 'sender__modifiedAtBlock' | 'sender__modifiedAtTimestamp' | 'amount' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'HourSnapshot': { kind: 'OBJECT'; name: 'HourSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'HourSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'HourSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'HourSnapshot_orderBy': { name: 'HourSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'daySnapshot': { name: 'daySnapshot'; type: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; } }; 'daySnapshots': { name: 'daySnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DaySnapshot'; ofType: null; }; }; }; } }; 'fee': { name: 'fee'; type: { kind: 'OBJECT'; name: 'Fee'; ofType: null; } }; 'feeSender': { name: 'feeSender'; type: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; } }; 'feeSenders': { name: 'feeSenders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'FeeSender'; ofType: null; }; }; }; } }; 'fees': { name: 'fees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Fee'; ofType: null; }; }; }; } }; 'hourSnapshot': { name: 'hourSnapshot'; type: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; } }; 'hourSnapshots': { name: 'hourSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HourSnapshot'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; 'weekSnapshot': { name: 'weekSnapshot'; type: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; } }; 'weekSnapshots': { name: 'weekSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'WeekSnapshot'; ofType: null; }; }; }; } }; 'xsushi': { name: 'xsushi'; type: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; } }; 'xsushis': { name: 'xsushis'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'XSushi'; ofType: null; }; }; }; } }; }; }; - 'Timestamp': unknown; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'gasLimit': { name: 'gasLimit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; 'type': { name: 'type'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; } }; }; }; - 'TransactionType': { name: 'TransactionType'; enumValues: 'TRANSFER' | 'MINT' | 'BURN'; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'from_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'to_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'type'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_not'; type: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; defaultValue: null }, { name: 'type_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'type_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TransactionType'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasLimit_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasLimit_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'from' | 'from__id' | 'from__balance' | 'from__createdAtBlock' | 'from__createdAtTimestamp' | 'from__modifiedAtBlock' | 'from__modifiedAtTimestamp' | 'to' | 'to__id' | 'to__balance' | 'to__createdAtBlock' | 'to__createdAtTimestamp' | 'to__modifiedAtBlock' | 'to__modifiedAtTimestamp' | 'amount' | 'type' | 'gasUsed' | 'gasLimit' | 'gasPrice' | 'createdAtBlock' | 'createdAtTimestamp'; }; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtBlock': { name: 'createdAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'deposits': { name: 'deposits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'modifiedAtBlock': { name: 'modifiedAtBlock'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'modifiedAtTimestamp': { name: 'modifiedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'withdrawals': { name: 'withdrawals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'balance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'balance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawals_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'deposits_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtBlock_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtBlock_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'modifiedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'modifiedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'balance' | 'withdrawals' | 'deposits' | 'createdAtBlock' | 'createdAtTimestamp' | 'modifiedAtBlock' | 'modifiedAtTimestamp'; }; - 'WeekSnapshot': { kind: 'OBJECT'; name: 'WeekSnapshot'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'newFeeAmount': { name: 'newFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiHarvested': { name: 'newSushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newSushiStaked': { name: 'newSushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newTransactions': { name: 'newTransactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'newXSushiBurned': { name: 'newXSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'newXSushiMinted': { name: 'newXSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'WeekSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'newTransactions_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newTransactions_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newSushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newSushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'newXSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'newXSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WeekSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'WeekSnapshot_orderBy': { name: 'WeekSnapshot_orderBy'; enumValues: 'id' | 'date' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'newTransactions' | 'newSushiStaked' | 'newSushiHarvested' | 'newFeeAmount' | 'newXSushiBurned' | 'newXSushiMinted'; }; - 'XSushi': { kind: 'OBJECT'; name: 'XSushi'; fields: { 'apr12m': { name: 'apr12m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr1m': { name: 'apr1m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr3m': { name: 'apr3m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'apr6m': { name: 'apr6m'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'aprUpdatedAtTimestamp': { name: 'aprUpdatedAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'sushiHarvested': { name: 'sushiHarvested'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiStaked': { name: 'sushiStaked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiSupply': { name: 'sushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'sushiXsushiRatio': { name: 'sushiXsushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeeAmount': { name: 'totalFeeAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'transactionCount': { name: 'transactionCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'userCount': { name: 'userCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'xSushiBurned': { name: 'xSushiBurned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiMinted': { name: 'xSushiMinted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSupply': { name: 'xSushiSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'xSushiSushiRatio': { name: 'xSushiSushiRatio'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'XSushi_filter': { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'userCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'userCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'transactionCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transactionCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiStaked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiStaked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiHarvested_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiHarvested_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeeAmount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeeAmount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiBurned_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiBurned_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiMinted_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiMinted_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'xSushiSushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'xSushiSushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'sushiXsushiRatio_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sushiXsushiRatio_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr1m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr1m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr3m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr3m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr6m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr6m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'apr12m_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'apr12m_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'aprUpdatedAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'XSushi_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'XSushi_orderBy': { name: 'XSushi_orderBy'; enumValues: 'id' | 'userCount' | 'transactionCount' | 'sushiSupply' | 'xSushiSupply' | 'sushiStaked' | 'sushiHarvested' | 'totalFeeAmount' | 'xSushiBurned' | 'xSushiMinted' | 'xSushiSushiRatio' | 'sushiXsushiRatio' | 'apr1m' | 'apr3m' | 'apr6m' | 'apr12m' | 'aprUpdatedAtTimestamp'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts index d8b4db9abe..001281615f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts @@ -1,4 +1,5 @@ export * from './queries/burns' +export * from './queries/day-datas' export * from './queries/factory' export * from './queries/liquidity-positions' export * from './queries/mints' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts new file mode 100644 index 0000000000..4e5cc96f34 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts @@ -0,0 +1,42 @@ +import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' + +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { graphql } from '../graphql' + +export const SushiV2DayDatasQuery = graphql(` + query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) { + uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + date + dailyVolumeUSD + dailyVolumeUntracked + dailyVolumeETH + totalLiquidityUSD + txCount + } + } +`) + +export type GetSushiV2DayDatas = VariablesOf & + ChainIdVariable + +export async function getSushiV2DayDatas({ + chainId, + ...variables +}: GetSushiV2DayDatas) { + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV2DayDatasQuery, + variables, + }) + + return result.uniswapDayDatas +} + +export type SushiV2DayDatas = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts deleted file mode 100644 index 6d06f157bd..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-cache.d.ts +++ /dev/null @@ -1,28 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ burns: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "needsComplete" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Factories {\n factories: uniswapFactories(first: 1) {\n id\n totalLiquidityUSD\n untrackedVolumeUSD\n totalVolumeUSD\n poolCount: pairCount\n }\n }\n": - TadaDocumentNode<{ factories: { poolCount: number; totalVolumeUSD: string; untrackedVolumeUSD: string; totalLiquidityUSD: string; id: `0x${string}`; }[]; }, {}, void>; - "\n query LiquidityPositions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: LiquidityPosition_orderBy, $orderDirection: OrderDirection, $where: LiquidityPosition_filter) {\n liquidityPositions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n balance: liquidityTokenBalance\n pair {\n id\n }\n user {\n id\n }\n }\n }\n": - TadaDocumentNode<{ liquidityPositions: { user: { id: `0x${string}`; }; pair: { id: `0x${string}`; }; balance: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: any; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: any; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: any; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pair" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "user" | "liquidityTokenBalance" | "user__id" | "user__usdSwapped"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ mints: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: any; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: any; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "liquidity" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "feeTo" | "feeLiquidity" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n fragment PoolFields on Pair @_unmask {\n id\n token0 {\n name\n id\n decimals\n symbol\n }\n token1 {\n name\n id\n decimals\n symbol\n }\n createdAtBlockNumber\n createdAtTimestamp\n reserve0\n reserve1\n totalSupply\n reserveUSD\n reserveETH\n trackedReserveETH\n # token0Price\n # token1Price\n volumeUSD\n volumeToken0\n volumeToken1\n txCount\n }\n": - TadaDocumentNode<{ txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }, {}, { fragment: "PoolFields"; on: "Pair"; masked: false; }>; - "\n query Pool($id: ID!, $block: Block_height) {\n pool: pair(id: $id, block: $block) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pool: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; - "\n query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) {\n pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n ...PoolFields\n }\n }\n": - TadaDocumentNode<{ pools: { txCount: string; volumeToken1: string; volumeToken0: string; volumeUSD: string; trackedReserveETH: string; reserveETH: string; reserveUSD: string; totalSupply: string; reserve1: string; reserve0: string; createdAtTimestamp: string; createdAtBlockNumber: string; token1: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; token0: { symbol: string; decimals: string; id: `0x${string}`; name: string; }; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "burns" | "createdAtTimestamp" | "token0" | "token1" | "reserve0" | "reserve1" | "totalSupply" | "reserveETH" | "reserveUSD" | "trackedReserveETH" | "token0Price" | "token1Price" | "volumeToken0" | "volumeToken1" | "volumeUSD" | "untrackedVolumeUSD" | "txCount" | "createdAtBlockNumber" | "liquidityProviderCount" | "mints" | "swaps" | "liquidityPositions" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__tradeVolume" | "token0__tradeVolumeUSD" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__totalLiquidity" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__tradeVolume" | "token1__tradeVolumeUSD" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__totalLiquidity" | "token1__derivedETH" | "pairHourData" | "liquidityPositionSnapshots"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n amountUSD\n logIndex\n transaction {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }; logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: any; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "sender" | "amountUSD" | "logIndex" | "transaction" | "pair" | "to" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "pair__id" | "pair__reserve0" | "pair__reserve1" | "pair__totalSupply" | "pair__reserveETH" | "pair__reserveUSD" | "pair__trackedReserveETH" | "pair__token0Price" | "pair__token1Price" | "pair__volumeToken0" | "pair__volumeToken1" | "pair__volumeUSD" | "pair__untrackedVolumeUSD" | "pair__txCount" | "pair__createdAtTimestamp" | "pair__createdAtBlockNumber" | "pair__liquidityProviderCount" | "from" | "amount0In" | "amount1In" | "amount0Out" | "amount1Out"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Tokens($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Token_orderBy, $orderDirection: OrderDirection, $where: Token_filter) {\n tokens(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n name\n symbol\n decimals\n tradeVolumeUSD\n totalLiquidity\n }\n }\n": - TadaDocumentNode<{ tokens: { totalLiquidity: string; tradeVolumeUSD: string; decimals: string; symbol: string; name: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "symbol" | "name" | "id" | "totalSupply" | "untrackedVolumeUSD" | "txCount" | "decimals" | "tradeVolume" | "tradeVolumeUSD" | "totalLiquidity" | "derivedETH" | "tokenDayData" | "pairDayDataBase" | "pairDayDataQuote" | "pairBase" | "pairQuote"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n createdAtTimestamp: timestamp\n createdAtBlock: blockNumber\n mints {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n sender\n liquidity\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n to\n amount0In\n amount1In\n amount0Out\n amount1Out\n amountUSD\n logIndex\n }\n }\n }\n": - TadaDocumentNode<{ transactions: { swaps: { logIndex: string; amountUSD: string; amount1Out: string; amount0Out: string; amount1In: string; amount0In: string; to: `0x${string}`; sender: `0x${string}`; id: `0x${string}`; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; liquidity: string; sender: `0x${string}`; id: `0x${string}`; }[]; createdAtBlock: string; createdAtTimestamp: string; id: `0x${string}`; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1Out_not_in?: string[]; amount1Out_in?: string[]; amount1Out_lte?: string; amount1Out_gte?: string; amount1Out_lt?: string; amount1Out_gt?: string; amount1Out_not?: string; amount1Out?: string; amount0Out_not_in?: string[]; amount0Out_in?: string[]; amount0Out_lte?: string; amount0Out_gte?: string; amount0Out_lt?: string; amount0Out_gt?: string; amount0Out_not?: string; amount0Out?: string; amount1In_not_in?: string[]; amount1In_in?: string[]; amount1In_lte?: string; amount1In_gte?: string; amount1In_lt?: string; amount1In_gt?: string; amount1In_not?: string; amount1In?: string; amount0In_not_in?: string[]; amount0In_in?: string[]; amount0In_lte?: string; amount0In_gte?: string; amount0In_lt?: string; amount0In_gt?: string; amount0In_not?: string; amount0In?: string; from_not_contains?: `0x${string}`; from_contains?: `0x${string}`; from_not_in?: `0x${string}`[]; from_in?: `0x${string}`[]; from_lte?: `0x${string}`; from_gte?: `0x${string}`; from_lt?: `0x${string}`; from_gt?: `0x${string}`; from_not?: `0x${string}`; from?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pair_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositionSnapshots_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; liquidityTokenTotalSupply_not_in?: string[]; liquidityTokenTotalSupply_in?: string[]; liquidityTokenTotalSupply_lte?: string; liquidityTokenTotalSupply_gte?: string; liquidityTokenTotalSupply_lt?: string; liquidityTokenTotalSupply_gt?: string; liquidityTokenTotalSupply_not?: string; liquidityTokenTotalSupply?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1PriceUSD_not_in?: string[]; token1PriceUSD_in?: string[]; token1PriceUSD_lte?: string; token1PriceUSD_gte?: string; token1PriceUSD_lt?: string; token1PriceUSD_gt?: string; token1PriceUSD_not?: string; token1PriceUSD?: string; token0PriceUSD_not_in?: string[]; token0PriceUSD_in?: string[]; token0PriceUSD_lte?: string; token0PriceUSD_gte?: string; token0PriceUSD_lt?: string; token0PriceUSD_gt?: string; token0PriceUSD_not?: string; token0PriceUSD?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; usdSwapped_not_in?: string[]; usdSwapped_in?: string[]; usdSwapped_lte?: string; usdSwapped_gte?: string; usdSwapped_lt?: string; usdSwapped_gt?: string; usdSwapped_not?: string; usdSwapped?: string; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; block_not_in?: number[]; block_in?: number[]; block_lte?: number; block_gte?: number; block_lt?: number; block_gt?: number; block_not?: number; block?: number; timestamp_not_in?: number[]; timestamp_in?: number[]; timestamp_lte?: number; timestamp_gte?: number; timestamp_lt?: number; timestamp_gt?: number; timestamp_not?: number; timestamp?: number; liquidityPosition_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPosition_not_ends_with_nocase?: string; liquidityPosition_not_ends_with?: string; liquidityPosition_ends_with_nocase?: string; liquidityPosition_ends_with?: string; liquidityPosition_not_starts_with_nocase?: string; liquidityPosition_not_starts_with?: string; liquidityPosition_starts_with_nocase?: string; liquidityPosition_starts_with?: string; liquidityPosition_not_contains_nocase?: string; liquidityPosition_not_contains?: string; liquidityPosition_contains_nocase?: string; liquidityPosition_contains?: string; liquidityPosition_not_in?: string[]; liquidityPosition_in?: string[]; liquidityPosition_lte?: string; liquidityPosition_gte?: string; liquidityPosition_lt?: string; liquidityPosition_gt?: string; liquidityPosition_not?: string; liquidityPosition?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityPositions_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; liquidityTokenBalance_not_in?: string[]; liquidityTokenBalance_in?: string[]; liquidityTokenBalance_lte?: string; liquidityTokenBalance_gte?: string; liquidityTokenBalance_lt?: string; liquidityTokenBalance_gt?: string; liquidityTokenBalance_not?: string; liquidityTokenBalance?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; user_?: any; user_not_ends_with_nocase?: string; user_not_ends_with?: string; user_ends_with_nocase?: string; user_ends_with?: string; user_not_starts_with_nocase?: string; user_not_starts_with?: string; user_starts_with_nocase?: string; user_starts_with?: string; user_not_contains_nocase?: string; user_not_contains?: string; user_contains_nocase?: string; user_contains?: string; user_not_in?: string[]; user_in?: string[]; user_lte?: string; user_gte?: string; user_lt?: string; user_gt?: string; user_not?: string; user?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; hourlyTxns_not_in?: string[]; hourlyTxns_in?: string[]; hourlyTxns_lte?: string; hourlyTxns_gte?: string; hourlyTxns_lt?: string; hourlyTxns_gt?: string; hourlyTxns_not?: string; hourlyTxns?: string; hourlyVolumeUSD_not_in?: string[]; hourlyVolumeUSD_in?: string[]; hourlyVolumeUSD_lte?: string; hourlyVolumeUSD_gte?: string; hourlyVolumeUSD_lt?: string; hourlyVolumeUSD_gt?: string; hourlyVolumeUSD_not?: string; hourlyVolumeUSD?: string; hourlyVolumeToken1_not_in?: string[]; hourlyVolumeToken1_in?: string[]; hourlyVolumeToken1_lte?: string; hourlyVolumeToken1_gte?: string; hourlyVolumeToken1_lt?: string; hourlyVolumeToken1_gt?: string; hourlyVolumeToken1_not?: string; hourlyVolumeToken1?: string; hourlyVolumeToken0_not_in?: string[]; hourlyVolumeToken0_in?: string[]; hourlyVolumeToken0_lte?: string; hourlyVolumeToken0_gte?: string; hourlyVolumeToken0_lt?: string; hourlyVolumeToken0_gt?: string; hourlyVolumeToken0_not?: string; hourlyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; hourStartUnix_not_in?: number[]; hourStartUnix_in?: number[]; hourStartUnix_lte?: number; hourStartUnix_gte?: number; hourStartUnix_lt?: number; hourStartUnix_gt?: number; hourStartUnix_not?: number; hourStartUnix?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; trackedReserveETH_not_in?: string[]; trackedReserveETH_in?: string[]; trackedReserveETH_lte?: string; trackedReserveETH_gte?: string; trackedReserveETH_lt?: string; trackedReserveETH_gt?: string; trackedReserveETH_not?: string; trackedReserveETH?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; reserveETH_not_in?: string[]; reserveETH_in?: string[]; reserveETH_lte?: string; reserveETH_gte?: string; reserveETH_lt?: string; reserveETH_gt?: string; reserveETH_not?: string; reserveETH?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; pairQuote_?: any; pairBase_?: any; pairDayDataQuote_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pairDayDataBase_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeToken1_not_in?: string[]; dailyVolumeToken1_in?: string[]; dailyVolumeToken1_lte?: string; dailyVolumeToken1_gte?: string; dailyVolumeToken1_lt?: string; dailyVolumeToken1_gt?: string; dailyVolumeToken1_not?: string; dailyVolumeToken1?: string; dailyVolumeToken0_not_in?: string[]; dailyVolumeToken0_in?: string[]; dailyVolumeToken0_lte?: string; dailyVolumeToken0_gte?: string; dailyVolumeToken0_lt?: string; dailyVolumeToken0_gt?: string; dailyVolumeToken0_not?: string; dailyVolumeToken0?: string; reserveUSD_not_in?: string[]; reserveUSD_in?: string[]; reserveUSD_lte?: string; reserveUSD_gte?: string; reserveUSD_lt?: string; reserveUSD_gt?: string; reserveUSD_not?: string; reserveUSD?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; reserve1_not_in?: string[]; reserve1_in?: string[]; reserve1_lte?: string; reserve1_gte?: string; reserve1_lt?: string; reserve1_gt?: string; reserve1_not?: string; reserve1?: string; reserve0_not_in?: string[]; reserve0_in?: string[]; reserve0_lte?: string; reserve0_gte?: string; reserve0_lt?: string; reserve0_gt?: string; reserve0_not?: string; reserve0?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pairAddress_not_contains?: `0x${string}`; pairAddress_contains?: `0x${string}`; pairAddress_not_in?: `0x${string}`[]; pairAddress_in?: `0x${string}`[]; pairAddress_lte?: `0x${string}`; pairAddress_gte?: `0x${string}`; pairAddress_lt?: `0x${string}`; pairAddress_gt?: `0x${string}`; pairAddress_not?: `0x${string}`; pairAddress?: `0x${string}`; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalLiquidityUSD_not_in?: string[]; totalLiquidityUSD_in?: string[]; totalLiquidityUSD_lte?: string; totalLiquidityUSD_gte?: string; totalLiquidityUSD_lt?: string; totalLiquidityUSD_gt?: string; totalLiquidityUSD_not?: string; totalLiquidityUSD?: string; totalLiquidityETH_not_in?: string[]; totalLiquidityETH_in?: string[]; totalLiquidityETH_lte?: string; totalLiquidityETH_gte?: string; totalLiquidityETH_lt?: string; totalLiquidityETH_gt?: string; totalLiquidityETH_not?: string; totalLiquidityETH?: string; totalLiquidityToken_not_in?: string[]; totalLiquidityToken_in?: string[]; totalLiquidityToken_lte?: string; totalLiquidityToken_gte?: string; totalLiquidityToken_lt?: string; totalLiquidityToken_gt?: string; totalLiquidityToken_not?: string; totalLiquidityToken?: string; dailyTxns_not_in?: string[]; dailyTxns_in?: string[]; dailyTxns_lte?: string; dailyTxns_gte?: string; dailyTxns_lt?: string; dailyTxns_gt?: string; dailyTxns_not?: string; dailyTxns?: string; dailyVolumeUSD_not_in?: string[]; dailyVolumeUSD_in?: string[]; dailyVolumeUSD_lte?: string; dailyVolumeUSD_gte?: string; dailyVolumeUSD_lt?: string; dailyVolumeUSD_gt?: string; dailyVolumeUSD_not?: string; dailyVolumeUSD?: string; dailyVolumeETH_not_in?: string[]; dailyVolumeETH_in?: string[]; dailyVolumeETH_lte?: string; dailyVolumeETH_gte?: string; dailyVolumeETH_lt?: string; dailyVolumeETH_gt?: string; dailyVolumeETH_not?: string; dailyVolumeETH?: string; dailyVolumeToken_not_in?: string[]; dailyVolumeToken_in?: string[]; dailyVolumeToken_lte?: string; dailyVolumeToken_gte?: string; dailyVolumeToken_lt?: string; dailyVolumeToken_gt?: string; dailyVolumeToken_not?: string; dailyVolumeToken?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalLiquidity_not_in?: string[]; totalLiquidity_in?: string[]; totalLiquidity_lte?: string; totalLiquidity_gte?: string; totalLiquidity_lt?: string; totalLiquidity_gt?: string; totalLiquidity_not?: string; totalLiquidity?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; tradeVolumeUSD_not_in?: string[]; tradeVolumeUSD_in?: string[]; tradeVolumeUSD_lte?: string; tradeVolumeUSD_gte?: string; tradeVolumeUSD_lt?: string; tradeVolumeUSD_gt?: string; tradeVolumeUSD_not?: string; tradeVolumeUSD?: string; tradeVolume_not_in?: string[]; tradeVolume_in?: string[]; tradeVolume_lte?: string; tradeVolume_gte?: string; tradeVolume_lt?: string; tradeVolume_gt?: string; tradeVolume_not?: string; tradeVolume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; swaps_not_contains_nocase?: string[]; swaps_not_contains?: string[]; swaps_contains_nocase?: string[]; swaps_contains?: string[]; swaps_not?: string[]; swaps?: string[]; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; needsComplete_not_in?: boolean[]; needsComplete_in?: boolean[]; needsComplete_not?: boolean; needsComplete?: boolean; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; burns_not_contains_nocase?: string[]; burns_not_contains?: string[]; burns_contains_nocase?: string[]; burns_contains?: string[]; burns_not?: string[]; burns?: string[]; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeLiquidity_not_in?: string[]; feeLiquidity_in?: string[]; feeLiquidity_lte?: string; feeLiquidity_gte?: string; feeLiquidity_lt?: string; feeLiquidity_gt?: string; feeLiquidity_not?: string; feeLiquidity?: string; feeTo_not_contains?: `0x${string}`; feeTo_contains?: `0x${string}`; feeTo_not_in?: `0x${string}`[]; feeTo_in?: `0x${string}`[]; feeTo_lte?: `0x${string}`; feeTo_gte?: `0x${string}`; feeTo_lt?: `0x${string}`; feeTo_gt?: `0x${string}`; feeTo_not?: `0x${string}`; feeTo?: `0x${string}`; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; to_not_contains?: `0x${string}`; to_contains?: `0x${string}`; to_not_in?: `0x${string}`[]; to_in?: `0x${string}`[]; to_lte?: `0x${string}`; to_gte?: `0x${string}`; to_lt?: `0x${string}`; to_gt?: `0x${string}`; to_not?: `0x${string}`; to?: `0x${string}`; pair_?: any; pair_not_ends_with_nocase?: string; pair_not_ends_with?: string; pair_ends_with_nocase?: string; pair_ends_with?: string; pair_not_starts_with_nocase?: string; pair_not_starts_with?: string; pair_starts_with_nocase?: string; pair_starts_with?: string; pair_not_contains_nocase?: string; pair_not_contains?: string; pair_contains_nocase?: string; pair_contains?: string; pair_not_in?: string[]; pair_in?: string[]; pair_lte?: string; pair_gte?: string; pair_lt?: string; pair_gt?: string; pair_not?: string; pair?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; mints_not_contains_nocase?: string[]; mints_not_contains?: string[]; mints_contains_nocase?: string[]; mints_contains?: string[]; mints_not?: string[]; mints?: string[]; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_contains?: `0x${string}`; id_contains?: `0x${string}`; id_not_in?: `0x${string}`[]; id_in?: `0x${string}`[]; id_lte?: `0x${string}`; id_gte?: `0x${string}`; id_lt?: `0x${string}`; id_gt?: `0x${string}`; id_not?: `0x${string}`; id?: `0x${string}`; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "mints" | "swaps" | "blockNumber"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts deleted file mode 100644 index dc553450c2..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/sushi-v2-env.d.ts +++ /dev/null @@ -1,84 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'sushi-v2'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPrice': { name: 'ethPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPrice'; }; - 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'needsComplete': { name: 'needsComplete'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'needsComplete_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'needsComplete_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'to' | 'logIndex' | 'amountUSD' | 'needsComplete' | 'feeTo' | 'feeLiquidity'; }; - 'Bytes': unknown; - 'ID': unknown; - 'Int': unknown; - 'Int8': unknown; - 'LiquidityPosition': { kind: 'OBJECT'; name: 'LiquidityPosition'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot': { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; } }; 'liquidityTokenBalance': { name: 'liquidityTokenBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidityTokenTotalSupply': { name: 'liquidityTokenTotalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'token0PriceUSD': { name: 'token0PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1PriceUSD': { name: 'token1PriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; } }; }; }; - 'LiquidityPositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityPosition_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'liquidityPosition_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'block_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'block_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1PriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1PriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenTotalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPositionSnapshot_orderBy': { name: 'LiquidityPositionSnapshot_orderBy'; enumValues: 'id' | 'liquidityPosition' | 'liquidityPosition__id' | 'liquidityPosition__liquidityTokenBalance' | 'timestamp' | 'block' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'token0PriceUSD' | 'token1PriceUSD' | 'reserve0' | 'reserve1' | 'reserveUSD' | 'liquidityTokenTotalSupply' | 'liquidityTokenBalance'; }; - 'LiquidityPosition_filter': { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'user_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'user_'; type: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidityTokenBalance_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityTokenBalance_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'LiquidityPosition_orderBy': { name: 'LiquidityPosition_orderBy'; enumValues: 'id' | 'user' | 'user__id' | 'user__usdSwapped' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'liquidityTokenBalance'; }; - 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amount1': { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeLiquidity': { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'feeTo': { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTo_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeTo_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feeLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'to' | 'liquidity' | 'sender' | 'amount0' | 'amount1' | 'logIndex' | 'amountUSD' | 'feeTo' | 'feeLiquidity'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pair': { kind: 'OBJECT'; name: 'Pair'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveETH': { name: 'reserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'trackedReserveETH': { name: 'trackedReserveETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PairDayData': { kind: 'OBJECT'; name: 'PairDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeToken0': { name: 'dailyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken1': { name: 'dailyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairAddress': { name: 'pairAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; - 'PairDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairAddress_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairAddress_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairDayData_orderBy': { name: 'PairDayData_orderBy'; enumValues: 'id' | 'date' | 'pairAddress' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'dailyVolumeToken0' | 'dailyVolumeToken1' | 'dailyVolumeUSD' | 'dailyTxns'; }; - 'PairHourData': { kind: 'OBJECT'; name: 'PairHourData'; fields: { 'hourStartUnix': { name: 'hourStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'hourlyTxns': { name: 'hourlyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'hourlyVolumeToken0': { name: 'hourlyVolumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeToken1': { name: 'hourlyVolumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'hourlyVolumeUSD': { name: 'hourlyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'reserve0': { name: 'reserve0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserve1': { name: 'reserve1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'reserveUSD': { name: 'reserveUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; }; }; - 'PairHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'hourStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'hourlyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'hourlyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'hourlyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PairHourData_orderBy': { name: 'PairHourData_orderBy'; enumValues: 'id' | 'hourStartUnix' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveUSD' | 'hourlyVolumeToken0' | 'hourlyVolumeToken1' | 'hourlyVolumeUSD' | 'hourlyTxns'; }; - 'Pair_filter': { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'reserve0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserve1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserve1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'reserveUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'reserveUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'trackedReserveETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'trackedReserveETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PairHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositionSnapshots_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPositionSnapshot_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pair_orderBy': { name: 'Pair_orderBy'; enumValues: 'id' | 'token0' | 'token0__id' | 'token0__symbol' | 'token0__name' | 'token0__decimals' | 'token0__totalSupply' | 'token0__tradeVolume' | 'token0__tradeVolumeUSD' | 'token0__untrackedVolumeUSD' | 'token0__txCount' | 'token0__totalLiquidity' | 'token0__derivedETH' | 'token1' | 'token1__id' | 'token1__symbol' | 'token1__name' | 'token1__decimals' | 'token1__totalSupply' | 'token1__tradeVolume' | 'token1__tradeVolumeUSD' | 'token1__untrackedVolumeUSD' | 'token1__txCount' | 'token1__totalLiquidity' | 'token1__derivedETH' | 'reserve0' | 'reserve1' | 'totalSupply' | 'reserveETH' | 'reserveUSD' | 'trackedReserveETH' | 'token0Price' | 'token1Price' | 'volumeToken0' | 'volumeToken1' | 'volumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'createdAtTimestamp' | 'createdAtBlockNumber' | 'liquidityProviderCount' | 'pairHourData' | 'liquidityPositions' | 'liquidityPositionSnapshots' | 'mints' | 'burns' | 'swaps'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'liquidityPosition': { name: 'liquidityPosition'; type: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; } }; 'liquidityPositionSnapshot': { name: 'liquidityPositionSnapshot'; type: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; } }; 'liquidityPositionSnapshots': { name: 'liquidityPositionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPositionSnapshot'; ofType: null; }; }; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pair': { name: 'pair'; type: { kind: 'OBJECT'; name: 'Pair'; ofType: null; } }; 'pairDayData': { name: 'pairDayData'; type: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; } }; 'pairDayDatas': { name: 'pairDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairHourData': { name: 'pairHourData'; type: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; } }; 'pairHourDatas': { name: 'pairHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairHourData'; ofType: null; }; }; }; } }; 'pairs': { name: 'pairs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; 'uniswapFactories': { name: 'uniswapFactories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; }; }; }; } }; 'uniswapFactory': { name: 'uniswapFactory'; type: { kind: 'OBJECT'; name: 'UniswapFactory'; ofType: null; } }; 'user': { name: 'user'; type: { kind: 'OBJECT'; name: 'User'; ofType: null; } }; 'users': { name: 'users'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'User'; ofType: null; }; }; }; } }; }; }; - 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0In': { name: 'amount0In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Out': { name: 'amount0Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1In': { name: 'amount1In'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Out': { name: 'amount1Out'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pair': { name: 'pair'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pair_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pair_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'from_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'from_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1In_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1In_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Out_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Out_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'to'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'to_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'to_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: 'id' | 'transaction' | 'transaction__id' | 'transaction__blockNumber' | 'transaction__timestamp' | 'timestamp' | 'pair' | 'pair__id' | 'pair__reserve0' | 'pair__reserve1' | 'pair__totalSupply' | 'pair__reserveETH' | 'pair__reserveUSD' | 'pair__trackedReserveETH' | 'pair__token0Price' | 'pair__token1Price' | 'pair__volumeToken0' | 'pair__volumeToken1' | 'pair__volumeUSD' | 'pair__untrackedVolumeUSD' | 'pair__txCount' | 'pair__createdAtTimestamp' | 'pair__createdAtBlockNumber' | 'pair__liquidityProviderCount' | 'sender' | 'from' | 'amount0In' | 'amount1In' | 'amount0Out' | 'amount1Out' | 'to' | 'logIndex' | 'amountUSD'; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'pairBase': { name: 'pairBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'pairDayDataBase': { name: 'pairDayDataBase'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairDayDataQuote': { name: 'pairDayDataQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PairDayData'; ofType: null; }; }; }; } }; 'pairQuote': { name: 'pairQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pair'; ofType: null; }; }; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalLiquidity': { name: 'totalLiquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tradeVolume': { name: 'tradeVolume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tradeVolumeUSD': { name: 'tradeVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'dailyTxns': { name: 'dailyTxns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeToken': { name: 'dailyVolumeToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityToken': { name: 'totalLiquidityToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'dailyTxns_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyTxns_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityToken_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityToken_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: 'id' | 'date' | 'token' | 'token__id' | 'token__symbol' | 'token__name' | 'token__decimals' | 'token__totalSupply' | 'token__tradeVolume' | 'token__tradeVolumeUSD' | 'token__untrackedVolumeUSD' | 'token__txCount' | 'token__totalLiquidity' | 'token__derivedETH' | 'dailyVolumeToken' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyTxns' | 'totalLiquidityToken' | 'totalLiquidityETH' | 'totalLiquidityUSD' | 'priceUSD'; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tradeVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tradeVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataBase_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairDayDataQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'PairDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'pairBase_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: 'pairQuote_'; type: { kind: 'INPUT_OBJECT'; name: 'Pair_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'tradeVolume' | 'tradeVolumeUSD' | 'untrackedVolumeUSD' | 'txCount' | 'totalLiquidity' | 'derivedETH' | 'tokenDayData' | 'pairDayDataBase' | 'pairDayDataQuote' | 'pairBase' | 'pairQuote'; }; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'mints' | 'burns' | 'swaps'; }; - 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'dailyVolumeETH': { name: 'dailyVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUSD': { name: 'dailyVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'dailyVolumeUntracked': { name: 'dailyVolumeUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'dailyVolumeUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'dailyVolumeUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'dailyVolumeETH' | 'dailyVolumeUSD' | 'dailyVolumeUntracked' | 'totalVolumeETH' | 'totalLiquidityETH' | 'totalVolumeUSD' | 'totalLiquidityUSD' | 'txCount'; }; - 'UniswapFactory': { kind: 'OBJECT'; name: 'UniswapFactory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pairCount': { name: 'pairCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'totalLiquidityETH': { name: 'totalLiquidityETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalLiquidityUSD': { name: 'totalLiquidityUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'UniswapFactory_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pairCount'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'pairCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pairCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalLiquidityETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalLiquidityETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapFactory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapFactory_orderBy': { name: 'UniswapFactory_orderBy'; enumValues: 'id' | 'pairCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'untrackedVolumeUSD' | 'totalLiquidityUSD' | 'totalLiquidityETH' | 'txCount'; }; - 'User': { kind: 'OBJECT'; name: 'User'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'liquidityPositions': { name: 'liquidityPositions'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'LiquidityPosition'; ofType: null; }; }; } }; 'usdSwapped': { name: 'usdSwapped'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'User_filter': { kind: 'INPUT_OBJECT'; name: 'User_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'id_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'liquidityPositions_'; type: { kind: 'INPUT_OBJECT'; name: 'LiquidityPosition_filter'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'usdSwapped_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'usdSwapped_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'User_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'User_orderBy': { name: 'User_orderBy'; enumValues: 'id' | 'liquidityPositions' | 'usdSwapped'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts new file mode 100644 index 0000000000..9f14240e24 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts @@ -0,0 +1,45 @@ +import type { ResultOf } from 'gql.tada' +import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v2/fragments/pool-fields' +import { withoutScientificNotation } from 'sushi/format' + +type RequiredBase = Pick< + ResultOf, + | 'token0' + | 'token1' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'reserveETH' + | 'reserveUSD' + | 'volumeUSD' +> + +export function transformPoolV2ToV3(pool: T) { + return { + ...pool, + swapFee: 30, + twapEnabled: true, + reserve0: withoutScientificNotation( + (Number(pool.reserve0) * 10 ** Number(pool.token0.decimals)).toFixed(), + )! + .toString() + .split('.')[0], + reserve1: withoutScientificNotation( + (Number(pool.reserve1) * 10 ** Number(pool.token1.decimals)).toFixed(), + )! + .toString() + .split('.')[0], + name: `${pool.token0.symbol}-${pool.token1.symbol}`, + source: 'SUSHISWAP_V2', + liquidity: withoutScientificNotation( + (Number(pool.totalSupply) * 10 ** 18).toFixed(), + )! + .toString() + .split('.')[0], + liquidityUSD: pool.reserveUSD, + liquidityNative: pool.reserveETH, + apr: 0, + aprUpdatedAtTimestamp: 0, + feesUSD: Number(pool.volumeUSD) * 0.003, + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index 4256b1d8f6..c9aa4cc021 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -11,12 +11,12 @@ export const SushiV3DayDatasQuery = graphql(` uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id date - volumeETH volumeUSD volumeUSDUntracked + volumeETH + tvlUSD feesUSD txCount - tvlUSD } } `) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index 8c4a08adf5..cac6739697 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -59,8 +59,8 @@ export async function getSushiV3PoolsByTokenPair({ const variables: VariablesOf = { where: { - token0: tokens[0], - token1: tokens[1], + token0: tokens[0].toLowerCase(), + token1: tokens[1].toLowerCase(), }, } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts deleted file mode 100644 index a548c5a86d..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-cache.d.ts +++ /dev/null @@ -1,26 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ -import type { TadaDocumentNode, $tada } from 'gql.tada'; - -declare module 'gql.tada' { - interface setupCache { - "\n query Burns($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Burn_orderBy, $orderDirection: OrderDirection, $where: Burn_filter) {\n burns(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ burns: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: any; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Collects($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Collect_orderBy, $orderDirection: OrderDirection, $where: Collect_filter) {\n collects(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ collects: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "owner" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) {\n uniswapDayDatas(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n date\n volumeETH\n volumeUSD\n volumeUSDUntracked\n feesUSD\n txCount\n tvlUSD\n }\n }\n": - TadaDocumentNode<{ uniswapDayDatas: { tvlUSD: string; txCount: string; feesUSD: string; volumeUSDUntracked: string; volumeUSD: string; volumeETH: string; date: number; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSDUntracked_not_in?: string[]; volumeUSDUntracked_in?: string[]; volumeUSDUntracked_lte?: string; volumeUSDUntracked_gte?: string; volumeUSDUntracked_lt?: string; volumeUSDUntracked_gt?: string; volumeUSDUntracked_not?: string; volumeUSDUntracked?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeETH_not_in?: string[]; volumeETH_in?: string[]; volumeETH_lte?: string; volumeETH_gte?: string; volumeETH_lt?: string; volumeETH_gt?: string; volumeETH_not?: string; volumeETH?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "volumeUSD" | "txCount" | "feesUSD" | "date" | "tvlUSD" | "volumeETH" | "volumeUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Factories {\n factories(first: 1) {\n id\n totalValueLockedUSD\n totalVolumeUSD\n poolCount\n }\n }\n": - TadaDocumentNode<{ factories: { poolCount: string; totalVolumeUSD: string; totalValueLockedUSD: string; id: string; }[]; }, {}, void>; - "\n query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) {\n mints(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ mints: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: any; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "amount" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "owner" | "origin" | "tickLower" | "tickUpper" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Pool($id: ID!, $block: Block_height) {\n pool(id: $id, block: $block) {\n id\n token0 {\n id\n symbol\n name\n decimals\n }\n token1 {\n id\n symbol\n name\n decimals\n }\n feeTier\n liquidity\n volumeToken0\n volumeToken1\n volumeUSD\n feesUSD\n txCount\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n\n createdAtTimestamp\n createdAtBlockNumber\n\n poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) {\n id\n periodStartUnix\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n\n poolDayData(first: 730, orderBy: date, orderDirection: desc) {\n id\n date\n tvlUSD\n volumeUSD\n feesUSD\n txCount\n }\n }\n }\n": - TadaDocumentNode<{ pool: { poolDayData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; date: number; id: string; }[]; poolHourData: { txCount: string; feesUSD: string; volumeUSD: string; tvlUSD: string; periodStartUnix: number; id: string; }[]; createdAtBlockNumber: string; createdAtTimestamp: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; txCount: string; feesUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; liquidity: string; feeTier: string; token1: { decimals: string; name: string; symbol: string; id: string; }; token0: { decimals: string; name: string; symbol: string; id: string; }; id: string; }; }, { block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; id: string; }, void>; - "\n query PoolsByTokenPair($where: Pool_filter!) {\n pools(first: 1000, where: $where) {\n id\n feeTier\n liquidity\n sqrtPrice\n feeGrowthGlobal0X128\n feeGrowthGlobal1X128\n token0Price\n token1Price\n tick\n observationIndex\n volumeToken0\n volumeToken1\n volumeUSD\n untrackedVolumeUSD\n feesUSD\n collectedFeesToken0\n collectedFeesToken1\n collectedFeesUSD\n totalValueLockedToken0\n totalValueLockedToken1\n totalValueLockedETH\n totalValueLockedUSD\n totalValueLockedUSDUntracked\n liquidityProviderCount\n }\n }\n": - TadaDocumentNode<{ pools: { liquidityProviderCount: string; totalValueLockedUSDUntracked: string; totalValueLockedUSD: string; totalValueLockedETH: string; totalValueLockedToken1: string; totalValueLockedToken0: string; collectedFeesUSD: string; collectedFeesToken1: string; collectedFeesToken0: string; feesUSD: string; untrackedVolumeUSD: string; volumeUSD: string; volumeToken1: string; volumeToken0: string; observationIndex: string; tick: string; token1Price: string; token0Price: string; feeGrowthGlobal1X128: string; feeGrowthGlobal0X128: string; sqrtPrice: string; liquidity: string; feeTier: string; id: string; }[]; }, { where: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; }, void>; - "\n query Swaps($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Swap_orderBy, $orderDirection: OrderDirection, $where: Swap_filter) {\n swaps(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n transaction {\n id\n timestamp\n blockNumber\n }\n }\n }\n": - TadaDocumentNode<{ swaps: { transaction: { blockNumber: string; timestamp: string; id: string; }; logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: any; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: any; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: any; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: any; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "pool" | "timestamp" | "pool__id" | "sender" | "amount0" | "amount1" | "amountUSD" | "logIndex" | "transaction" | "transaction__id" | "transaction__blockNumber" | "transaction__timestamp" | "token0" | "token1" | "token0__id" | "token0__symbol" | "token0__name" | "token0__decimals" | "token0__totalSupply" | "token0__untrackedVolumeUSD" | "token0__txCount" | "token0__derivedETH" | "token1__id" | "token1__symbol" | "token1__name" | "token1__decimals" | "token1__totalSupply" | "token1__untrackedVolumeUSD" | "token1__txCount" | "token1__derivedETH" | "origin" | "transaction__gasUsed" | "transaction__gasPrice" | "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__volume" | "token0__volumeUSD" | "token0__feesUSD" | "token0__poolCount" | "token0__totalValueLocked" | "token0__totalValueLockedUSD" | "token0__totalValueLockedUSDUntracked" | "token1__volume" | "token1__volumeUSD" | "token1__feesUSD" | "token1__poolCount" | "token1__totalValueLocked" | "token1__totalValueLockedUSD" | "token1__totalValueLockedUSDUntracked" | "tick" | "recipient" | "sqrtPriceX96"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - "\n query Transactions($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Transaction_orderBy, $orderDirection: OrderDirection, $where: Transaction_filter) {\n transactions(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) {\n id\n timestamp\n blockNumber\n mints {\n id\n owner\n sender\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n burns {\n id\n owner\n origin\n amount\n amount0\n amount1\n amountUSD\n logIndex\n }\n swaps {\n id\n sender\n recipient\n origin\n amount0\n amount1\n amountUSD\n logIndex\n }\n collects {\n id\n owner\n amount0\n amount1\n amountUSD\n logIndex\n }\n }\n }\n": - TadaDocumentNode<{ transactions: { collects: { logIndex: string; amountUSD: string; amount1: string; amount0: string; owner: `0x${string}`; id: string; }[]; swaps: { logIndex: string; amountUSD: string; amount1: string; amount0: string; origin: `0x${string}`; recipient: `0x${string}`; sender: `0x${string}`; id: string; }[]; burns: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; owner: `0x${string}`; id: string; }[]; mints: { logIndex: string; amountUSD: string; amount1: string; amount0: string; amount: string; origin: `0x${string}`; sender: `0x${string}`; owner: `0x${string}`; id: string; }[]; blockNumber: string; timestamp: string; id: string; }[]; }, { where?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; collects_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; flashed_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; amount1Paid_not_in?: string[]; amount1Paid_in?: string[]; amount1Paid_lte?: string; amount1Paid_gte?: string; amount1Paid_lt?: string; amount1Paid_gt?: string; amount1Paid_not?: string; amount1Paid?: string; amount0Paid_not_in?: string[]; amount0Paid_in?: string[]; amount0Paid_lte?: string; amount0Paid_gte?: string; amount0Paid_lt?: string; amount0Paid_gt?: string; amount0Paid_not?: string; amount0Paid?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; pool_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; ticks_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; feeGrowthOutside1X128_not_in?: string[]; feeGrowthOutside1X128_in?: string[]; feeGrowthOutside1X128_lte?: string; feeGrowthOutside1X128_gte?: string; feeGrowthOutside1X128_lt?: string; feeGrowthOutside1X128_gt?: string; feeGrowthOutside1X128_not?: string; feeGrowthOutside1X128?: string; feeGrowthOutside0X128_not_in?: string[]; feeGrowthOutside0X128_in?: string[]; feeGrowthOutside0X128_lte?: string; feeGrowthOutside0X128_gte?: string; feeGrowthOutside0X128_lt?: string; feeGrowthOutside0X128_gt?: string; feeGrowthOutside0X128_not?: string; feeGrowthOutside0X128?: string; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; price1_not_in?: string[]; price1_in?: string[]; price1_lte?: string; price1_gte?: string; price1_lt?: string; price1_gt?: string; price1_not?: string; price1?: string; price0_not_in?: string[]; price0_in?: string[]; price0_lte?: string; price0_gte?: string; price0_lt?: string; price0_gt?: string; price0_not?: string; price0?: string; liquidityNet_not_in?: string[]; liquidityNet_in?: string[]; liquidityNet_lte?: string; liquidityNet_gte?: string; liquidityNet_lt?: string; liquidityNet_gt?: string; liquidityNet_not?: string; liquidityNet?: string; liquidityGross_not_in?: string[]; liquidityGross_in?: string[]; liquidityGross_lte?: string; liquidityGross_gte?: string; liquidityGross_lt?: string; liquidityGross_gt?: string; liquidityGross_not?: string; liquidityGross?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; tickIdx_not_in?: string[]; tickIdx_in?: string[]; tickIdx_lte?: string; tickIdx_gte?: string; tickIdx_lt?: string; tickIdx_gt?: string; tickIdx_not?: string; tickIdx?: string; poolAddress_not_ends_with_nocase?: string; poolAddress_not_ends_with?: string; poolAddress_ends_with_nocase?: string; poolAddress_ends_with?: string; poolAddress_not_starts_with_nocase?: string; poolAddress_not_starts_with?: string; poolAddress_starts_with_nocase?: string; poolAddress_starts_with?: string; poolAddress_not_contains_nocase?: string; poolAddress_not_contains?: string; poolAddress_contains_nocase?: string; poolAddress_contains?: string; poolAddress_not_in?: string[]; poolAddress_in?: string[]; poolAddress_lte?: string; poolAddress_gte?: string; poolAddress_lt?: string; poolAddress_gt?: string; poolAddress_not?: string; poolAddress?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; collects_?: any; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; poolHourData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; tvlUSD_not_in?: string[]; tvlUSD_in?: string[]; tvlUSD_lte?: string; tvlUSD_gte?: string; tvlUSD_lt?: string; tvlUSD_gt?: string; tvlUSD_not?: string; tvlUSD?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; periodStartUnix_not_in?: number[]; periodStartUnix_in?: number[]; periodStartUnix_lte?: number; periodStartUnix_gte?: number; periodStartUnix_lt?: number; periodStartUnix_gt?: number; periodStartUnix_not?: number; periodStartUnix?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; liquidityProviderCount_not_in?: string[]; liquidityProviderCount_in?: string[]; liquidityProviderCount_lte?: string; liquidityProviderCount_gte?: string; liquidityProviderCount_lt?: string; liquidityProviderCount_gt?: string; liquidityProviderCount_not?: string; liquidityProviderCount?: string; isProtocolFeeEnabled_not_in?: boolean[]; isProtocolFeeEnabled_in?: boolean[]; isProtocolFeeEnabled_not?: boolean; isProtocolFeeEnabled?: boolean; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLockedETH_not_in?: string[]; totalValueLockedETH_in?: string[]; totalValueLockedETH_lte?: string; totalValueLockedETH_gte?: string; totalValueLockedETH_lt?: string; totalValueLockedETH_gt?: string; totalValueLockedETH_not?: string; totalValueLockedETH?: string; totalValueLockedToken1_not_in?: string[]; totalValueLockedToken1_in?: string[]; totalValueLockedToken1_lte?: string; totalValueLockedToken1_gte?: string; totalValueLockedToken1_lt?: string; totalValueLockedToken1_gt?: string; totalValueLockedToken1_not?: string; totalValueLockedToken1?: string; totalValueLockedToken0_not_in?: string[]; totalValueLockedToken0_in?: string[]; totalValueLockedToken0_lte?: string; totalValueLockedToken0_gte?: string; totalValueLockedToken0_lt?: string; totalValueLockedToken0_gt?: string; totalValueLockedToken0_not?: string; totalValueLockedToken0?: string; collectedFeesUSD_not_in?: string[]; collectedFeesUSD_in?: string[]; collectedFeesUSD_lte?: string; collectedFeesUSD_gte?: string; collectedFeesUSD_lt?: string; collectedFeesUSD_gt?: string; collectedFeesUSD_not?: string; collectedFeesUSD?: string; collectedFeesToken1_not_in?: string[]; collectedFeesToken1_in?: string[]; collectedFeesToken1_lte?: string; collectedFeesToken1_gte?: string; collectedFeesToken1_lt?: string; collectedFeesToken1_gt?: string; collectedFeesToken1_not?: string; collectedFeesToken1?: string; collectedFeesToken0_not_in?: string[]; collectedFeesToken0_in?: string[]; collectedFeesToken0_lte?: string; collectedFeesToken0_gte?: string; collectedFeesToken0_lt?: string; collectedFeesToken0_gt?: string; collectedFeesToken0_not?: string; collectedFeesToken0?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volumeToken1_not_in?: string[]; volumeToken1_in?: string[]; volumeToken1_lte?: string; volumeToken1_gte?: string; volumeToken1_lt?: string; volumeToken1_gt?: string; volumeToken1_not?: string; volumeToken1?: string; volumeToken0_not_in?: string[]; volumeToken0_in?: string[]; volumeToken0_lte?: string; volumeToken0_gte?: string; volumeToken0_lt?: string; volumeToken0_gt?: string; volumeToken0_not?: string; volumeToken0?: string; observationIndex_not_in?: string[]; observationIndex_in?: string[]; observationIndex_lte?: string; observationIndex_gte?: string; observationIndex_lt?: string; observationIndex_gt?: string; observationIndex_not?: string; observationIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; token1Price_not_in?: string[]; token1Price_in?: string[]; token1Price_lte?: string; token1Price_gte?: string; token1Price_lt?: string; token1Price_gt?: string; token1Price_not?: string; token1Price?: string; token0Price_not_in?: string[]; token0Price_in?: string[]; token0Price_lte?: string; token0Price_gte?: string; token0Price_lt?: string; token0Price_gt?: string; token0Price_not?: string; token0Price?: string; feeGrowthGlobal1X128_not_in?: string[]; feeGrowthGlobal1X128_in?: string[]; feeGrowthGlobal1X128_lte?: string; feeGrowthGlobal1X128_gte?: string; feeGrowthGlobal1X128_lt?: string; feeGrowthGlobal1X128_gt?: string; feeGrowthGlobal1X128_not?: string; feeGrowthGlobal1X128?: string; feeGrowthGlobal0X128_not_in?: string[]; feeGrowthGlobal0X128_in?: string[]; feeGrowthGlobal0X128_lte?: string; feeGrowthGlobal0X128_gte?: string; feeGrowthGlobal0X128_lt?: string; feeGrowthGlobal0X128_gt?: string; feeGrowthGlobal0X128_not?: string; feeGrowthGlobal0X128?: string; sqrtPrice_not_in?: string[]; sqrtPrice_in?: string[]; sqrtPrice_lte?: string; sqrtPrice_gte?: string; sqrtPrice_lt?: string; sqrtPrice_gt?: string; sqrtPrice_not?: string; sqrtPrice?: string; liquidity_not_in?: string[]; liquidity_in?: string[]; liquidity_lte?: string; liquidity_gte?: string; liquidity_lt?: string; liquidity_gt?: string; liquidity_not?: string; liquidity?: string; feeTier_not_in?: string[]; feeTier_in?: string[]; feeTier_lte?: string; feeTier_gte?: string; feeTier_lt?: string; feeTier_gt?: string; feeTier_not?: string; feeTier?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; createdAtBlockNumber_not_in?: string[]; createdAtBlockNumber_in?: string[]; createdAtBlockNumber_lte?: string; createdAtBlockNumber_gte?: string; createdAtBlockNumber_lt?: string; createdAtBlockNumber_gt?: string; createdAtBlockNumber_not?: string; createdAtBlockNumber?: string; createdAtTimestamp_not_in?: string[]; createdAtTimestamp_in?: string[]; createdAtTimestamp_lte?: string; createdAtTimestamp_gte?: string; createdAtTimestamp_lt?: string; createdAtTimestamp_gt?: string; createdAtTimestamp_not?: string; createdAtTimestamp?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; swaps_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tick_not_in?: string[]; tick_in?: string[]; tick_lte?: string; tick_gte?: string; tick_lt?: string; tick_gt?: string; tick_not?: string; tick?: string; sqrtPriceX96_not_in?: string[]; sqrtPriceX96_in?: string[]; sqrtPriceX96_lte?: string; sqrtPriceX96_gte?: string; sqrtPriceX96_lt?: string; sqrtPriceX96_gt?: string; sqrtPriceX96_not?: string; sqrtPriceX96?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; recipient_not_contains?: `0x${string}`; recipient_contains?: `0x${string}`; recipient_not_in?: `0x${string}`[]; recipient_in?: `0x${string}`[]; recipient_lte?: `0x${string}`; recipient_gte?: `0x${string}`; recipient_lt?: `0x${string}`; recipient_gt?: `0x${string}`; recipient_not?: `0x${string}`; recipient?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; burns_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; mints_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; logIndex_not_in?: string[]; logIndex_in?: string[]; logIndex_lte?: string; logIndex_gte?: string; logIndex_lt?: string; logIndex_gt?: string; logIndex_not?: string; logIndex?: string; tickUpper_not_in?: string[]; tickUpper_in?: string[]; tickUpper_lte?: string; tickUpper_gte?: string; tickUpper_lt?: string; tickUpper_gt?: string; tickUpper_not?: string; tickUpper?: string; tickLower_not_in?: string[]; tickLower_in?: string[]; tickLower_lte?: string; tickLower_gte?: string; tickLower_lt?: string; tickLower_gt?: string; tickLower_not?: string; tickLower?: string; amountUSD_not_in?: string[]; amountUSD_in?: string[]; amountUSD_lte?: string; amountUSD_gte?: string; amountUSD_lt?: string; amountUSD_gt?: string; amountUSD_not?: string; amountUSD?: string; amount1_not_in?: string[]; amount1_in?: string[]; amount1_lte?: string; amount1_gte?: string; amount1_lt?: string; amount1_gt?: string; amount1_not?: string; amount1?: string; amount0_not_in?: string[]; amount0_in?: string[]; amount0_lte?: string; amount0_gte?: string; amount0_lt?: string; amount0_gt?: string; amount0_not?: string; amount0?: string; amount_not_in?: string[]; amount_in?: string[]; amount_lte?: string; amount_gte?: string; amount_lt?: string; amount_gt?: string; amount_not?: string; amount?: string; origin_not_contains?: `0x${string}`; origin_contains?: `0x${string}`; origin_not_in?: `0x${string}`[]; origin_in?: `0x${string}`[]; origin_lte?: `0x${string}`; origin_gte?: `0x${string}`; origin_lt?: `0x${string}`; origin_gt?: `0x${string}`; origin_not?: `0x${string}`; origin?: `0x${string}`; sender_not_contains?: `0x${string}`; sender_contains?: `0x${string}`; sender_not_in?: `0x${string}`[]; sender_in?: `0x${string}`[]; sender_lte?: `0x${string}`; sender_gte?: `0x${string}`; sender_lt?: `0x${string}`; sender_gt?: `0x${string}`; sender_not?: `0x${string}`; sender?: `0x${string}`; owner_not_contains?: `0x${string}`; owner_contains?: `0x${string}`; owner_not_in?: `0x${string}`[]; owner_in?: `0x${string}`[]; owner_lte?: `0x${string}`; owner_gte?: `0x${string}`; owner_lt?: `0x${string}`; owner_gt?: `0x${string}`; owner_not?: `0x${string}`; owner?: `0x${string}`; token1_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token1_not_ends_with_nocase?: string; token1_not_ends_with?: string; token1_ends_with_nocase?: string; token1_ends_with?: string; token1_not_starts_with_nocase?: string; token1_not_starts_with?: string; token1_starts_with_nocase?: string; token1_starts_with?: string; token1_not_contains_nocase?: string; token1_not_contains?: string; token1_contains_nocase?: string; token1_contains?: string; token1_not_in?: string[]; token1_in?: string[]; token1_lte?: string; token1_gte?: string; token1_lt?: string; token1_gt?: string; token1_not?: string; token1?: string; token0_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; tokenDayData_?: { or?: any[]; and?: any[]; _change_block?: { number_gte: number; }; close_not_in?: string[]; close_in?: string[]; close_lte?: string; close_gte?: string; close_lt?: string; close_gt?: string; close_not?: string; close?: string; low_not_in?: string[]; low_in?: string[]; low_lte?: string; low_gte?: string; low_lt?: string; low_gt?: string; low_not?: string; low?: string; high_not_in?: string[]; high_in?: string[]; high_lte?: string; high_gte?: string; high_lt?: string; high_gt?: string; high_not?: string; high?: string; open_not_in?: string[]; open_in?: string[]; open_lte?: string; open_gte?: string; open_lt?: string; open_gt?: string; open_not?: string; open?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; priceUSD_not_in?: string[]; priceUSD_in?: string[]; priceUSD_lte?: string; priceUSD_gte?: string; priceUSD_lt?: string; priceUSD_gt?: string; priceUSD_not?: string; priceUSD?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; token_?: any; token_not_ends_with_nocase?: string; token_not_ends_with?: string; token_ends_with_nocase?: string; token_ends_with?: string; token_not_starts_with_nocase?: string; token_not_starts_with?: string; token_starts_with_nocase?: string; token_starts_with?: string; token_not_contains_nocase?: string; token_not_contains?: string; token_contains_nocase?: string; token_contains?: string; token_not_in?: string[]; token_in?: string[]; token_lte?: string; token_gte?: string; token_lt?: string; token_gt?: string; token_not?: string; token?: string; date_not_in?: number[]; date_in?: number[]; date_lte?: number; date_gte?: number; date_lt?: number; date_gt?: number; date_not?: number; date?: number; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; whitelistPools_?: any; whitelistPools_not_contains_nocase?: string[]; whitelistPools_not_contains?: string[]; whitelistPools_contains_nocase?: string[]; whitelistPools_contains?: string[]; whitelistPools_not?: string[]; whitelistPools?: string[]; derivedETH_not_in?: string[]; derivedETH_in?: string[]; derivedETH_lte?: string; derivedETH_gte?: string; derivedETH_lt?: string; derivedETH_gt?: string; derivedETH_not?: string; derivedETH?: string; totalValueLockedUSDUntracked_not_in?: string[]; totalValueLockedUSDUntracked_in?: string[]; totalValueLockedUSDUntracked_lte?: string; totalValueLockedUSDUntracked_gte?: string; totalValueLockedUSDUntracked_lt?: string; totalValueLockedUSDUntracked_gt?: string; totalValueLockedUSDUntracked_not?: string; totalValueLockedUSDUntracked?: string; totalValueLockedUSD_not_in?: string[]; totalValueLockedUSD_in?: string[]; totalValueLockedUSD_lte?: string; totalValueLockedUSD_gte?: string; totalValueLockedUSD_lt?: string; totalValueLockedUSD_gt?: string; totalValueLockedUSD_not?: string; totalValueLockedUSD?: string; totalValueLocked_not_in?: string[]; totalValueLocked_in?: string[]; totalValueLocked_lte?: string; totalValueLocked_gte?: string; totalValueLocked_lt?: string; totalValueLocked_gt?: string; totalValueLocked_not?: string; totalValueLocked?: string; poolCount_not_in?: string[]; poolCount_in?: string[]; poolCount_lte?: string; poolCount_gte?: string; poolCount_lt?: string; poolCount_gt?: string; poolCount_not?: string; poolCount?: string; txCount_not_in?: string[]; txCount_in?: string[]; txCount_lte?: string; txCount_gte?: string; txCount_lt?: string; txCount_gt?: string; txCount_not?: string; txCount?: string; feesUSD_not_in?: string[]; feesUSD_in?: string[]; feesUSD_lte?: string; feesUSD_gte?: string; feesUSD_lt?: string; feesUSD_gt?: string; feesUSD_not?: string; feesUSD?: string; untrackedVolumeUSD_not_in?: string[]; untrackedVolumeUSD_in?: string[]; untrackedVolumeUSD_lte?: string; untrackedVolumeUSD_gte?: string; untrackedVolumeUSD_lt?: string; untrackedVolumeUSD_gt?: string; untrackedVolumeUSD_not?: string; untrackedVolumeUSD?: string; volumeUSD_not_in?: string[]; volumeUSD_in?: string[]; volumeUSD_lte?: string; volumeUSD_gte?: string; volumeUSD_lt?: string; volumeUSD_gt?: string; volumeUSD_not?: string; volumeUSD?: string; volume_not_in?: string[]; volume_in?: string[]; volume_lte?: string; volume_gte?: string; volume_lt?: string; volume_gt?: string; volume_not?: string; volume?: string; totalSupply_not_in?: string[]; totalSupply_in?: string[]; totalSupply_lte?: string; totalSupply_gte?: string; totalSupply_lt?: string; totalSupply_gt?: string; totalSupply_not?: string; totalSupply?: string; decimals_not_in?: string[]; decimals_in?: string[]; decimals_lte?: string; decimals_gte?: string; decimals_lt?: string; decimals_gt?: string; decimals_not?: string; decimals?: string; name_not_ends_with_nocase?: string; name_not_ends_with?: string; name_ends_with_nocase?: string; name_ends_with?: string; name_not_starts_with_nocase?: string; name_not_starts_with?: string; name_starts_with_nocase?: string; name_starts_with?: string; name_not_contains_nocase?: string; name_not_contains?: string; name_contains_nocase?: string; name_contains?: string; name_not_in?: string[]; name_in?: string[]; name_lte?: string; name_gte?: string; name_lt?: string; name_gt?: string; name_not?: string; name?: string; symbol_not_ends_with_nocase?: string; symbol_not_ends_with?: string; symbol_ends_with_nocase?: string; symbol_ends_with?: string; symbol_not_starts_with_nocase?: string; symbol_not_starts_with?: string; symbol_starts_with_nocase?: string; symbol_starts_with?: string; symbol_not_contains_nocase?: string; symbol_not_contains?: string; symbol_contains_nocase?: string; symbol_contains?: string; symbol_not_in?: string[]; symbol_in?: string[]; symbol_lte?: string; symbol_gte?: string; symbol_lt?: string; symbol_gt?: string; symbol_not?: string; symbol?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; token0_not_ends_with_nocase?: string; token0_not_ends_with?: string; token0_ends_with_nocase?: string; token0_ends_with?: string; token0_not_starts_with_nocase?: string; token0_not_starts_with?: string; token0_starts_with_nocase?: string; token0_starts_with?: string; token0_not_contains_nocase?: string; token0_not_contains?: string; token0_contains_nocase?: string; token0_contains?: string; token0_not_in?: string[]; token0_in?: string[]; token0_lte?: string; token0_gte?: string; token0_lt?: string; token0_gt?: string; token0_not?: string; token0?: string; pool_?: any; pool_not_ends_with_nocase?: string; pool_not_ends_with?: string; pool_ends_with_nocase?: string; pool_ends_with?: string; pool_not_starts_with_nocase?: string; pool_not_starts_with?: string; pool_starts_with_nocase?: string; pool_starts_with?: string; pool_not_contains_nocase?: string; pool_not_contains?: string; pool_contains_nocase?: string; pool_contains?: string; pool_not_in?: string[]; pool_in?: string[]; pool_lte?: string; pool_gte?: string; pool_lt?: string; pool_gt?: string; pool_not?: string; pool?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; transaction_?: any; transaction_not_ends_with_nocase?: string; transaction_not_ends_with?: string; transaction_ends_with_nocase?: string; transaction_ends_with?: string; transaction_not_starts_with_nocase?: string; transaction_not_starts_with?: string; transaction_starts_with_nocase?: string; transaction_starts_with?: string; transaction_not_contains_nocase?: string; transaction_not_contains?: string; transaction_contains_nocase?: string; transaction_contains?: string; transaction_not_in?: string[]; transaction_in?: string[]; transaction_lte?: string; transaction_gte?: string; transaction_lt?: string; transaction_gt?: string; transaction_not?: string; transaction?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; gasPrice_not_in?: string[]; gasPrice_in?: string[]; gasPrice_lte?: string; gasPrice_gte?: string; gasPrice_lt?: string; gasPrice_gt?: string; gasPrice_not?: string; gasPrice?: string; gasUsed_not_in?: string[]; gasUsed_in?: string[]; gasUsed_lte?: string; gasUsed_gte?: string; gasUsed_lt?: string; gasUsed_gt?: string; gasUsed_not?: string; gasUsed?: string; timestamp_not_in?: string[]; timestamp_in?: string[]; timestamp_lte?: string; timestamp_gte?: string; timestamp_lt?: string; timestamp_gt?: string; timestamp_not?: string; timestamp?: string; blockNumber_not_in?: string[]; blockNumber_in?: string[]; blockNumber_lte?: string; blockNumber_gte?: string; blockNumber_lt?: string; blockNumber_gt?: string; blockNumber_not?: string; blockNumber?: string; id_not_in?: string[]; id_in?: string[]; id_lte?: string; id_gte?: string; id_lt?: string; id_gt?: string; id_not?: string; id?: string; }; orderDirection?: "asc" | "desc"; orderBy?: "id" | "timestamp" | "burns" | "mints" | "swaps" | "blockNumber" | "gasUsed" | "gasPrice" | "collects" | "flashed"; block?: { number_gte?: number; number?: number; hash?: `0x${string}`; }; skip?: number; first?: number; }, void>; - } -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts deleted file mode 100644 index 7899d268a0..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/sushi-v3-env.d.ts +++ /dev/null @@ -1,108 +0,0 @@ -/* eslint-disable */ -/* prettier-ignore */ - -/** An IntrospectionQuery representation of your schema. - * - * @remarks - * This is an introspection of your schema saved as a file by GraphQLSP. - * It will automatically be used by `gql.tada` to infer the types of your GraphQL documents. - * If you need to reuse this data or update your `scalars`, update `tadaOutputLocation` to - * instead save to a .ts instead of a .d.ts file. - */ -export type introspection = { - name: 'sushi-v3'; - query: 'Query'; - mutation: never; - subscription: 'Subscription'; - types: { - 'Aggregation_interval': { name: 'Aggregation_interval'; enumValues: 'hour' | 'day'; }; - 'BigDecimal': unknown; - 'BigInt': unknown; - 'BlockChangedFilter': { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; isOneOf: false; inputFields: [{ name: 'number_gte'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; defaultValue: null }]; }; - 'Block_height': { kind: 'INPUT_OBJECT'; name: 'Block_height'; isOneOf: false; inputFields: [{ name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'number'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'number_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }]; }; - 'Boolean': unknown; - 'Bundle': { kind: 'OBJECT'; name: 'Bundle'; fields: { 'ethPriceUSD': { name: 'ethPriceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; }; }; - 'Bundle_filter': { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'ethPriceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'ethPriceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Bundle_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Bundle_orderBy': { name: 'Bundle_orderBy'; enumValues: 'id' | 'ethPriceUSD'; }; - 'Burn': { kind: 'OBJECT'; name: 'Burn'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Burn_filter': { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Burn_orderBy': { name: 'Burn_orderBy'; enumValues: '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'; }; - 'Bytes': unknown; - 'Collect': { kind: 'OBJECT'; name: 'Collect'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'owner': { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Collect_filter': { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Collect_orderBy': { name: 'Collect_orderBy'; enumValues: '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'; }; - 'DecreaseEvent': { kind: 'OBJECT'; name: 'DecreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'DecreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'DecreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'DecreaseEvent_orderBy': { name: 'DecreaseEvent_orderBy'; enumValues: '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'; }; - 'Factory': { kind: 'OBJECT'; name: 'Factory'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalFeesETH': { name: 'totalFeesETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalFeesUSD': { name: 'totalFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETHUntracked': { name: 'totalValueLockedETHUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeETH': { name: 'totalVolumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalVolumeUSD': { name: 'totalVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'Factory_filter': { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalVolumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalVolumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalFeesETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalFeesETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETHUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Factory_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Factory_orderBy': { name: 'Factory_orderBy'; enumValues: 'id' | 'poolCount' | 'txCount' | 'totalVolumeUSD' | 'totalVolumeETH' | 'totalFeesUSD' | 'totalFeesETH' | 'untrackedVolumeUSD' | 'totalValueLockedUSD' | 'totalValueLockedETH' | 'totalValueLockedUSDUntracked' | 'totalValueLockedETHUntracked' | 'owner'; }; - 'Flash': { kind: 'OBJECT'; name: 'Flash'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount0Paid': { name: 'amount0Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1Paid': { name: 'amount1Paid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Flash_filter': { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1Paid_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1Paid_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Flash_orderBy': { name: 'Flash_orderBy'; enumValues: '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'; }; - 'ID': unknown; - 'IncreaseEvent': { kind: 'OBJECT'; name: 'IncreaseEvent'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timeStamp': { name: 'timeStamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'tokenID': { name: 'tokenID'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'IncreaseEvent_filter': { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenID'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tokenID_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tokenID_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'timeStamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timeStamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timeStamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'IncreaseEvent_orderBy': { name: 'IncreaseEvent_orderBy'; enumValues: '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'; }; - 'Int': unknown; - 'Int8': unknown; - 'Mint': { kind: 'OBJECT'; name: 'Mint'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Mint_filter': { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'amount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Mint_orderBy': { name: 'Mint_orderBy'; enumValues: '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'; }; - 'OrderDirection': { name: 'OrderDirection'; enumValues: 'asc' | 'desc'; }; - 'Pool': { kind: 'OBJECT'; name: 'Pool'; fields: { 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeTier': { name: 'feeTier'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'isProtocolFeeEnabled': { name: 'isProtocolFeeEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'observationIndex': { name: 'observationIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedETH': { name: 'totalValueLockedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken0': { name: 'totalValueLockedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedToken1': { name: 'totalValueLockedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolDayData': { kind: 'OBJECT'; name: 'PoolDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolDayData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolDayData_orderBy': { name: 'PoolDayData_orderBy'; enumValues: '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'; }; - 'PoolHourData': { kind: 'OBJECT'; name: 'PoolHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthGlobal0X128': { name: 'feeGrowthGlobal0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthGlobal1X128': { name: 'feeGrowthGlobal1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'sqrtPrice': { name: 'sqrtPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'token0Price': { name: 'token0Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token1Price': { name: 'token1Price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PoolHourData_filter': { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PoolHourData_orderBy': { name: 'PoolHourData_orderBy'; enumValues: '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'; }; - 'Pool_filter': { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'feeTier'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeTier_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeTier_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthGlobal1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token0Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'token1Price_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1Price_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'observationIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'observationIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'isProtocolFeeEnabled_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolHourData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolHourData_filter'; ofType: null; }; defaultValue: null }, { name: 'poolDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'PoolDayData_filter'; ofType: null; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: 'ticks_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Pool_orderBy': { name: 'Pool_orderBy'; enumValues: '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'; }; - 'Position': { kind: 'OBJECT'; name: 'Position'; fields: { 'amountCollectedUSD': { name: 'amountCollectedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountDepositedUSD': { name: 'amountDepositedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountWithdrawnUSD': { name: 'amountWithdrawnUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken0': { name: 'collectedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedToken1': { name: 'collectedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tickLower': { name: 'tickLower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'tickUpper': { name: 'tickUpper'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PositionSnapshot': { kind: 'OBJECT'; name: 'PositionSnapshot'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken0': { name: 'depositedToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'depositedToken1': { name: 'depositedToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feeGrowthInside0LastX128': { name: 'feeGrowthInside0LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthInside1LastX128': { name: 'feeGrowthInside1LastX128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidity': { name: 'liquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'position': { name: 'position'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; 'withdrawnToken0': { name: 'withdrawnToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'withdrawnToken1': { name: 'withdrawnToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'PositionSnapshot_filter': { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'position'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'position_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'position_'; type: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'PositionSnapshot_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'PositionSnapshot_orderBy': { name: 'PositionSnapshot_orderBy'; enumValues: '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'; }; - 'Position_filter': { kind: 'INPUT_OBJECT'; name: 'Position_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'owner_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'owner_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'tickLower'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickLower_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickLower_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'tickUpper'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickUpper_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickUpper_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidity'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidity_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidity_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'depositedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'depositedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'withdrawnToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'withdrawnToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountDepositedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountDepositedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountWithdrawnUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountWithdrawnUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountCollectedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountCollectedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside0LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthInside1LastX128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'increaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: 'decreaseEvents_'; type: { kind: 'INPUT_OBJECT'; name: 'IncreaseEvent_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Position_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Position_orderBy': { name: 'Position_orderBy'; enumValues: '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'; }; - 'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; - 'SetProtocolFeeEvent': { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; fields: { 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new0': { name: 'new0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'new1': { name: 'new1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old0': { name: 'old0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'old1': { name: 'old1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'SetProtocolFeeEvent_filter': { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'new1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'new1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'old1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'old1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SetProtocolFeeEvent_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'SetProtocolFeeEvent_orderBy': { name: 'SetProtocolFeeEvent_orderBy'; enumValues: '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'; }; - 'String': unknown; - 'Subscription': { kind: 'OBJECT'; name: 'Subscription'; fields: { '_meta': { name: '_meta'; type: { kind: 'OBJECT'; name: '_Meta_'; ofType: null; } }; 'bundle': { name: 'bundle'; type: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; } }; 'bundles': { name: 'bundles'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Bundle'; ofType: null; }; }; }; } }; 'burn': { name: 'burn'; type: { kind: 'OBJECT'; name: 'Burn'; ofType: null; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collect': { name: 'collect'; type: { kind: 'OBJECT'; name: 'Collect'; ofType: null; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'decreaseEvent': { name: 'decreaseEvent'; type: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; } }; 'decreaseEvents': { name: 'decreaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecreaseEvent'; ofType: null; }; }; }; } }; 'factories': { name: 'factories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Factory'; ofType: null; }; }; }; } }; 'factory': { name: 'factory'; type: { kind: 'OBJECT'; name: 'Factory'; ofType: null; } }; 'flash': { name: 'flash'; type: { kind: 'OBJECT'; name: 'Flash'; ofType: null; } }; 'flashes': { name: 'flashes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'increaseEvent': { name: 'increaseEvent'; type: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; } }; 'increaseEvents': { name: 'increaseEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'IncreaseEvent'; ofType: null; }; }; }; } }; 'mint': { name: 'mint'; type: { kind: 'OBJECT'; name: 'Mint'; ofType: null; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'pool': { name: 'pool'; type: { kind: 'OBJECT'; name: 'Pool'; ofType: null; } }; 'poolDayData': { name: 'poolDayData'; type: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; } }; 'poolDayDatas': { name: 'poolDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolDayData'; ofType: null; }; }; }; } }; 'poolHourData': { name: 'poolHourData'; type: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; } }; 'poolHourDatas': { name: 'poolHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PoolHourData'; ofType: null; }; }; }; } }; 'pools': { name: 'pools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; 'position': { name: 'position'; type: { kind: 'OBJECT'; name: 'Position'; ofType: null; } }; 'positionSnapshot': { name: 'positionSnapshot'; type: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; } }; 'positionSnapshots': { name: 'positionSnapshots'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PositionSnapshot'; ofType: null; }; }; }; } }; 'positions': { name: 'positions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Position'; ofType: null; }; }; }; } }; 'setProtocolFeeEvent': { name: 'setProtocolFeeEvent'; type: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; } }; 'setProtocolFeeEvents': { name: 'setProtocolFeeEvents'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SetProtocolFeeEvent'; ofType: null; }; }; }; } }; 'swap': { name: 'swap'; type: { kind: 'OBJECT'; name: 'Swap'; ofType: null; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'tick': { name: 'tick'; type: { kind: 'OBJECT'; name: 'Tick'; ofType: null; } }; 'tickDayData': { name: 'tickDayData'; type: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; } }; 'tickDayDatas': { name: 'tickDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickDayData'; ofType: null; }; }; }; } }; 'tickHourData': { name: 'tickHourData'; type: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; } }; 'tickHourDatas': { name: 'tickHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TickHourData'; ofType: null; }; }; }; } }; 'ticks': { name: 'ticks'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; }; }; } }; 'token': { name: 'token'; type: { kind: 'OBJECT'; name: 'Token'; ofType: null; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; } }; 'tokenDayDatas': { name: 'tokenDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'tokenHourData': { name: 'tokenHourData'; type: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; } }; 'tokenHourDatas': { name: 'tokenHourDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenHourData'; ofType: null; }; }; }; } }; 'tokens': { name: 'tokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; }; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; } }; 'transactions': { name: 'transactions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; }; }; } }; 'uniswapDayData': { name: 'uniswapDayData'; type: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; } }; 'uniswapDayDatas': { name: 'uniswapDayDatas'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UniswapDayData'; ofType: null; }; }; }; } }; }; }; - 'Swap': { kind: 'OBJECT'; name: 'Swap'; fields: { 'amount0': { name: 'amount0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amount1': { name: 'amount1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'amountUSD': { name: 'amountUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'logIndex': { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; } }; 'origin': { name: 'origin'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'recipient': { name: 'recipient'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sender': { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; } }; 'sqrtPriceX96': { name: 'sqrtPriceX96'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'token0': { name: 'token0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'token1': { name: 'token1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Transaction'; ofType: null; }; } }; }; }; - 'Swap_filter': { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'transaction_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'transaction_'; type: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'token0'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token0_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token0_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'token1'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token1_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token1_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'sender'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'sender_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'sender_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'recipient_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'recipient_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lt'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_gte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_lte'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; }; }; defaultValue: null }, { name: 'origin_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'origin_not_contains'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; }; defaultValue: null }, { name: 'amount0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amount1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amount1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'amountUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'amountUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'sqrtPriceX96_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'sqrtPriceX96_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'logIndex_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'logIndex_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Swap_orderBy': { name: 'Swap_orderBy'; enumValues: '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'; }; - 'Tick': { kind: 'OBJECT'; name: 'Tick'; fields: { 'collectedFeesToken0': { name: 'collectedFeesToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesToken1': { name: 'collectedFeesToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'collectedFeesUSD': { name: 'collectedFeesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'createdAtBlockNumber': { name: 'createdAtBlockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'createdAtTimestamp': { name: 'createdAtTimestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityProviderCount': { name: 'liquidityProviderCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'poolAddress': { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'price0': { name: 'price0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'price1': { name: 'price1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'tickIdx': { name: 'tickIdx'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickDayData': { kind: 'OBJECT'; name: 'TickDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feeGrowthOutside0X128': { name: 'feeGrowthOutside0X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feeGrowthOutside1X128': { name: 'feeGrowthOutside1X128'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickDayData_orderBy': { name: 'TickDayData_orderBy'; enumValues: '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'; }; - 'TickHourData': { kind: 'OBJECT'; name: 'TickHourData'; fields: { 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidityGross': { name: 'liquidityGross'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'liquidityNet': { name: 'liquidityNet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'pool': { name: 'pool'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; } }; 'tick': { name: 'tick'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Tick'; ofType: null; }; } }; 'volumeToken0': { name: 'volumeToken0'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeToken1': { name: 'volumeToken1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TickHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tick'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'tick_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tick_'; type: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TickHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TickHourData_orderBy': { name: 'TickHourData_orderBy'; enumValues: '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'; }; - 'Tick_filter': { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolAddress_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'poolAddress_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'tickIdx'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'tickIdx_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tickIdx_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'pool_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'pool_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityGross_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityGross_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityNet_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityNet_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'price1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'price1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken0_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken0_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesToken1_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesToken1_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'collectedFeesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'collectedFeesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtTimestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtTimestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'createdAtBlockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'createdAtBlockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'liquidityProviderCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'liquidityProviderCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside0X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'feeGrowthOutside1X128_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Tick_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Tick_orderBy': { name: 'Tick_orderBy'; enumValues: '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'; }; - 'Timestamp': unknown; - 'Token': { kind: 'OBJECT'; name: 'Token'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'derivedETH': { name: 'derivedETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'poolCount': { name: 'poolCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'tokenDayData': { name: 'tokenDayData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenDayData'; ofType: null; }; }; }; } }; 'totalSupply': { name: 'totalSupply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSDUntracked': { name: 'totalValueLockedUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'whitelistPools': { name: 'whitelistPools'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Pool'; ofType: null; }; }; }; } }; }; }; - 'TokenDayData': { kind: 'OBJECT'; name: 'TokenDayData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenDayData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenDayData_orderBy': { name: 'TokenDayData_orderBy'; enumValues: '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'; }; - 'TokenHourData': { kind: 'OBJECT'; name: 'TokenHourData'; fields: { 'close': { name: 'close'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'high': { name: 'high'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'low': { name: 'low'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'open': { name: 'open'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'periodStartUnix': { name: 'periodStartUnix'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'priceUSD': { name: 'priceUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Token'; ofType: null; }; } }; 'totalValueLocked': { name: 'totalValueLocked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'totalValueLockedUSD': { name: 'totalValueLockedUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'untrackedVolumeUSD': { name: 'untrackedVolumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volume': { name: 'volume'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'TokenHourData_filter': { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'periodStartUnix_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'periodStartUnix_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'token_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'token_'; type: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'priceUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'priceUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'open_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'open_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'high_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'high_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'low_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'low_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'close_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'close_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenHourData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'TokenHourData_orderBy': { name: 'TokenHourData_orderBy'; enumValues: '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'; }; - 'Token_filter': { kind: 'INPUT_OBJECT'; name: 'Token_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'symbol_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'symbol_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lt'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_gte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_lte'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'name_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_contains_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_starts_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'name_not_ends_with_nocase'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; }; defaultValue: null }, { name: 'decimals'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'decimals_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'decimals_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'totalSupply_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalSupply_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volume_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volume_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'untrackedVolumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'untrackedVolumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'poolCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'poolCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLocked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLocked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'totalValueLockedUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'derivedETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'derivedETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_not_contains_nocase'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; }; defaultValue: null }, { name: 'whitelistPools_'; type: { kind: 'INPUT_OBJECT'; name: 'Pool_filter'; ofType: null; }; defaultValue: null }, { name: 'tokenDayData_'; type: { kind: 'INPUT_OBJECT'; name: 'TokenDayData_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Token_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Token_orderBy': { name: 'Token_orderBy'; enumValues: 'id' | 'symbol' | 'name' | 'decimals' | 'totalSupply' | 'volume' | 'volumeUSD' | 'untrackedVolumeUSD' | 'feesUSD' | 'txCount' | 'poolCount' | 'totalValueLocked' | 'totalValueLockedUSD' | 'totalValueLockedUSDUntracked' | 'derivedETH' | 'whitelistPools' | 'tokenDayData'; }; - 'Transaction': { kind: 'OBJECT'; name: 'Transaction'; fields: { 'blockNumber': { name: 'blockNumber'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'burns': { name: 'burns'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Burn'; ofType: null; }; }; }; } }; 'collects': { name: 'collects'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Collect'; ofType: null; }; }; }; } }; 'flashed': { name: 'flashed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Flash'; ofType: null; }; }; }; } }; 'gasPrice': { name: 'gasPrice'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'gasUsed': { name: 'gasUsed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'mints': { name: 'mints'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Mint'; ofType: null; }; }; }; } }; 'swaps': { name: 'swaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Swap'; ofType: null; }; }; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; }; - 'Transaction_filter': { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'blockNumber_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'blockNumber_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'timestamp_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'timestamp_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasUsed_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasUsed_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'gasPrice_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'gasPrice_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'mints_'; type: { kind: 'INPUT_OBJECT'; name: 'Mint_filter'; ofType: null; }; defaultValue: null }, { name: 'burns_'; type: { kind: 'INPUT_OBJECT'; name: 'Burn_filter'; ofType: null; }; defaultValue: null }, { name: 'swaps_'; type: { kind: 'INPUT_OBJECT'; name: 'Swap_filter'; ofType: null; }; defaultValue: null }, { name: 'flashed_'; type: { kind: 'INPUT_OBJECT'; name: 'Flash_filter'; ofType: null; }; defaultValue: null }, { name: 'collects_'; type: { kind: 'INPUT_OBJECT'; name: 'Collect_filter'; ofType: null; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Transaction_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'Transaction_orderBy': { name: 'Transaction_orderBy'; enumValues: 'id' | 'blockNumber' | 'timestamp' | 'gasUsed' | 'gasPrice' | 'mints' | 'burns' | 'swaps' | 'flashed' | 'collects'; }; - 'UniswapDayData': { kind: 'OBJECT'; name: 'UniswapDayData'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'feesUSD': { name: 'feesUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'tvlUSD': { name: 'tvlUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'txCount': { name: 'txCount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'volumeETH': { name: 'volumeETH'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSD': { name: 'volumeUSD'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'volumeUSDUntracked': { name: 'volumeUSDUntracked'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; }; - 'UniswapDayData_filter': { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_not'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lt'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_gte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_lte'; type: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; defaultValue: null }, { name: 'id_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'id_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; }; }; defaultValue: null }, { name: 'date'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_not'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lt'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_gte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_lte'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; defaultValue: null }, { name: 'date_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'date_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeETH_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeETH_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'volumeUSDUntracked_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'volumeUSDUntracked_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'feesUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'feesUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_not'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lt'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_gte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_lte'; type: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; defaultValue: null }, { name: 'txCount_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'txCount_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_not'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lt'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_gte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_lte'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'tvlUSD_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: 'tvlUSD_not_in'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; }; defaultValue: null }, { name: '_change_block'; type: { kind: 'INPUT_OBJECT'; name: 'BlockChangedFilter'; ofType: null; }; defaultValue: null }, { name: 'and'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }, { name: 'or'; type: { kind: 'LIST'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UniswapDayData_filter'; ofType: null; }; }; defaultValue: null }]; }; - 'UniswapDayData_orderBy': { name: 'UniswapDayData_orderBy'; enumValues: 'id' | 'date' | 'volumeETH' | 'volumeUSD' | 'volumeUSDUntracked' | 'feesUSD' | 'txCount' | 'tvlUSD'; }; - '_Block_': { kind: 'OBJECT'; name: '_Block_'; fields: { 'hash': { name: 'hash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'number': { name: 'number'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'parentHash': { name: 'parentHash'; type: { kind: 'SCALAR'; name: 'Bytes'; ofType: null; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'SCALAR'; name: 'Int'; ofType: null; } }; }; }; - '_Meta_': { kind: 'OBJECT'; name: '_Meta_'; fields: { 'block': { name: 'block'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '_Block_'; ofType: null; }; } }; 'deployment': { name: 'deployment'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'hasIndexingErrors': { name: 'hasIndexingErrors'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; }; }; - '_SubgraphErrorPolicy_': { name: '_SubgraphErrorPolicy_'; enumValues: 'allow' | 'deny'; }; - }; -}; - -import * as gqlTada from 'gql.tada'; diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index 0287325b29..06fa20dea2 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -29,6 +29,12 @@ "tadaOutputLocation": "./src/subgraphs/bonds/bonds-env.d.ts", "tadaTurboLocation": "./src/subgraphs/bonds/bonds-cache.d.ts" }, + { + "name": "furo", + "schema": "./src/subgraphs/furo/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/furo/furo-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/furo/furo-cache.d.ts" + }, { "name": "master-chef-v1", "schema": "./src/subgraphs/master-chef-v1/schema.graphql", diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts index 8b0e82fdaf..1cef970034 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -5,7 +5,7 @@ import { FILECOIN_HOST, HAQQ_HOST, KAVA_HOST, - METIS_HOST, + METIS_0XGRAPH_HOST, SKALE_HOST, SUSHI_DEDICATED_GOLDSKY_HOST, SUSHI_GOLDSKY_HOST, @@ -31,7 +31,7 @@ export const BLOCKS_SUBGRAPH_URL: Partial> = { [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 62% synced [ChainId.KAVA]: `${KAVA_HOST}/sushiswap/blocks-kava`, - [ChainId.METIS]: `${METIS_HOST}/sushiswap/blocks-metis`, + [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/blocks-metis`, // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/5d1ZCJQCEqsfCqLRRU5iQ9ewg79tuNqZLPMkgUcpmLsD`, diff --git a/packages/sushi/src/config/sushiswap-v2.ts b/packages/sushi/src/config/sushiswap-v2.ts index fea6c9c6df..4b64137f10 100644 --- a/packages/sushi/src/config/sushiswap-v2.ts +++ b/packages/sushi/src/config/sushiswap-v2.ts @@ -49,7 +49,7 @@ export const SUSHISWAP_V2_SUPPORTED_CHAIN_IDS = [ // ChainId.RINKEBY, // ChainId.GÖRLI, // ChainId.KOVAN, -] +] as const export const SushiSwapV2ChainIds = SUSHISWAP_V2_SUPPORTED_CHAIN_IDS diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6f4cfabfbb..0a3389d5e3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1775,6 +1775,9 @@ importers: graphql-request: specifier: ^7.0.1 version: 7.0.1(graphql@16.6.0) + json-bigint: + specifier: ^1.0.0 + version: 1.0.0 sushi: specifier: workspace:* version: link:../sushi @@ -1794,6 +1797,9 @@ importers: '@tsconfig/strictest': specifier: 2.0.2 version: 2.0.2 + '@types/json-bigint': + specifier: ^1.0.4 + version: 1.0.4 '@types/node': specifier: '20' version: 20.12.7 @@ -19673,6 +19679,10 @@ packages: parse5: 7.1.2 dev: false + /@types/json-bigint@1.0.4: + resolution: {integrity: sha512-ydHooXLbOmxBbubnA7Eh+RpBzuaIiQjh8WGJYQB50JFGFrdxW7JzVlyEV7fAXw0T2sqJ1ysTneJbiyNLqZRAag==} + dev: true + /@types/json-schema@7.0.12: resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} @@ -34623,7 +34633,6 @@ packages: resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} dependencies: bignumber.js: 9.1.1 - dev: true /json-buffer@3.0.0: resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==} From d6bd7e2210efbbc1273e219e5475ac878107ecab Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Thu, 30 May 2024 08:30:16 +0000 Subject: [PATCH 035/119] feat: create a base pool type --- packages/database/package.json | 1 + packages/database/src/types.d.ts | 41 +++++ packages/graph-client-new/package.json | 1 + packages/graph-client-new/scripts/t.ts | 6 +- .../src/composite/sushi-historic-pool.ts | 147 +++++++++++++----- .../graph-client-new/src/subgraphs/.gitignore | 2 + .../sushi-v2/fragments/pool-fields.ts | 6 +- .../sushi-v2/queries/pool-with-buckets.ts | 80 ++++++++++ .../src/subgraphs/sushi-v2/queries/pool.ts | 11 +- .../sushi-v2/transforms/bucket-v2-to-std.ts | 24 +++ .../sushi-v2/transforms/pool-v2-to-std.ts | 62 ++++++++ .../sushi-v2/transforms/pool-v2-to-v3.ts | 45 ------ .../sushi-v3/fragments/pool-fields.ts | 51 ++++++ .../src/subgraphs/sushi-v3/index.ts | 1 + .../sushi-v3/queries/pool-with-buckets.ts | 70 +++++++++ .../src/subgraphs/sushi-v3/queries/pool.ts | 72 ++------- .../sushi-v3/transforms/bucket-v3-to-std.ts | 24 +++ .../sushi-v3/transforms/pool-v3-to-std.ts | 74 +++++++++ packages/sushi/src/format/id.ts | 2 +- packages/sushi/src/types/address.ts | 1 + packages/sushi/src/types/id.ts | 3 + packages/sushi/src/types/index.ts | 8 +- .../src/types/sushi-pool/buckets-with-pool.ts | 15 ++ packages/sushi/src/types/sushi-pool/index.ts | 6 + .../sushi/src/types/sushi-pool/protocol.ts | 10 ++ .../src/types/sushi-pool/sushi-pool-base.ts | 32 ++++ .../types/sushi-pool/sushi-pool-history.ts | 18 +++ .../src/types/sushi-pool/sushi-pool-v2.ts | 14 ++ .../src/types/sushi-pool/sushi-pool-v3.ts | 25 +++ packages/sushi/src/types/token.ts | 11 ++ pnpm-lock.yaml | 6 + 31 files changed, 704 insertions(+), 165 deletions(-) create mode 100644 packages/database/src/types.d.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts delete mode 100644 packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts create mode 100644 packages/sushi/src/types/address.ts create mode 100644 packages/sushi/src/types/id.ts create mode 100644 packages/sushi/src/types/sushi-pool/buckets-with-pool.ts create mode 100644 packages/sushi/src/types/sushi-pool/index.ts create mode 100644 packages/sushi/src/types/sushi-pool/protocol.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-base.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-history.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts create mode 100644 packages/sushi/src/types/token.ts diff --git a/packages/database/package.json b/packages/database/package.json index 86b9fcd2a8..4fc1a882b0 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -58,6 +58,7 @@ }, "devDependencies": { "@sushiswap/jest-config": "workspace:*", + "sushi": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", "@types/jest": "29.5.5", diff --git a/packages/database/src/types.d.ts b/packages/database/src/types.d.ts new file mode 100644 index 0000000000..f8fc1f157e --- /dev/null +++ b/packages/database/src/types.d.ts @@ -0,0 +1,41 @@ +declare module '@prisma/client' { + import type { + Prisma, + SushiPool as PrismaSushiPool, + Protocol, + } from '@prisma/client/index' + export * from '@prisma/client/index' + + type Address = `0x${string}` + type ID = `${string}:${Address}` + + export type DecimalToString = { + [P in keyof T]: T[P] extends Prisma.Decimal | null + ? Exclude | string + : T[P] extends unknown[] + ? DecimalToString[] + : T[P] extends object + ? DecimalToString + : T[P] + } + + import type { ChainId } from 'sushi/chain' + import type { SushiSwapV2ChainId, SushiSwapV3ChainId } from 'sushi/config' + + type SushiV2Pool = { + chainId: SushiSwapV2ChainId + protocol: 'SUSHISWAP_V2' + } + + type SushiV3Pool = { + chainId: SushiSwapV3ChainId + protocol: 'SUSHISWAP_V3' + } + + export type SushiPool = DecimalToString< + Omit & { + id: ID + address: Address + } & (SushiV2Pool | SushiV3Pool) + > +} diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index ab80960974..4cf846f963 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -78,6 +78,7 @@ "devDependencies": { "@0no-co/graphqlsp": "^1.12.3", "@sushiswap/jest-config": "workspace:*", + "@sushiswap/database": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", "@types/json-bigint": "^1.0.4", diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client-new/scripts/t.ts index ccd8df74c5..03a68fbb0f 100644 --- a/packages/graph-client-new/scripts/t.ts +++ b/packages/graph-client-new/scripts/t.ts @@ -1,7 +1,5 @@ import { getSushiV3Transactions } from '../src/subgraphs/sushi-v3/queries/transactions' -// const a = await getSushiV3Transactions({ chainId: 1, first: 2001 }) +const a = await getSushiV3Transactions({ chainId: 1, first: 2001 }) -// console.log(a[0]) - -import '../src/lib/request' +console.log(a[0]) diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts index bc6f6a055d..e8e718e52a 100644 --- a/packages/graph-client-new/src/composite/sushi-historic-pool.ts +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -3,12 +3,19 @@ import { type GetSushiV2Pool, getSushiV2Pool, } from 'src/subgraphs/sushi-v2/queries/pool' -import { transformPoolV2ToV3 } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-v3' +import { getSushiV2PoolBuckets } from 'src/subgraphs/sushi-v2/queries/pool-with-buckets' import { type GetSushiV3Pool, getSushiV3Pool, } from 'src/subgraphs/sushi-v3/queries/pool' +import { getSushiV3PoolBuckets } from 'src/subgraphs/sushi-v3/queries/pool-with-buckets' import { isSushiSwapV2ChainId, isSushiSwapV3ChainId } from 'sushi/config' +import type { + SushiPoolHistory, + SushiPoolV2, + SushiPoolV3, + SushiPoolWithBuckets, +} from 'sushi/types' import { isPromiseFulfilled } from 'sushi/validate' export type GetSushiHistoricPool = Omit< @@ -16,6 +23,8 @@ export type GetSushiHistoricPool = Omit< 'block' > +type Result = SushiPoolHistory> + async function fetchSushiV2Pool({ chainId, ...variables @@ -24,7 +33,7 @@ async function fetchSushiV2Pool({ throw new Error(`ChainId ${chainId} is not a SushiSwap V2 chain`) } - return transformPoolV2ToV3(await getSushiV2Pool({ chainId, ...variables })) + return await getSushiV2Pool({ chainId, ...variables }) } async function fetchSushiV3Pool({ @@ -41,9 +50,22 @@ async function fetchSushiV3Pool({ export async function getSushiHistoricPool({ chainId, ...variables -}: GetSushiHistoricPool) { - const v2poolF = isSushiSwapV2ChainId(chainId) ? getSushiV2Pool : null - const v3poolF = isSushiSwapV3ChainId(chainId) ? getSushiV3Pool : null +}: GetSushiHistoricPool): Promise { + const id = variables.id.toLowerCase() + + // FETCH + const v2poolF = isSushiSwapV2ChainId(chainId) + ? getSushiV2PoolBuckets({ + chainId, + id, + }) + : null + const v3poolF = isSushiSwapV3ChainId(chainId) + ? getSushiV3PoolBuckets({ + chainId, + id, + }) + : null const [v2poolS, v3poolS] = await Promise.allSettled([v2poolF, v3poolF]) @@ -56,44 +78,26 @@ export async function getSushiHistoricPool({ const fetcher = v2pool ? fetchSushiV2Pool : fetchSushiV3Pool - const pool1dP = getBlockHistoric({ - chainId, - daysAgo: 1, - }) - .then(async (block) => { - return fetcher({ - chainId, - ...variables, - block: { number: block.number }, - }) + const getPoolTimeAgo = async ( + ago: Omit[0], 'chainId'>, + ) => { + return getBlockHistoric({ + chainId, + ...ago, }) - .catch(() => null) - - const pool2dP = getBlockHistoric({ - chainId, - daysAgo: 2, - }) - .then(async (block) => { - return fetcher({ - chainId, - ...variables, - block: { number: block.number }, - }) - }) - .catch(() => null) - - const pool1wP = getBlockHistoric({ - chainId, - weeksAgo: 1, - }) - .then(async (block) => { - return fetcher({ - chainId, - ...variables, - block: { number: block.number }, + .then(async (block) => { + return fetcher({ + chainId, + id, + block: { number: block.number }, + }) }) - }) - .catch(() => null) + .catch(() => null) + } + + const pool1dP = getPoolTimeAgo({ daysAgo: 1 }) + const pool2dP = getPoolTimeAgo({ daysAgo: 2 }) + const pool1wP = getPoolTimeAgo({ weeksAgo: 1 }) const [pool1dS, pool2dS, pool1wS] = await Promise.allSettled([ pool1dP, @@ -101,9 +105,68 @@ export async function getSushiHistoricPool({ pool1wP, ]) + const pool = v2pool || v3pool! const pool1d = isPromiseFulfilled(pool1dS) ? pool1dS.value : null const pool2d = isPromiseFulfilled(pool2dS) ? pool2dS.value : null const pool1w = isPromiseFulfilled(pool1wS) ? pool1wS.value : null - console.log(pool1d, pool2d, pool1w) + // TRANSFORM + const liquidityUSD1dChange = pool1d + ? pool.liquidityUSD / pool1d.liquidityUSD - 1 + : 0 + const liquidityUSD1wChange = pool1w + ? pool.liquidityUSD / pool1w.liquidityUSD - 1 + : 0 + + const volumeUSD1d = pool1d + ? Number(pool.volumeUSD) - Number(pool1d.volumeUSD) + : Number(pool.volumeUSD) + const volumeUSD2d = // Volume between 1d and 2d ago + pool1d && pool2d + ? Number(pool1d.volumeUSD) - Number(pool2d.volumeUSD) + : Number(pool.volumeUSD) + const volumeUSD1w = pool1w + ? Number(pool.volumeUSD) - Number(pool1w.volumeUSD) + : Number(pool.volumeUSD) + const volumeUSD1dChange = + pool1d && pool2d ? volumeUSD1d / volumeUSD2d - 1 : null + + const feesUSD1d = pool1d + ? Number(pool.feesUSD) - Number(pool1d.feesUSD) + : Number(pool.feesUSD) + const feesUSD2d = // Fees between 1d and 2d ago + pool1d && pool2d + ? Number(pool1d.feesUSD) - Number(pool2d.feesUSD) + : Number(pool.feesUSD) + const feesUSD1w = pool1w + ? Number(pool.feesUSD) - Number(pool1w.feesUSD) + : Number(pool.feesUSD) + const feesUSD1dChange = pool1d && pool2d ? feesUSD1d / feesUSD2d - 1 : null + + const txCount1d = pool1d + ? Number(pool.txCount) - Number(pool1d.txCount) + : Number(pool.txCount) + const txCount2d = // Tx count between 1d and 2d ago + pool1d && pool2d + ? Number(pool1d.txCount) - Number(pool2d.txCount) + : Number(pool.txCount) + const txCount1w = pool1w + ? Number(pool.txCount) - Number(pool1w.txCount) + : Number(pool.txCount) + const txCount1dChange = pool1d && pool2d ? txCount1d / txCount2d - 1 : null + + return { + ...pool, + liquidityUSD1dChange, + liquidityUSD1wChange, + volumeUSD1d, + volumeUSD1dChange, + volumeUSD1w, + feesUSD1d, + feesUSD1dChange, + feesUSD1w, + txCount1d, + txCount1dChange, + txCount1w, + } } diff --git a/packages/graph-client-new/src/subgraphs/.gitignore b/packages/graph-client-new/src/subgraphs/.gitignore index e69de29bb2..d65702598a 100644 --- a/packages/graph-client-new/src/subgraphs/.gitignore +++ b/packages/graph-client-new/src/subgraphs/.gitignore @@ -0,0 +1,2 @@ +*/*-env.d.ts +*/*-cache.d.ts \ No newline at end of file diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts index b10246771e..e359b18970 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -20,14 +20,10 @@ export const PoolFieldsFragment = graphql(` reserve0 reserve1 totalSupply - reserveUSD - reserveETH - trackedReserveETH + liquidityUSD: reserveUSD # token0Price # token1Price volumeUSD - volumeToken0 - volumeToken1 txCount } `) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts new file mode 100644 index 0000000000..6f7c93bb14 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts @@ -0,0 +1,80 @@ +import type { VariablesOf } from 'gql.tada' +import request from 'graphql-request' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' + +import { FetchError } from 'src/lib/fetch-error' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' +import { transformBucketsV2ToStd } from 'src/subgraphs/sushi-v2/transforms/bucket-v2-to-std' +import { transformPoolV2ToStd } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-std' +import type { SushiPoolV2, SushiPoolWithBuckets } from 'sushi/types' +import { PoolFieldsFragment } from '../fragments/pool-fields' +import { graphql } from '../graphql' + +export const SushiV2PoolBucketsQuery = graphql( + ` + query PoolBuckets($id: ID!, $id_Bytes: Bytes!, $block: Block_height, $hourDataFirst: Int = 168, $dayDataFirst: Int = 1000) { + pool: pair(id: $id, block: $block) { + ...PoolFields + + poolHourData: pairHourData(first: $hourDataFirst, orderBy: hourStartUnix, orderDirection: desc) { + id + date: hourStartUnix + liquidityUSD: reserveUSD + volumeUSD: hourlyVolumeUSD + txCount: hourlyTxns + } + } + + poolDayData: pairDayDatas(first: $dayDataFirst, orderBy: date, orderDirection: desc, where: { pairAddress: $id_Bytes }) { + id + date + liquidityUSD: reserveUSD + volumeUSD: dailyVolumeUSD + txCount: dailyTxns + } + } +`, + [PoolFieldsFragment], +) + +export type GetSushiV2PoolBuckets = Omit< + VariablesOf, + 'id_Bytes' +> & + ChainIdVariable + +export type SushiV2PoolBuckets = SushiPoolWithBuckets + +export async function getSushiV2PoolBuckets({ + chainId, + ...variables +}: GetSushiV2PoolBuckets): Promise { + const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` + + if (variables?.dayDataFirst || 0 > 1000) { + throw new Error( + 'dayDataFirst must be less than or equal to 1000, paging is not implemented', + ) + } + + const result = await request(url, SushiV2PoolBucketsQuery, { + ...variables, + id: variables.id.toLowerCase(), + id_Bytes: variables.id.toLowerCase() as Hex, + }) + + if (result.pool) { + return { + ...transformPoolV2ToStd(result.pool, chainId), + poolHourData: transformBucketsV2ToStd(result.pool.poolHourData), + poolDayData: transformBucketsV2ToStd(result.poolDayData), + } + } + + throw new FetchError( + chainId, + `Failed to fetch pool ${chainId}:${variables.id}`, + ) +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index bbaa409914..1907d4b03a 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -2,12 +2,11 @@ import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { SushiPoolV2 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' -import { addChainId } from 'src/lib/modifiers/add-chain-id' -import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' -import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import type { ChainIdVariable } from 'src/lib/types/chainId' +import { transformPoolV2ToStd } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-std' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -28,15 +27,13 @@ export type GetSushiV2Pool = VariablesOf & export async function getSushiV2Pool({ chainId, ...variables -}: GetSushiV2Pool) { +}: GetSushiV2Pool): Promise { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV2PoolQuery, variables) if (result.pool) { - return convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, result.pool)), - ) + return transformPoolV2ToStd(result.pool, chainId) } throw new FetchError( diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts new file mode 100644 index 0000000000..63e2e0eb80 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts @@ -0,0 +1,24 @@ +import type { ResultOf } from 'gql.tada' +import type { SushiV2PoolBucketsQuery } from 'src/subgraphs/sushi-v2/queries/pool-with-buckets' +import type { SushiPoolBucket } from 'sushi/types' + +type FetchedBucket = NonNullable< + ResultOf['pool'] +>['poolHourData'][number] + +export function transformBucketsV2ToStd( + buckets: FetchedBucket[], +): SushiPoolBucket[] { + return buckets.map(transformBucketV2ToStd) +} + +export function transformBucketV2ToStd(bucket: FetchedBucket): SushiPoolBucket { + return { + id: bucket.id, + date: Number(bucket.date), + liquidityUSD: Number(bucket.liquidityUSD), + volumeUSD: Number(bucket.volumeUSD), + feesUSD: Number(bucket.volumeUSD) * 0.003, + txCount: Number(bucket.txCount), + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts new file mode 100644 index 0000000000..16f00c17ee --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts @@ -0,0 +1,62 @@ +import type { ResultOf } from 'gql.tada' +import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v2/fragments/pool-fields' +import type { SushiSwapV2ChainId } from 'sushi/config' +import { getIdFromChainIdAddress } from 'sushi/format' +import { type SushiPoolV2, SushiSwapProtocol } from 'sushi/types' + +type ToPick = + | 'id' + | 'token0' + | 'token1' + | 'reserve0' + | 'reserve1' + | 'totalSupply' + | 'liquidityUSD' + | 'volumeUSD' + | 'txCount' + +type RequiredBase = Pick, ToPick> + +export function transformPoolV2ToStd( + pool: T, + chainId: SushiSwapV2ChainId, +): SushiPoolV2 { + return { + id: getIdFromChainIdAddress(chainId, pool.id), + address: pool.id, + chainId, + name: `${pool.token0.symbol}-${pool.token1.symbol}`, + + swapFee: 0.003, + twapEnabled: true, + + protocol: SushiSwapProtocol.SUSHISWAP_V2, + + reserve0: BigInt(pool.reserve0), + reserve1: BigInt(pool.reserve1), + liquidity: BigInt(pool.totalSupply), + liquidityUSD: Number(pool.liquidityUSD), + + volumeUSD: Number(pool.volumeUSD), + feesUSD: Number(pool.volumeUSD) * 0.003, + + token0: { + id: getIdFromChainIdAddress(chainId, pool.token0.id), + address: pool.token0.id, + chainId, + decimals: Number(pool.token0.decimals), + name: pool.token0.name, + symbol: pool.token0.symbol, + }, + token1: { + id: getIdFromChainIdAddress(chainId, pool.token1.id), + address: pool.token1.id, + chainId, + decimals: Number(pool.token1.decimals), + name: pool.token1.name, + symbol: pool.token1.symbol, + }, + + txCount: BigInt(pool.txCount), + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts deleted file mode 100644 index 9f14240e24..0000000000 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-v3.ts +++ /dev/null @@ -1,45 +0,0 @@ -import type { ResultOf } from 'gql.tada' -import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v2/fragments/pool-fields' -import { withoutScientificNotation } from 'sushi/format' - -type RequiredBase = Pick< - ResultOf, - | 'token0' - | 'token1' - | 'reserve0' - | 'reserve1' - | 'totalSupply' - | 'reserveETH' - | 'reserveUSD' - | 'volumeUSD' -> - -export function transformPoolV2ToV3(pool: T) { - return { - ...pool, - swapFee: 30, - twapEnabled: true, - reserve0: withoutScientificNotation( - (Number(pool.reserve0) * 10 ** Number(pool.token0.decimals)).toFixed(), - )! - .toString() - .split('.')[0], - reserve1: withoutScientificNotation( - (Number(pool.reserve1) * 10 ** Number(pool.token1.decimals)).toFixed(), - )! - .toString() - .split('.')[0], - name: `${pool.token0.symbol}-${pool.token1.symbol}`, - source: 'SUSHISWAP_V2', - liquidity: withoutScientificNotation( - (Number(pool.totalSupply) * 10 ** 18).toFixed(), - )! - .toString() - .split('.')[0], - liquidityUSD: pool.reserveUSD, - liquidityNative: pool.reserveETH, - apr: 0, - aprUpdatedAtTimestamp: 0, - feesUSD: Number(pool.volumeUSD) * 0.003, - } -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts new file mode 100644 index 0000000000..5cd943dbbd --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts @@ -0,0 +1,51 @@ +import { graphql } from '../graphql' + +export const PoolFieldsFragment = graphql(` + fragment PoolFields on Pool @_unmask { + id + token0 { + id + symbol + name + decimals + } + token1 { + id + symbol + name + decimals + } + + swapFee: feeTier + + liquidity + sqrtPrice + feeGrowthGlobal0X128 + feeGrowthGlobal1X128 + token0Price + token1Price + tick + observationIndex + + volumeToken0 + volumeToken1 + volumeUSD + untrackedVolumeUSD + + feesUSD + collectedFeesToken0 + collectedFeesToken1 + collectedFeesUSD + + reserve0: totalValueLockedToken0 + reserve1: totalValueLockedToken1 + liquidityUSD: totalValueLockedUSD + untrackedLiquidityUSD: totalValueLockedUSDUntracked + + liquidityProviderCount + txCount + + createdAtTimestamp + createdAtBlockNumber + } +`) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts index 7c3d0135ba..ca6c838f06 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts @@ -3,6 +3,7 @@ export * from './queries/collects' export * from './queries/day-datas' export * from './queries/factory' export * from './queries/mints' +export * from './queries/pool-with-buckets' export * from './queries/pool' export * from './queries/pools-by-token-pair' export * from './queries/swaps' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts new file mode 100644 index 0000000000..8b7c556806 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts @@ -0,0 +1,70 @@ +import type { VariablesOf } from 'gql.tada' +import request from 'graphql-request' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { SushiPoolV3, SushiPoolWithBuckets } from 'sushi/types' + +import { FetchError } from 'src/lib/fetch-error' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' +import { transformBucketsV3ToStd } from 'src/subgraphs/sushi-v3/transforms/bucket-v3-to-std' +import { transformPoolV3ToStd } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-std' +import { graphql } from '../graphql' + +export const SushiV3PoolBucketsQuery = graphql( + ` + query Pool($id: ID!, $block: Block_height, $hourDataFirst: Int = 168, $dayDataFirst: Int = 1000) { + pool(id: $id, block: $block) { + ...PoolFields + + poolHourData(first: $hourDataFirst, orderBy: periodStartUnix, orderDirection: desc) { + id + date: periodStartUnix + liquidityUSD: tvlUSD + volumeUSD + feesUSD + txCount + } + + poolDayData(first: $dayDataFirst, orderBy: date, orderDirection: desc) { + id + date + liquidityUSD: tvlUSD + volumeUSD + feesUSD + txCount + } + } + } +`, + [PoolFieldsFragment], +) + +export type GetSushiV3PoolBuckets = VariablesOf< + typeof SushiV3PoolBucketsQuery +> & + ChainIdVariable + +export type SushiV3PoolBuckets = SushiPoolWithBuckets + +export async function getSushiV3PoolBuckets({ + chainId, + ...variables +}: GetSushiV3PoolBuckets): Promise { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await request(url, SushiV3PoolBucketsQuery, variables) + + if (result.pool) { + return { + ...transformPoolV3ToStd(result.pool, chainId), + poolHourData: transformBucketsV3ToStd(result.pool.poolHourData), + poolDayData: transformBucketsV3ToStd(result.pool.poolDayData), + } + } + + throw new FetchError( + chainId, + `Failed to fetch pool ${chainId}:${variables.id}`, + ) +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index fc87593bd0..5b50c92a12 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -2,84 +2,40 @@ import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { SushiPoolV3 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' -import { addChainId } from 'src/lib/modifiers/add-chain-id' -import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' -import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import type { ChainIdVariable } from 'src/lib/types/chainId' -import type { Hex } from 'src/lib/types/hex' +import { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' +import { transformPoolV3ToStd } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-std' import { graphql } from '../graphql' -export const SushiV3PoolQuery = graphql(` +export const SushiV3PoolQuery = graphql( + ` query Pool($id: ID!, $block: Block_height) { pool(id: $id, block: $block) { - id - token0 { - id - symbol - name - decimals - } - token1 { - id - symbol - name - decimals - } - feeTier - liquidity - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - - createdAtTimestamp - createdAtBlockNumber - - poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) { - id - periodStartUnix - tvlUSD - volumeUSD - feesUSD - txCount - } - - poolDayData(first: 730, orderBy: date, orderDirection: desc) { - id - date - tvlUSD - volumeUSD - feesUSD - txCount - } + ...PoolFields } } -`) +`, + [PoolFieldsFragment], +) export type GetSushiV3Pool = VariablesOf & ChainIdVariable +export type SushiV3Pool = SushiPoolV3 + export async function getSushiV3Pool({ chainId, ...variables -}: GetSushiV3Pool) { +}: GetSushiV3Pool): Promise { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV3PoolQuery, variables) if (result.pool) { - return convertIdToMultichainId( - copyIdToAddress( - addChainId(chainId, result.pool as typeof result.pool & { id: Hex }), - ), - ) + return transformPoolV3ToStd(result.pool, chainId) } throw new FetchError( @@ -87,5 +43,3 @@ export async function getSushiV3Pool({ `Failed to fetch pool ${chainId}:${variables.id}`, ) } - -export type SushiV3Pool = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts new file mode 100644 index 0000000000..025051d0d9 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts @@ -0,0 +1,24 @@ +import type { ResultOf } from 'gql.tada' +import type { SushiV3PoolBucketsQuery } from 'src/subgraphs/sushi-v3/queries/pool-with-buckets' +import type { SushiPoolBucket } from 'sushi/types' + +type FetchedBucket = NonNullable< + ResultOf['pool'] +>['poolHourData'][number] + +export function transformBucketsV3ToStd( + buckets: FetchedBucket[], +): SushiPoolBucket[] { + return buckets.map(transformBucketV3ToStd) +} + +export function transformBucketV3ToStd(bucket: FetchedBucket): SushiPoolBucket { + return { + id: bucket.id, + date: Number(bucket.date), + liquidityUSD: Number(bucket.liquidityUSD), + volumeUSD: Number(bucket.volumeUSD), + feesUSD: Number(bucket.feesUSD), + txCount: Number(bucket.txCount), + } +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts new file mode 100644 index 0000000000..727effb1f5 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts @@ -0,0 +1,74 @@ +import type { ResultOf } from 'gql.tada' +import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { getIdFromChainIdAddress } from 'sushi/format' +import { type Address, type SushiPoolV3, SushiSwapProtocol } from 'sushi/types' + +type ToPick = + | 'id' + | 'token0' + | 'token1' + | 'reserve0' + | 'reserve1' + | 'liquidityUSD' + | 'volumeUSD' + | 'txCount' + | 'swapFee' + | 'liquidity' + | 'feeGrowthGlobal0X128' + | 'feeGrowthGlobal1X128' + | 'observationIndex' + | 'sqrtPrice' + | 'tick' + +type RequiredBase = Pick, ToPick> + +export function transformPoolV3ToStd( + pool: T, + chainId: SushiSwapV3ChainId, +): SushiPoolV3 { + return { + id: getIdFromChainIdAddress(chainId, pool.id as Address), + address: pool.id as Address, + chainId, + name: `${pool.token0.symbol}-${pool.token1.symbol}`, + + swapFee: Number(pool.swapFee) / 10000, + // twapEnabled: pool.twapEnabled, + + feeGrowthGlobal0X128: BigInt(pool.feeGrowthGlobal0X128), + feeGrowthGlobal1X128: BigInt(pool.feeGrowthGlobal1X128), + observationIndex: BigInt(pool.observationIndex), + sqrtPrice: BigInt(pool.sqrtPrice), + tick: BigInt(pool.tick), + + protocol: SushiSwapProtocol.SUSHISWAP_V3, + + reserve0: BigInt(pool.reserve0), + reserve1: BigInt(pool.reserve1), + liquidity: BigInt(pool.liquidity), + liquidityUSD: Number(pool.liquidityUSD), + + volumeUSD: Number(pool.volumeUSD), + feesUSD: Number(pool.volumeUSD) * 0.003, + + token0: { + id: getIdFromChainIdAddress(chainId, pool.token0.id as Address), + address: pool.token0.id as Address, + chainId, + decimals: Number(pool.token0.decimals), + name: pool.token0.name, + symbol: pool.token0.symbol, + }, + token1: { + id: getIdFromChainIdAddress(chainId, pool.token1.id as Address), + address: pool.token1.id as Address, + chainId, + decimals: Number(pool.token1.decimals), + name: pool.token1.name, + symbol: pool.token1.symbol, + }, + + txCount: BigInt(pool.txCount), + } +} diff --git a/packages/sushi/src/format/id.ts b/packages/sushi/src/format/id.ts index a3fb17ce3d..922a051b03 100644 --- a/packages/sushi/src/format/id.ts +++ b/packages/sushi/src/format/id.ts @@ -5,7 +5,7 @@ import { unsanitize } from './unsanitize.js' export const getIdFromChainIdAddress = ( chainId: string | number, address: Address, -) => `${chainId}:${address.toLowerCase()}` +) => `${chainId}:${address.toLowerCase()}` as `${string}:${Address}` export const getChainIdAddressFromId = (id: string) => { const [chainId, address] = unsanitize(id).split(':') as [string, Address] diff --git a/packages/sushi/src/types/address.ts b/packages/sushi/src/types/address.ts new file mode 100644 index 0000000000..816b1b8638 --- /dev/null +++ b/packages/sushi/src/types/address.ts @@ -0,0 +1 @@ +export type Address = `0x${string}` diff --git a/packages/sushi/src/types/id.ts b/packages/sushi/src/types/id.ts new file mode 100644 index 0000000000..35fa8e6bd7 --- /dev/null +++ b/packages/sushi/src/types/id.ts @@ -0,0 +1,3 @@ +import type { Address } from 'sushi/types' + +export type ID = `${string}:${Address}` diff --git a/packages/sushi/src/types/index.ts b/packages/sushi/src/types/index.ts index 2f9976adb5..a47f132a0c 100644 --- a/packages/sushi/src/types/index.ts +++ b/packages/sushi/src/types/index.ts @@ -1,2 +1,6 @@ -export type * from './contract.js' -export type * from './mutable.js' +export * from './sushi-pool/index' +export type * from './address' +export type * from './contract' +export type * from './id' +export type * from './mutable' +export type * from './token' diff --git a/packages/sushi/src/types/sushi-pool/buckets-with-pool.ts b/packages/sushi/src/types/sushi-pool/buckets-with-pool.ts new file mode 100644 index 0000000000..b1e8d76111 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/buckets-with-pool.ts @@ -0,0 +1,15 @@ +import type { SushiPoolBase } from 'sushi/types' + +export type SushiPoolBucket = { + id: string + date: number + liquidityUSD: number + volumeUSD: number + feesUSD: number + txCount: number +} + +export type SushiPoolWithBuckets = T & { + poolHourData: SushiPoolBucket[] + poolDayData: SushiPoolBucket[] +} diff --git a/packages/sushi/src/types/sushi-pool/index.ts b/packages/sushi/src/types/sushi-pool/index.ts new file mode 100644 index 0000000000..5f438d93d1 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/index.ts @@ -0,0 +1,6 @@ +export * from './buckets-with-pool' +export * from './sushi-pool-base' +export * from './sushi-pool-history' +export * from './sushi-pool-v2' +export * from './sushi-pool-v3' +export * from './protocol' diff --git a/packages/sushi/src/types/sushi-pool/protocol.ts b/packages/sushi/src/types/sushi-pool/protocol.ts new file mode 100644 index 0000000000..faa5ab8c12 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/protocol.ts @@ -0,0 +1,10 @@ +export const SushiSwapProtocol = { + SUSHISWAP_V2: 'SUSHISWAP_V2', + SUSHISWAP_V3: 'SUSHISWAP_V3', +} as const + +export type SushiSwapProtocol = + (typeof SushiSwapProtocol)[keyof typeof SushiSwapProtocol] + +export type SushiSwapV2Protocol = (typeof SushiSwapProtocol)['SUSHISWAP_V2'] +export type SushiSwapV3Protocol = (typeof SushiSwapProtocol)['SUSHISWAP_V3'] diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts new file mode 100644 index 0000000000..d1836c9207 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts @@ -0,0 +1,32 @@ +import type { ChainId } from 'sushi/chain' +import type { Address, ID, SushiSwapProtocol, Token } from 'sushi/types' + +export type SushiPoolBase = { + id: ID + address: Address + name: string + chainId: ChainId + + token0: Token + token1: Token + + swapFee: number + // twapEnabled: boolean + + reserve0: bigint + reserve1: bigint + liquidity: bigint + + liquidityUSD: number + + volumeUSD: number + + feesUSD: number + + // token0Price: bigint + // token1Price: bigint + + txCount: bigint + + protocol: SushiSwapProtocol +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts new file mode 100644 index 0000000000..60735c1756 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts @@ -0,0 +1,18 @@ +import { SushiPoolBase } from 'sushi/types' + +export type SushiPoolHistory = T & { + liquidityUSD1dChange: number + liquidityUSD1wChange: number + + volumeUSD1d: number + volumeUSD1dChange: number | null + volumeUSD1w: number + + feesUSD1d: number + feesUSD1dChange: number | null + feesUSD1w: number + + txCount1d: number + txCount1dChange: number | null + txCount1w: number +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts new file mode 100644 index 0000000000..44e7918ea9 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts @@ -0,0 +1,14 @@ +import type { SushiPoolBase } from 'sushi/types' +import { SushiSwapProtocol, SushiSwapV2Protocol } from 'sushi/types' +import type { SushiSwapV2ChainId } from '../../config/sushiswap-v2' + +export type SushiPoolV2 = Omit & { + chainId: SushiSwapV2ChainId + protocol: SushiSwapV2Protocol +} + +export function isSushiPoolV2( + pool: SushiPoolBase, +): pool is T { + return pool.protocol === SushiSwapProtocol.SUSHISWAP_V2 +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts new file mode 100644 index 0000000000..98c6b1a0f5 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts @@ -0,0 +1,25 @@ +import { + type SushiPoolBase, + SushiSwapProtocol, + type SushiSwapV3Protocol, +} from 'sushi/types' +import type { SushiSwapV3ChainId } from '../../config/sushiswap-v3' + +type Extension = { + sqrtPrice: bigint + tick: bigint + observationIndex: bigint + feeGrowthGlobal0X128: bigint + feeGrowthGlobal1X128: bigint +} + +export type SushiPoolV3 = Omit & { + chainId: SushiSwapV3ChainId + protocol: SushiSwapV3Protocol +} & Extension + +export function isSushiPoolV3( + pool: SushiPoolBase, +): pool is T { + return pool.protocol === SushiSwapProtocol.SUSHISWAP_V3 +} diff --git a/packages/sushi/src/types/token.ts b/packages/sushi/src/types/token.ts new file mode 100644 index 0000000000..9b5ff3b9b6 --- /dev/null +++ b/packages/sushi/src/types/token.ts @@ -0,0 +1,11 @@ +import type { ChainId } from 'sushi/chain' +import type { Address, ID } from 'sushi/types' + +export type Token = { + id: ID + address: Address + chainId: ChainId + name: string + symbol: string + decimals: number +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 0a3389d5e3..ec198ff3cd 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1565,6 +1565,9 @@ importers: prisma: specifier: 5.6.0 version: 5.6.0 + sushi: + specifier: workspace:* + version: link:../sushi typescript: specifier: 5.2.2 version: 5.2.2 @@ -1788,6 +1791,9 @@ importers: '@0no-co/graphqlsp': specifier: ^1.12.3 version: 1.12.3(graphql@16.6.0)(typescript@5.2.2) + '@sushiswap/database': + specifier: workspace:* + version: link:../database '@sushiswap/jest-config': specifier: workspace:* version: link:../../config/jest From 239cb0c2d59b00a2880ca36a47973657bb1c4ea7 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Thu, 30 May 2024 09:52:17 +0000 Subject: [PATCH 036/119] chore: format --- packages/database/package.json | 2 +- packages/graph-client-new/package.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/database/package.json b/packages/database/package.json index 4fc1a882b0..212f8694a8 100644 --- a/packages/database/package.json +++ b/packages/database/package.json @@ -58,7 +58,6 @@ }, "devDependencies": { "@sushiswap/jest-config": "workspace:*", - "sushi": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", "@types/jest": "29.5.5", @@ -66,6 +65,7 @@ "dotenv": "16.3.1", "jest": "29.7.0", "prisma": "5.6.0", + "sushi": "workspace:*", "typescript": "5.2.2" } } diff --git a/packages/graph-client-new/package.json b/packages/graph-client-new/package.json index 4cf846f963..de02c62de6 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client-new/package.json @@ -52,9 +52,9 @@ "dist/**" ], "scripts": { - "build:types": "rm -rf src/subgraphs/*/*.d.ts && gql.tada generate output && gql.tada turbo", - "build:compile": "tsc && tsc-alias -p tsconfig.json", "build": "pnpm build:types && pnpm build:compile", + "build:compile": "tsc && tsc-alias -p tsconfig.json", + "build:types": "rm -rf src/subgraphs/*/*.d.ts && gql.tada generate output && gql.tada turbo", "check": "tsc --pretty --noEmit", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "dev": "tsc --watch", @@ -77,8 +77,8 @@ }, "devDependencies": { "@0no-co/graphqlsp": "^1.12.3", - "@sushiswap/jest-config": "workspace:*", "@sushiswap/database": "workspace:*", + "@sushiswap/jest-config": "workspace:*", "@tsconfig/esm": "1.0.4", "@tsconfig/strictest": "2.0.2", "@types/json-bigint": "^1.0.4", From 94da6f4d56beac31d6296140993f33a80b3d598a Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Thu, 30 May 2024 15:37:32 +0200 Subject: [PATCH 037/119] fix: analytics bucket data, remove unused twap field, update furo token query --- apps/evm/src/lib/analytics/use-furo-tokens.ts | 2 +- apps/evm/src/lib/graph.ts | 57 ++++++++++++++++--- .../src/composite/sushi-day-datas.ts | 29 ++++++++-- .../sushi-v2/transforms/pool-v2-to-std.ts | 1 - 4 files changed, 75 insertions(+), 14 deletions(-) diff --git a/apps/evm/src/lib/analytics/use-furo-tokens.ts b/apps/evm/src/lib/analytics/use-furo-tokens.ts index e4421fbbeb..d0085a9e53 100644 --- a/apps/evm/src/lib/analytics/use-furo-tokens.ts +++ b/apps/evm/src/lib/analytics/use-furo-tokens.ts @@ -37,7 +37,7 @@ export function useFuroTokens(args: GetFuroTokenArgs) { const token = new Token({ chainId: furoToken.chainId, decimals: furoToken.decimals, - address: furoToken.id, + address: furoToken.id.split(':')[1], symbol: furoToken.symbol, name: furoToken.name, }) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index ca5d85968f..c93a6eddf3 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -104,17 +104,25 @@ export const getFuroTokens = async ( query: (typeof furoTokensSchema)['_output'], ) => { try { + const variables = + query?.tokenSymbols && query.tokenSymbols?.length > 0 + ? { + where: { + or: query.tokenSymbols.map((symbol) => ({ + symbol_contains_nocase: symbol, + })), + liquidityShares_gt: '0', + }, + } + : { + where: { + liquidityShares_gt: '0', + }, + } const { data: tokens } = await fetchMultichain({ chainIds: query.chainIds, fetch: _getFuroTokens, - variables: { - where: { - or: - query?.tokenSymbols?.map((symbol) => ({ - symbol_contains_nocase: symbol, - })) || [], - }, - }, + variables, }) return tokens @@ -123,6 +131,39 @@ export const getFuroTokens = async ( } } + +// export const getBentoBoxTokens = async ( +// query: (typeof bentoBoxTokensSchema)['_output'], +// ) => { +// try { +// const variables = +// query?.tokenSymbols && query.tokenSymbols?.length > 0 +// ? { +// where: { +// or: query.tokenSymbols.map((symbol) => ({ +// symbol_contains_nocase: symbol, +// })), +// liquidityShares_gt: '0', +// }, +// } +// : { +// where: { +// liquidityShares_gt: '0', +// }, +// } +// const { data: tokens } = await fetchMultichain({ +// chainIds: query.chainIds, +// fetch: _getBentoBoxTokens, +// variables, +// }) + +// return tokens +// } catch (error) { +// throw new Error(error as string) +// } +// } + + export const getCharts = async (query?: { networks: string }) => { const chainIds = query?.networks ? JSON.parse(query.networks) diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client-new/src/composite/sushi-day-datas.ts index 8f6330e150..af354cb444 100644 --- a/packages/graph-client-new/src/composite/sushi-day-datas.ts +++ b/packages/graph-client-new/src/composite/sushi-day-datas.ts @@ -1,7 +1,10 @@ import type { ChainIdsVariable } from 'src/lib/types/chainId' import { fetchMultichain } from 'src/multichain' import { getSushiV2DayDatas } from 'src/subgraphs/sushi-v2/queries/day-datas' -import { getSushiV3DayDatas } from 'src/subgraphs/sushi-v3/queries/day-datas' +import { + getSushiV3DayDatas, + type SushiV3DayDatas, +} from 'src/subgraphs/sushi-v3/queries/day-datas' import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, @@ -28,7 +31,9 @@ export async function getSushiDayDatas({ chainIds: sushiSwapV2ChainIds, fetch: getSushiV2DayDatas, variables: { - first: Infinity, + first: 1000, + orderBy: 'date', + orderDirection: 'desc', }, }) @@ -37,7 +42,9 @@ export async function getSushiDayDatas({ chainIds: sushiSwapV3ChainIds, fetch: getSushiV3DayDatas, variables: { - first: Infinity, + first: 1000, + orderBy: 'date', + orderDirection: 'desc', }, }) @@ -46,8 +53,22 @@ export async function getSushiDayDatas({ { data: sushiSwapV3DayDatas, errors: sushiSwapV3DayDatasErrors }, ] = await Promise.all([v2p, v3p]) - const data = sushiSwapV3DayDatas + const data: SushiV3DayDatas = [] + sushiSwapV3DayDatas.forEach((dayData) => { + if (Number(dayData.volumeUSD) > 1_000_000_000) return // Skip volume if it's too high, MEV txs on ethereum can cause this + data.push({ + id: dayData.id, + date: dayData.date, + volumeUSD: dayData.volumeUSD, + volumeUSDUntracked: dayData.volumeUSDUntracked, + volumeETH: dayData.volumeETH, + tvlUSD: dayData.tvlUSD, + txCount: dayData.txCount, + feesUSD: '0', + }) + }) sushiSwapV2DayDatas.forEach((dayData) => { + if (Number(dayData.dailyVolumeUSD) > 1_000_000_000) return // Skip volume if it's too high, MEV txs on ethereum can cause this data.push({ id: dayData.id, date: dayData.date, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts index 16f00c17ee..eb4d727d13 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts @@ -28,7 +28,6 @@ export function transformPoolV2ToStd( name: `${pool.token0.symbol}-${pool.token1.symbol}`, swapFee: 0.003, - twapEnabled: true, protocol: SushiSwapProtocol.SUSHISWAP_V2, From 0b3fedb708c3791cbbb6dd8a464152294f2bd56a Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Thu, 30 May 2024 17:03:42 +0200 Subject: [PATCH 038/119] feat: add bentobox to new graph-client, integrate analytics vault table --- .../analytics/vault/use-bentobox-tokens.ts | 2 +- apps/evm/src/lib/graph.ts | 63 +- apps/evm/src/lib/schema.ts | 5 +- .../scripts/update-schemas.ts | 1 + .../src/subgraphs/bentobox/graphql.ts | 8 + .../src/subgraphs/bentobox/index.ts | 1 + .../src/subgraphs/bentobox/queries/rebases.ts | 50 + .../src/subgraphs/bentobox/schema.graphql | 5692 +++++++++++++++++ packages/graph-client-new/tsconfig.json | 6 + 9 files changed, 5793 insertions(+), 35 deletions(-) create mode 100644 packages/graph-client-new/src/subgraphs/bentobox/graphql.ts create mode 100644 packages/graph-client-new/src/subgraphs/bentobox/index.ts create mode 100644 packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts create mode 100644 packages/graph-client-new/src/subgraphs/bentobox/schema.graphql diff --git a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts index dbe0eeaf49..c3931e9159 100644 --- a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts +++ b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts @@ -37,7 +37,7 @@ function useBentoBoxTokens(args: GetBentoBoxTokenArgs) { const token = new Token({ chainId: rebase.chainId, decimals: rebase.token.decimals, - address: rebase.id, + address: rebase.id.split(':')[1], symbol: rebase.token.symbol, name: rebase.token.name, }) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index c93a6eddf3..5eaaf57d3b 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -1,6 +1,7 @@ import { getCombinedUserPositions } from '@sushiswap/graph-client-new/composite/combined-user-positions' import { getSushiDayDatas } from '@sushiswap/graph-client-new/composite/sushi-day-datas' import { getFuroTokens as _getFuroTokens } from '@sushiswap/graph-client-new/furo' +import { getRebases as _getRebases } from '@sushiswap/graph-client-new/bentobox' import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' import { getSushiV2Pool, @@ -16,7 +17,7 @@ import { isSushiSwapV3ChainId, } from 'sushi/config' import { Address } from 'viem' -import { furoTokensSchema } from './schema' +import { bentoBoxTokensSchema, furoTokensSchema } from './schema' export async function getUser(args: { id?: Address @@ -131,38 +132,36 @@ export const getFuroTokens = async ( } } +export const getBentoBoxTokens = async ( + query: (typeof bentoBoxTokensSchema)['_output'], +) => { + try { + const variables = + query?.tokenSymbols && query.tokenSymbols?.length > 0 + ? { + where: { + or: query.tokenSymbols.map((symbol) => ({ + symbol_contains_nocase: symbol, + })), + base_gt: '0', + }, + } + : { + where: { + base_gt: '0', + }, + } + const { data: rebases } = await fetchMultichain({ + chainIds: query.chainIds, + fetch: _getRebases, + variables, + }) -// export const getBentoBoxTokens = async ( -// query: (typeof bentoBoxTokensSchema)['_output'], -// ) => { -// try { -// const variables = -// query?.tokenSymbols && query.tokenSymbols?.length > 0 -// ? { -// where: { -// or: query.tokenSymbols.map((symbol) => ({ -// symbol_contains_nocase: symbol, -// })), -// liquidityShares_gt: '0', -// }, -// } -// : { -// where: { -// liquidityShares_gt: '0', -// }, -// } -// const { data: tokens } = await fetchMultichain({ -// chainIds: query.chainIds, -// fetch: _getBentoBoxTokens, -// variables, -// }) - -// return tokens -// } catch (error) { -// throw new Error(error as string) -// } -// } - + return rebases + } catch (error) { + throw new Error(error as string) + } +} export const getCharts = async (query?: { networks: string }) => { const chainIds = query?.networks diff --git a/apps/evm/src/lib/schema.ts b/apps/evm/src/lib/schema.ts index 20dc0c3c66..925727945f 100644 --- a/apps/evm/src/lib/schema.ts +++ b/apps/evm/src/lib/schema.ts @@ -3,7 +3,7 @@ import { isFuroChainId, } from 'node_modules/sushi/dist/config/furo' import { ChainId } from 'sushi/chain' -import { BENTOBOX_SUPPORTED_CHAIN_IDS } from 'sushi/config' +import { BENTOBOX_SUPPORTED_CHAIN_IDS, isBentoBoxChainId } from 'sushi/config' import { z } from 'zod' export const bentoBoxTokensSchema = z.object({ @@ -15,7 +15,8 @@ export const bentoBoxTokensSchema = z.object({ .string() .optional() .default(BENTOBOX_SUPPORTED_CHAIN_IDS.join(',')) - .transform((val) => val.split(',').map((v) => parseInt(v))), + .transform((val) => val.split(',').map((v) => parseInt(v) as ChainId)) + .transform((chainIds) => chainIds.filter(isBentoBoxChainId)), }) export const furoTokensSchema = z.object({ diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client-new/scripts/update-schemas.ts index a36e12de6b..3422325d5c 100644 --- a/packages/graph-client-new/scripts/update-schemas.ts +++ b/packages/graph-client-new/scripts/update-schemas.ts @@ -6,6 +6,7 @@ import fs from 'fs' const schemas = { blocks: 'api.studio.thegraph.com/query/72545/ethereum-blocks/v0.0.2', bonds: BONDS_SUBGRAPH_URL[1], + bentobox: 'api.studio.thegraph.com/query/32073/bentobox-ethereum/v0.0.1', furo: 'api.studio.thegraph.com/query/32073/furo-ethereum/v0.0.1', 'master-chef-v1': 'api.studio.thegraph.com/query/32073/masterchef/v0.0.1', 'master-chef-v2': 'api.studio.thegraph.com/query/32073/master-chefv2/v0.0.1', diff --git a/packages/graph-client-new/src/subgraphs/bentobox/graphql.ts b/packages/graph-client-new/src/subgraphs/bentobox/graphql.ts new file mode 100644 index 0000000000..b275886979 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bentobox/graphql.ts @@ -0,0 +1,8 @@ +import { initGraphQLTada } from 'gql.tada' +import type { Scalars } from 'src/lib/types/scalars.js' +import type { introspection } from './bentobox-env.js' + +export const graphql = initGraphQLTada<{ + introspection: introspection + scalars: Scalars +}>() diff --git a/packages/graph-client-new/src/subgraphs/bentobox/index.ts b/packages/graph-client-new/src/subgraphs/bentobox/index.ts new file mode 100644 index 0000000000..396f75a623 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bentobox/index.ts @@ -0,0 +1 @@ +export * from './queries/rebases' diff --git a/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts b/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts new file mode 100644 index 0000000000..3f67e17a93 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts @@ -0,0 +1,50 @@ +import type { VariablesOf } from 'gql.tada' +import type { BentoBoxChainId } from 'sushi/config' +import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' + +import { addChainId } from 'src/lib/modifiers/add-chain-id' +import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' +import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import type { Hex } from 'src/lib/types/hex' +import { graphql } from '../graphql' + +export const BentoBoxRebasesQuery = graphql(` + query Rebases($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Rebase_orderBy, $orderDirection: OrderDirection, $where: Rebase_filter) { + rebases(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + id + token { + symbol + name + decimals + } + base + elastic + } + } +`) + +export type GetRebases = VariablesOf & + ChainIdVariable + +export async function getRebases({ chainId, ...variables }: GetRebases) { + const url = `https://${BENTOBOX_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: BentoBoxRebasesQuery, + variables, + }) + + return result.rebases.map((rebase) => + convertIdToMultichainId( + copyIdToAddress( + addChainId(chainId, rebase as typeof rebase & { id: Hex }), + ), + ), + ) +} + +export type BentoBoxRebases = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/bentobox/schema.graphql b/packages/graph-client-new/src/subgraphs/bentobox/schema.graphql new file mode 100644 index 0000000000..6cd26e044c --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/bentobox/schema.graphql @@ -0,0 +1,5692 @@ +""" +Marks the GraphQL type as indexable entity. Each type that should be an entity is required to be annotated with this directive. +""" +directive @entity on OBJECT + +"""Defined a Subgraph ID for an object type""" +directive @subgraphId(id: String!) on OBJECT + +""" +creates a virtual field on the entity that may be queried but cannot be set manually through the mappings API. +""" +directive @derivedFrom(field: String!) on FIELD_DEFINITION + +enum Aggregation_interval { + hour + day +} + +type Balance { + id: ID! + token: Token! + user: User! + share: BigInt! +} + +input Balance_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + user: String + user_not: String + user_gt: String + user_lt: String + user_gte: String + user_lte: String + user_in: [String!] + user_not_in: [String!] + user_contains: String + user_contains_nocase: String + user_not_contains: String + user_not_contains_nocase: String + user_starts_with: String + user_starts_with_nocase: String + user_not_starts_with: String + user_not_starts_with_nocase: String + user_ends_with: String + user_ends_with_nocase: String + user_not_ends_with: String + user_not_ends_with_nocase: String + user_: User_filter + share: BigInt + share_not: BigInt + share_gt: BigInt + share_lt: BigInt + share_gte: BigInt + share_lte: BigInt + share_in: [BigInt!] + share_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Balance_filter] + or: [Balance_filter] +} + +enum Balance_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + user + user__id + user__block + user__timestamp + share +} + +type BentoBox { + """ BentoBox address """ + id: ID! + + """ Protocols that belong to this bento box """ + protocols(skip: Int = 0, first: Int = 100, orderBy: Protocol_orderBy, orderDirection: OrderDirection, where: Protocol_filter): [Protocol!] + + """ Users that belong to this bento box """ + users(skip: Int = 0, first: Int = 100, orderBy: User_orderBy, orderDirection: OrderDirection, where: User_filter): [User!] + + """ Tokens that belong to this bento box """ + tokens(skip: Int = 0, first: Int = 100, orderBy: Token_orderBy, orderDirection: OrderDirection, where: Token_filter): [Token!] + + """ Master contracts that belong to this bento box """ + masterContracts(skip: Int = 0, first: Int = 100, orderBy: MasterContract_orderBy, orderDirection: OrderDirection, where: MasterContract_filter): [MasterContract!]! + + """ Clones that belong to this bento box """ + clones(skip: Int = 0, first: Int = 100, orderBy: Clone_orderBy, orderDirection: OrderDirection, where: Clone_filter): [Clone!] + + """ Flash loans that belong to this bento box """ + flashloans(skip: Int = 0, first: Int = 100, orderBy: FlashLoan_orderBy, orderDirection: OrderDirection, where: FlashLoan_filter): [FlashLoan!] + + """ Transactions that belong to this bento box """ + transactions(skip: Int = 0, first: Int = 100, orderBy: Transaction_orderBy, orderDirection: OrderDirection, where: Transaction_filter): [Transaction!] + + """ Totals that belong to this bento box """ + totals(skip: Int = 0, first: Int = 100, orderBy: Rebase_orderBy, orderDirection: OrderDirection, where: Rebase_filter): [Rebase!] +} + +type BentoBoxDailyKpi { + """ created by id, infix '-day-' and unix timestamp, e.g. '0x00..00-day-1657270000' + """ + id: ID! + + """ Start date """ + date: Int! + + """ Deposit count """ + depositCount: BigInt! + + """ Deposit count for the given timeframe """ + newDepositCount: BigInt! + + """ Withdraw count """ + withdrawCount: BigInt! + + """ Withdraw count for the given timeframe """ + newWithdrawCount: BigInt! + + """ Transfer count """ + transferCount: BigInt! + + """ Transfer count for the given timeframe """ + newTransferCount: BigInt! + + """ Protocol count """ + protocolCount: BigInt! + + """ Protocol count for the given timeframe """ + newProtocolCount: BigInt! + + """ User count """ + userCount: BigInt! + + """ User count for the given timeframe """ + newUserCount: BigInt! + + """ Token count """ + tokenCount: BigInt! + + """ Token count for the given timeframe """ + newTokenCount: BigInt! + + """ Master contract count """ + masterContractCount: BigInt! + + """ Master contract count for the given timeframe """ + newMasterContractCount: BigInt! + + """ Clone count """ + cloneCount: BigInt! + + """ Clone count for the given timeframe """ + newCloneCount: BigInt! + + """ Flash loan count """ + flashloanCount: BigInt! + + """ Flash loan count for the given timeframe """ + newFlashloanCount: BigInt! + + """ Transaction count """ + transactionCount: BigInt! + + """ Transaction count for the given timeframe """ + newTransactionCount: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Strategy for the given timeframe """ + newStrategyCount: BigInt! + + """ Active strategy count """ + activeStrategyCount: BigInt! + + """ Active strategy count for the given timeframe """ + newActiveStrategyCount: BigInt! + + """ Pending strategy count """ + pendingStrategyCount: BigInt! + + """ Pending strategy count for the given timeframe """ + newPendingStrategyCount: BigInt! +} + +input BentoBoxDailyKpi_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!] + depositCount: BigInt + depositCount_not: BigInt + depositCount_gt: BigInt + depositCount_lt: BigInt + depositCount_gte: BigInt + depositCount_lte: BigInt + depositCount_in: [BigInt!] + depositCount_not_in: [BigInt!] + newDepositCount: BigInt + newDepositCount_not: BigInt + newDepositCount_gt: BigInt + newDepositCount_lt: BigInt + newDepositCount_gte: BigInt + newDepositCount_lte: BigInt + newDepositCount_in: [BigInt!] + newDepositCount_not_in: [BigInt!] + withdrawCount: BigInt + withdrawCount_not: BigInt + withdrawCount_gt: BigInt + withdrawCount_lt: BigInt + withdrawCount_gte: BigInt + withdrawCount_lte: BigInt + withdrawCount_in: [BigInt!] + withdrawCount_not_in: [BigInt!] + newWithdrawCount: BigInt + newWithdrawCount_not: BigInt + newWithdrawCount_gt: BigInt + newWithdrawCount_lt: BigInt + newWithdrawCount_gte: BigInt + newWithdrawCount_lte: BigInt + newWithdrawCount_in: [BigInt!] + newWithdrawCount_not_in: [BigInt!] + transferCount: BigInt + transferCount_not: BigInt + transferCount_gt: BigInt + transferCount_lt: BigInt + transferCount_gte: BigInt + transferCount_lte: BigInt + transferCount_in: [BigInt!] + transferCount_not_in: [BigInt!] + newTransferCount: BigInt + newTransferCount_not: BigInt + newTransferCount_gt: BigInt + newTransferCount_lt: BigInt + newTransferCount_gte: BigInt + newTransferCount_lte: BigInt + newTransferCount_in: [BigInt!] + newTransferCount_not_in: [BigInt!] + protocolCount: BigInt + protocolCount_not: BigInt + protocolCount_gt: BigInt + protocolCount_lt: BigInt + protocolCount_gte: BigInt + protocolCount_lte: BigInt + protocolCount_in: [BigInt!] + protocolCount_not_in: [BigInt!] + newProtocolCount: BigInt + newProtocolCount_not: BigInt + newProtocolCount_gt: BigInt + newProtocolCount_lt: BigInt + newProtocolCount_gte: BigInt + newProtocolCount_lte: BigInt + newProtocolCount_in: [BigInt!] + newProtocolCount_not_in: [BigInt!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + newUserCount: BigInt + newUserCount_not: BigInt + newUserCount_gt: BigInt + newUserCount_lt: BigInt + newUserCount_gte: BigInt + newUserCount_lte: BigInt + newUserCount_in: [BigInt!] + newUserCount_not_in: [BigInt!] + tokenCount: BigInt + tokenCount_not: BigInt + tokenCount_gt: BigInt + tokenCount_lt: BigInt + tokenCount_gte: BigInt + tokenCount_lte: BigInt + tokenCount_in: [BigInt!] + tokenCount_not_in: [BigInt!] + newTokenCount: BigInt + newTokenCount_not: BigInt + newTokenCount_gt: BigInt + newTokenCount_lt: BigInt + newTokenCount_gte: BigInt + newTokenCount_lte: BigInt + newTokenCount_in: [BigInt!] + newTokenCount_not_in: [BigInt!] + masterContractCount: BigInt + masterContractCount_not: BigInt + masterContractCount_gt: BigInt + masterContractCount_lt: BigInt + masterContractCount_gte: BigInt + masterContractCount_lte: BigInt + masterContractCount_in: [BigInt!] + masterContractCount_not_in: [BigInt!] + newMasterContractCount: BigInt + newMasterContractCount_not: BigInt + newMasterContractCount_gt: BigInt + newMasterContractCount_lt: BigInt + newMasterContractCount_gte: BigInt + newMasterContractCount_lte: BigInt + newMasterContractCount_in: [BigInt!] + newMasterContractCount_not_in: [BigInt!] + cloneCount: BigInt + cloneCount_not: BigInt + cloneCount_gt: BigInt + cloneCount_lt: BigInt + cloneCount_gte: BigInt + cloneCount_lte: BigInt + cloneCount_in: [BigInt!] + cloneCount_not_in: [BigInt!] + newCloneCount: BigInt + newCloneCount_not: BigInt + newCloneCount_gt: BigInt + newCloneCount_lt: BigInt + newCloneCount_gte: BigInt + newCloneCount_lte: BigInt + newCloneCount_in: [BigInt!] + newCloneCount_not_in: [BigInt!] + flashloanCount: BigInt + flashloanCount_not: BigInt + flashloanCount_gt: BigInt + flashloanCount_lt: BigInt + flashloanCount_gte: BigInt + flashloanCount_lte: BigInt + flashloanCount_in: [BigInt!] + flashloanCount_not_in: [BigInt!] + newFlashloanCount: BigInt + newFlashloanCount_not: BigInt + newFlashloanCount_gt: BigInt + newFlashloanCount_lt: BigInt + newFlashloanCount_gte: BigInt + newFlashloanCount_lte: BigInt + newFlashloanCount_in: [BigInt!] + newFlashloanCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + newTransactionCount: BigInt + newTransactionCount_not: BigInt + newTransactionCount_gt: BigInt + newTransactionCount_lt: BigInt + newTransactionCount_gte: BigInt + newTransactionCount_lte: BigInt + newTransactionCount_in: [BigInt!] + newTransactionCount_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + newStrategyCount: BigInt + newStrategyCount_not: BigInt + newStrategyCount_gt: BigInt + newStrategyCount_lt: BigInt + newStrategyCount_gte: BigInt + newStrategyCount_lte: BigInt + newStrategyCount_in: [BigInt!] + newStrategyCount_not_in: [BigInt!] + activeStrategyCount: BigInt + activeStrategyCount_not: BigInt + activeStrategyCount_gt: BigInt + activeStrategyCount_lt: BigInt + activeStrategyCount_gte: BigInt + activeStrategyCount_lte: BigInt + activeStrategyCount_in: [BigInt!] + activeStrategyCount_not_in: [BigInt!] + newActiveStrategyCount: BigInt + newActiveStrategyCount_not: BigInt + newActiveStrategyCount_gt: BigInt + newActiveStrategyCount_lt: BigInt + newActiveStrategyCount_gte: BigInt + newActiveStrategyCount_lte: BigInt + newActiveStrategyCount_in: [BigInt!] + newActiveStrategyCount_not_in: [BigInt!] + pendingStrategyCount: BigInt + pendingStrategyCount_not: BigInt + pendingStrategyCount_gt: BigInt + pendingStrategyCount_lt: BigInt + pendingStrategyCount_gte: BigInt + pendingStrategyCount_lte: BigInt + pendingStrategyCount_in: [BigInt!] + pendingStrategyCount_not_in: [BigInt!] + newPendingStrategyCount: BigInt + newPendingStrategyCount_not: BigInt + newPendingStrategyCount_gt: BigInt + newPendingStrategyCount_lt: BigInt + newPendingStrategyCount_gte: BigInt + newPendingStrategyCount_lte: BigInt + newPendingStrategyCount_in: [BigInt!] + newPendingStrategyCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BentoBoxDailyKpi_filter] + or: [BentoBoxDailyKpi_filter] +} + +enum BentoBoxDailyKpi_orderBy { + id + date + depositCount + newDepositCount + withdrawCount + newWithdrawCount + transferCount + newTransferCount + protocolCount + newProtocolCount + userCount + newUserCount + tokenCount + newTokenCount + masterContractCount + newMasterContractCount + cloneCount + newCloneCount + flashloanCount + newFlashloanCount + transactionCount + newTransactionCount + strategyCount + newStrategyCount + activeStrategyCount + newActiveStrategyCount + pendingStrategyCount + newPendingStrategyCount +} + +type BentoBoxHourlyKpi { + """ created by a prefix 'bentobox-hour-' and unix timestamp, e.g. 'bentobox-hour-1657270000' + """ + id: ID! + + """ Start date """ + date: Int! + + """ Deposit count """ + depositCount: BigInt! + + """ Deposit count for the given timeframe """ + newDepositCount: BigInt! + + """ Withdraw count """ + withdrawCount: BigInt! + + """ Withdraw count for the given timeframe """ + newWithdrawCount: BigInt! + + """ Transfer count """ + transferCount: BigInt! + + """ Transfer count for the given timeframe """ + newTransferCount: BigInt! + + """ Protocol count """ + protocolCount: BigInt! + + """ Protocol count for the given timeframe """ + newProtocolCount: BigInt! + + """ User count """ + userCount: BigInt! + + """ User count for the given timeframe """ + newUserCount: BigInt! + + """ Token count """ + tokenCount: BigInt! + + """ Token count for the given timeframe """ + newTokenCount: BigInt! + + """ Master contract count """ + masterContractCount: BigInt! + + """ Master contract count for the given timeframe """ + newMasterContractCount: BigInt! + + """ Clone count """ + cloneCount: BigInt! + + """ Clone count for the given timeframe """ + newCloneCount: BigInt! + + """ Flash loan count """ + flashloanCount: BigInt! + + """ Flash loan count for the given timeframe """ + newFlashloanCount: BigInt! + + """ Transaction count """ + transactionCount: BigInt! + + """ Transaction count for the given timeframe """ + newTransactionCount: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Strategy for the given timeframe """ + newStrategyCount: BigInt! + + """ Active strategy count """ + activeStrategyCount: BigInt! + + """ Active strategy count given timeframe """ + newActiveStrategyCount: BigInt! + + """ Pending strategy count """ + pendingStrategyCount: BigInt! + + """ Pending strategy count given timeframe """ + newPendingStrategyCount: BigInt! +} + +input BentoBoxHourlyKpi_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!] + depositCount: BigInt + depositCount_not: BigInt + depositCount_gt: BigInt + depositCount_lt: BigInt + depositCount_gte: BigInt + depositCount_lte: BigInt + depositCount_in: [BigInt!] + depositCount_not_in: [BigInt!] + newDepositCount: BigInt + newDepositCount_not: BigInt + newDepositCount_gt: BigInt + newDepositCount_lt: BigInt + newDepositCount_gte: BigInt + newDepositCount_lte: BigInt + newDepositCount_in: [BigInt!] + newDepositCount_not_in: [BigInt!] + withdrawCount: BigInt + withdrawCount_not: BigInt + withdrawCount_gt: BigInt + withdrawCount_lt: BigInt + withdrawCount_gte: BigInt + withdrawCount_lte: BigInt + withdrawCount_in: [BigInt!] + withdrawCount_not_in: [BigInt!] + newWithdrawCount: BigInt + newWithdrawCount_not: BigInt + newWithdrawCount_gt: BigInt + newWithdrawCount_lt: BigInt + newWithdrawCount_gte: BigInt + newWithdrawCount_lte: BigInt + newWithdrawCount_in: [BigInt!] + newWithdrawCount_not_in: [BigInt!] + transferCount: BigInt + transferCount_not: BigInt + transferCount_gt: BigInt + transferCount_lt: BigInt + transferCount_gte: BigInt + transferCount_lte: BigInt + transferCount_in: [BigInt!] + transferCount_not_in: [BigInt!] + newTransferCount: BigInt + newTransferCount_not: BigInt + newTransferCount_gt: BigInt + newTransferCount_lt: BigInt + newTransferCount_gte: BigInt + newTransferCount_lte: BigInt + newTransferCount_in: [BigInt!] + newTransferCount_not_in: [BigInt!] + protocolCount: BigInt + protocolCount_not: BigInt + protocolCount_gt: BigInt + protocolCount_lt: BigInt + protocolCount_gte: BigInt + protocolCount_lte: BigInt + protocolCount_in: [BigInt!] + protocolCount_not_in: [BigInt!] + newProtocolCount: BigInt + newProtocolCount_not: BigInt + newProtocolCount_gt: BigInt + newProtocolCount_lt: BigInt + newProtocolCount_gte: BigInt + newProtocolCount_lte: BigInt + newProtocolCount_in: [BigInt!] + newProtocolCount_not_in: [BigInt!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + newUserCount: BigInt + newUserCount_not: BigInt + newUserCount_gt: BigInt + newUserCount_lt: BigInt + newUserCount_gte: BigInt + newUserCount_lte: BigInt + newUserCount_in: [BigInt!] + newUserCount_not_in: [BigInt!] + tokenCount: BigInt + tokenCount_not: BigInt + tokenCount_gt: BigInt + tokenCount_lt: BigInt + tokenCount_gte: BigInt + tokenCount_lte: BigInt + tokenCount_in: [BigInt!] + tokenCount_not_in: [BigInt!] + newTokenCount: BigInt + newTokenCount_not: BigInt + newTokenCount_gt: BigInt + newTokenCount_lt: BigInt + newTokenCount_gte: BigInt + newTokenCount_lte: BigInt + newTokenCount_in: [BigInt!] + newTokenCount_not_in: [BigInt!] + masterContractCount: BigInt + masterContractCount_not: BigInt + masterContractCount_gt: BigInt + masterContractCount_lt: BigInt + masterContractCount_gte: BigInt + masterContractCount_lte: BigInt + masterContractCount_in: [BigInt!] + masterContractCount_not_in: [BigInt!] + newMasterContractCount: BigInt + newMasterContractCount_not: BigInt + newMasterContractCount_gt: BigInt + newMasterContractCount_lt: BigInt + newMasterContractCount_gte: BigInt + newMasterContractCount_lte: BigInt + newMasterContractCount_in: [BigInt!] + newMasterContractCount_not_in: [BigInt!] + cloneCount: BigInt + cloneCount_not: BigInt + cloneCount_gt: BigInt + cloneCount_lt: BigInt + cloneCount_gte: BigInt + cloneCount_lte: BigInt + cloneCount_in: [BigInt!] + cloneCount_not_in: [BigInt!] + newCloneCount: BigInt + newCloneCount_not: BigInt + newCloneCount_gt: BigInt + newCloneCount_lt: BigInt + newCloneCount_gte: BigInt + newCloneCount_lte: BigInt + newCloneCount_in: [BigInt!] + newCloneCount_not_in: [BigInt!] + flashloanCount: BigInt + flashloanCount_not: BigInt + flashloanCount_gt: BigInt + flashloanCount_lt: BigInt + flashloanCount_gte: BigInt + flashloanCount_lte: BigInt + flashloanCount_in: [BigInt!] + flashloanCount_not_in: [BigInt!] + newFlashloanCount: BigInt + newFlashloanCount_not: BigInt + newFlashloanCount_gt: BigInt + newFlashloanCount_lt: BigInt + newFlashloanCount_gte: BigInt + newFlashloanCount_lte: BigInt + newFlashloanCount_in: [BigInt!] + newFlashloanCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + newTransactionCount: BigInt + newTransactionCount_not: BigInt + newTransactionCount_gt: BigInt + newTransactionCount_lt: BigInt + newTransactionCount_gte: BigInt + newTransactionCount_lte: BigInt + newTransactionCount_in: [BigInt!] + newTransactionCount_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + newStrategyCount: BigInt + newStrategyCount_not: BigInt + newStrategyCount_gt: BigInt + newStrategyCount_lt: BigInt + newStrategyCount_gte: BigInt + newStrategyCount_lte: BigInt + newStrategyCount_in: [BigInt!] + newStrategyCount_not_in: [BigInt!] + activeStrategyCount: BigInt + activeStrategyCount_not: BigInt + activeStrategyCount_gt: BigInt + activeStrategyCount_lt: BigInt + activeStrategyCount_gte: BigInt + activeStrategyCount_lte: BigInt + activeStrategyCount_in: [BigInt!] + activeStrategyCount_not_in: [BigInt!] + newActiveStrategyCount: BigInt + newActiveStrategyCount_not: BigInt + newActiveStrategyCount_gt: BigInt + newActiveStrategyCount_lt: BigInt + newActiveStrategyCount_gte: BigInt + newActiveStrategyCount_lte: BigInt + newActiveStrategyCount_in: [BigInt!] + newActiveStrategyCount_not_in: [BigInt!] + pendingStrategyCount: BigInt + pendingStrategyCount_not: BigInt + pendingStrategyCount_gt: BigInt + pendingStrategyCount_lt: BigInt + pendingStrategyCount_gte: BigInt + pendingStrategyCount_lte: BigInt + pendingStrategyCount_in: [BigInt!] + pendingStrategyCount_not_in: [BigInt!] + newPendingStrategyCount: BigInt + newPendingStrategyCount_not: BigInt + newPendingStrategyCount_gt: BigInt + newPendingStrategyCount_lt: BigInt + newPendingStrategyCount_gte: BigInt + newPendingStrategyCount_lte: BigInt + newPendingStrategyCount_in: [BigInt!] + newPendingStrategyCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BentoBoxHourlyKpi_filter] + or: [BentoBoxHourlyKpi_filter] +} + +enum BentoBoxHourlyKpi_orderBy { + id + date + depositCount + newDepositCount + withdrawCount + newWithdrawCount + transferCount + newTransferCount + protocolCount + newProtocolCount + userCount + newUserCount + tokenCount + newTokenCount + masterContractCount + newMasterContractCount + cloneCount + newCloneCount + flashloanCount + newFlashloanCount + transactionCount + newTransactionCount + strategyCount + newStrategyCount + activeStrategyCount + newActiveStrategyCount + pendingStrategyCount + newPendingStrategyCount +} + +type BentoBoxKpi { + """ BentoBox address """ + id: ID! + + """ Deposit count """ + depositCount: BigInt! + + """ Withdraw count """ + withdrawCount: BigInt! + + """ Transfer count """ + transferCount: BigInt! + + """ Protocol count """ + protocolCount: BigInt! + + """ User count """ + userCount: BigInt! + + """ Token count """ + tokenCount: BigInt! + + """ Master contract count """ + masterContractCount: BigInt! + + """ Clone count """ + cloneCount: BigInt! + + """ Flash loan count """ + flashloanCount: BigInt! + + """ Transaction count """ + transactionCount: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Active strategy count """ + activeStrategyCount: BigInt! + + """ Pending strategy count """ + pendingStrategyCount: BigInt! +} + +input BentoBoxKpi_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!] + depositCount: BigInt + depositCount_not: BigInt + depositCount_gt: BigInt + depositCount_lt: BigInt + depositCount_gte: BigInt + depositCount_lte: BigInt + depositCount_in: [BigInt!] + depositCount_not_in: [BigInt!] + withdrawCount: BigInt + withdrawCount_not: BigInt + withdrawCount_gt: BigInt + withdrawCount_lt: BigInt + withdrawCount_gte: BigInt + withdrawCount_lte: BigInt + withdrawCount_in: [BigInt!] + withdrawCount_not_in: [BigInt!] + transferCount: BigInt + transferCount_not: BigInt + transferCount_gt: BigInt + transferCount_lt: BigInt + transferCount_gte: BigInt + transferCount_lte: BigInt + transferCount_in: [BigInt!] + transferCount_not_in: [BigInt!] + protocolCount: BigInt + protocolCount_not: BigInt + protocolCount_gt: BigInt + protocolCount_lt: BigInt + protocolCount_gte: BigInt + protocolCount_lte: BigInt + protocolCount_in: [BigInt!] + protocolCount_not_in: [BigInt!] + userCount: BigInt + userCount_not: BigInt + userCount_gt: BigInt + userCount_lt: BigInt + userCount_gte: BigInt + userCount_lte: BigInt + userCount_in: [BigInt!] + userCount_not_in: [BigInt!] + tokenCount: BigInt + tokenCount_not: BigInt + tokenCount_gt: BigInt + tokenCount_lt: BigInt + tokenCount_gte: BigInt + tokenCount_lte: BigInt + tokenCount_in: [BigInt!] + tokenCount_not_in: [BigInt!] + masterContractCount: BigInt + masterContractCount_not: BigInt + masterContractCount_gt: BigInt + masterContractCount_lt: BigInt + masterContractCount_gte: BigInt + masterContractCount_lte: BigInt + masterContractCount_in: [BigInt!] + masterContractCount_not_in: [BigInt!] + cloneCount: BigInt + cloneCount_not: BigInt + cloneCount_gt: BigInt + cloneCount_lt: BigInt + cloneCount_gte: BigInt + cloneCount_lte: BigInt + cloneCount_in: [BigInt!] + cloneCount_not_in: [BigInt!] + flashloanCount: BigInt + flashloanCount_not: BigInt + flashloanCount_gt: BigInt + flashloanCount_lt: BigInt + flashloanCount_gte: BigInt + flashloanCount_lte: BigInt + flashloanCount_in: [BigInt!] + flashloanCount_not_in: [BigInt!] + transactionCount: BigInt + transactionCount_not: BigInt + transactionCount_gt: BigInt + transactionCount_lt: BigInt + transactionCount_gte: BigInt + transactionCount_lte: BigInt + transactionCount_in: [BigInt!] + transactionCount_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + activeStrategyCount: BigInt + activeStrategyCount_not: BigInt + activeStrategyCount_gt: BigInt + activeStrategyCount_lt: BigInt + activeStrategyCount_gte: BigInt + activeStrategyCount_lte: BigInt + activeStrategyCount_in: [BigInt!] + activeStrategyCount_not_in: [BigInt!] + pendingStrategyCount: BigInt + pendingStrategyCount_not: BigInt + pendingStrategyCount_gt: BigInt + pendingStrategyCount_lt: BigInt + pendingStrategyCount_gte: BigInt + pendingStrategyCount_lte: BigInt + pendingStrategyCount_in: [BigInt!] + pendingStrategyCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BentoBoxKpi_filter] + or: [BentoBoxKpi_filter] +} + +enum BentoBoxKpi_orderBy { + id + depositCount + withdrawCount + transferCount + protocolCount + userCount + tokenCount + masterContractCount + cloneCount + flashloanCount + transactionCount + strategyCount + activeStrategyCount + pendingStrategyCount +} + +input BentoBox_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!] + protocols_: Protocol_filter + users_: User_filter + tokens_: Token_filter + masterContracts_: MasterContract_filter + clones_: Clone_filter + flashloans_: FlashLoan_filter + transactions_: Transaction_filter + totals_: Rebase_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [BentoBox_filter] + or: [BentoBox_filter] +} + +enum BentoBox_orderBy { + id + protocols + users + tokens + masterContracts + clones + flashloans + transactions + totals +} + +scalar BigDecimal + +scalar BigInt + +input BlockChangedFilter { + number_gte: Int! +} + +input Block_height { + hash: Bytes + number: Int + number_gte: Int +} + +scalar Bytes + +type Clone { + """ Clone address """ + id: ID! + + """ BentoBox this clone belongs to """ + bentoBox: BentoBox! + + """ Master contract this clone belongs to """ + masterContract: MasterContract! + + """ Clone data """ + data: Bytes! + + """ Block number of this clone """ + block: BigInt! + + """ Timestamp of this clone """ + timestamp: BigInt! +} + +input Clone_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + masterContract: String + masterContract_not: String + masterContract_gt: String + masterContract_lt: String + masterContract_gte: String + masterContract_lte: String + masterContract_in: [String!] + masterContract_not_in: [String!] + masterContract_contains: String + masterContract_contains_nocase: String + masterContract_not_contains: String + masterContract_not_contains_nocase: String + masterContract_starts_with: String + masterContract_starts_with_nocase: String + masterContract_not_starts_with: String + masterContract_not_starts_with_nocase: String + masterContract_ends_with: String + masterContract_ends_with_nocase: String + masterContract_not_ends_with: String + masterContract_not_ends_with_nocase: String + masterContract_: MasterContract_filter + data: Bytes + data_not: Bytes + data_gt: Bytes + data_lt: Bytes + data_gte: Bytes + data_lte: Bytes + data_in: [Bytes!] + data_not_in: [Bytes!] + data_contains: Bytes + data_not_contains: Bytes + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Clone_filter] + or: [Clone_filter] +} + +enum Clone_orderBy { + id + bentoBox + bentoBox__id + masterContract + masterContract__id + masterContract__approved + data + block + timestamp +} + +type FlashLoan { + """ Concatenation of transaction and log index """ + id: ID! + + """ BentoBox this flash loan belongs to """ + bentoBox: BentoBox! + + """ Borrower address """ + borrower: Bytes! + + """ Receiver address """ + receiver: Bytes! + + """ Token this flash loan belongs to """ + token: Token! + + """ Amount of this flash loan """ + amount: BigInt! + + """ Fee amount of this flash loan """ + feeAmount: BigInt! + + """ Block number of this flash loan """ + block: BigInt! + + """ Timestamp of this flash loan """ + timestamp: BigInt! +} + +input FlashLoan_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + borrower: Bytes + borrower_not: Bytes + borrower_gt: Bytes + borrower_lt: Bytes + borrower_gte: Bytes + borrower_lte: Bytes + borrower_in: [Bytes!] + borrower_not_in: [Bytes!] + borrower_contains: Bytes + borrower_not_contains: Bytes + receiver: Bytes + receiver_not: Bytes + receiver_gt: Bytes + receiver_lt: Bytes + receiver_gte: Bytes + receiver_lte: Bytes + receiver_in: [Bytes!] + receiver_not_in: [Bytes!] + receiver_contains: Bytes + receiver_not_contains: Bytes + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + feeAmount: BigInt + feeAmount_not: BigInt + feeAmount_gt: BigInt + feeAmount_lt: BigInt + feeAmount_gte: BigInt + feeAmount_lte: BigInt + feeAmount_in: [BigInt!] + feeAmount_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [FlashLoan_filter] + or: [FlashLoan_filter] +} + +enum FlashLoan_orderBy { + id + bentoBox + bentoBox__id + borrower + receiver + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + amount + feeAmount + block + timestamp +} + +type Harvest { + """ Concatenation of strategy and block number """ + id: ID! + + """ The Token this harvest belongs to """ + token: Token! + + """ The Strategy this harvest belongs to """ + strategy: Strategy! + + """ The ProfitOrLoss of this harvest """ + profitOrLoss: ProfitOrLoss + + """ The InvestOrDivest of this harvest """ + investOrDivest: InvestOrDivest + + """ Block number of this harvest """ + block: BigInt! + + """ Timestamp of this harvest """ + timestamp: BigInt! +} + +input Harvest_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + strategy: String + strategy_not: String + strategy_gt: String + strategy_lt: String + strategy_gte: String + strategy_lte: String + strategy_in: [String!] + strategy_not_in: [String!] + strategy_contains: String + strategy_contains_nocase: String + strategy_not_contains: String + strategy_not_contains_nocase: String + strategy_starts_with: String + strategy_starts_with_nocase: String + strategy_not_starts_with: String + strategy_not_starts_with_nocase: String + strategy_ends_with: String + strategy_ends_with_nocase: String + strategy_not_ends_with: String + strategy_not_ends_with_nocase: String + strategy_: Strategy_filter + profitOrLoss: String + profitOrLoss_not: String + profitOrLoss_gt: String + profitOrLoss_lt: String + profitOrLoss_gte: String + profitOrLoss_lte: String + profitOrLoss_in: [String!] + profitOrLoss_not_in: [String!] + profitOrLoss_contains: String + profitOrLoss_contains_nocase: String + profitOrLoss_not_contains: String + profitOrLoss_not_contains_nocase: String + profitOrLoss_starts_with: String + profitOrLoss_starts_with_nocase: String + profitOrLoss_not_starts_with: String + profitOrLoss_not_starts_with_nocase: String + profitOrLoss_ends_with: String + profitOrLoss_ends_with_nocase: String + profitOrLoss_not_ends_with: String + profitOrLoss_not_ends_with_nocase: String + profitOrLoss_: ProfitOrLoss_filter + investOrDivest: String + investOrDivest_not: String + investOrDivest_gt: String + investOrDivest_lt: String + investOrDivest_gte: String + investOrDivest_lte: String + investOrDivest_in: [String!] + investOrDivest_not_in: [String!] + investOrDivest_contains: String + investOrDivest_contains_nocase: String + investOrDivest_not_contains: String + investOrDivest_not_contains_nocase: String + investOrDivest_starts_with: String + investOrDivest_starts_with_nocase: String + investOrDivest_not_starts_with: String + investOrDivest_not_starts_with_nocase: String + investOrDivest_ends_with: String + investOrDivest_ends_with_nocase: String + investOrDivest_not_ends_with: String + investOrDivest_not_ends_with_nocase: String + investOrDivest_: InvestOrDivest_filter + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Harvest_filter] + or: [Harvest_filter] +} + +enum Harvest_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + strategy + strategy__id + strategy__block + strategy__timestamp + profitOrLoss + profitOrLoss__id + profitOrLoss__elastic + profitOrLoss__base + profitOrLoss__amount + profitOrLoss__block + profitOrLoss__timestamp + investOrDivest + investOrDivest__id + investOrDivest__elastic + investOrDivest__base + investOrDivest__amount + investOrDivest__block + investOrDivest__timestamp + block + timestamp +} + +"8 bytes signed integer\n" +scalar Int8 + +type InvestOrDivest { + """ Concatenation of strategy and invest or divest count """ + id: ID! + + """ The Harvest this invest or divest belongs to """ + harvest: Harvest! + + """ The cached token elastic at time of invest or divest""" + elastic: BigInt! + + """ The cached token base at time of invest or divest""" + base: BigInt! + + """ Amount of invest or divest """ + amount: BigInt! + + """ Block number of this invest or divest """ + block: BigInt! + + """ Timestamp of this invest or divest """ + timestamp: BigInt! +} + +input InvestOrDivest_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!] + harvest: String + harvest_not: String + harvest_gt: String + harvest_lt: String + harvest_gte: String + harvest_lte: String + harvest_in: [String!] + harvest_not_in: [String!] + harvest_contains: String + harvest_contains_nocase: String + harvest_not_contains: String + harvest_not_contains_nocase: String + harvest_starts_with: String + harvest_starts_with_nocase: String + harvest_not_starts_with: String + harvest_not_starts_with_nocase: String + harvest_ends_with: String + harvest_ends_with_nocase: String + harvest_not_ends_with: String + harvest_not_ends_with_nocase: String + harvest_: Harvest_filter + elastic: BigInt + elastic_not: BigInt + elastic_gt: BigInt + elastic_lt: BigInt + elastic_gte: BigInt + elastic_lte: BigInt + elastic_in: [BigInt!] + elastic_not_in: [BigInt!] + base: BigInt + base_not: BigInt + base_gt: BigInt + base_lt: BigInt + base_gte: BigInt + base_lte: BigInt + base_in: [BigInt!] + base_not_in: [BigInt!] + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [InvestOrDivest_filter] + or: [InvestOrDivest_filter] +} + +enum InvestOrDivest_orderBy { + id + harvest + harvest__id + harvest__block + harvest__timestamp + elastic + base + amount + block + timestamp +} + +type MasterContract { + """ MasterContract address """ + id: ID! + + """ BentoBox this master contract belongs to """ + bentoBox: BentoBox! + + """ Clones that belong to this master contract """ + clones(skip: Int = 0, first: Int = 100, orderBy: Clone_orderBy, orderDirection: OrderDirection, where: Clone_filter): [Clone!] + + """ MasterContractApprovals that belong to this master contract """ + masterContractApprovals(skip: Int = 0, first: Int = 100, orderBy: MasterContractApproval_orderBy, orderDirection: OrderDirection, where: MasterContractApproval_filter): [MasterContractApproval!] + + """ MasterContract is whitelisted by Sushi Operations""" + approved: Boolean! +} + +type MasterContractApproval { + """Concatenation of user adddress and master contract address""" + id: ID! + + """ MasterContract this master contract approval belongs to """ + masterContract: MasterContract! + + """ User this master contract approval belongs to """ + user: User! + + """ If user has approved this master contract """ + approved: Boolean! +} + +input MasterContractApproval_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!] + masterContract: String + masterContract_not: String + masterContract_gt: String + masterContract_lt: String + masterContract_gte: String + masterContract_lte: String + masterContract_in: [String!] + masterContract_not_in: [String!] + masterContract_contains: String + masterContract_contains_nocase: String + masterContract_not_contains: String + masterContract_not_contains_nocase: String + masterContract_starts_with: String + masterContract_starts_with_nocase: String + masterContract_not_starts_with: String + masterContract_not_starts_with_nocase: String + masterContract_ends_with: String + masterContract_ends_with_nocase: String + masterContract_not_ends_with: String + masterContract_not_ends_with_nocase: String + masterContract_: MasterContract_filter + user: String + user_not: String + user_gt: String + user_lt: String + user_gte: String + user_lte: String + user_in: [String!] + user_not_in: [String!] + user_contains: String + user_contains_nocase: String + user_not_contains: String + user_not_contains_nocase: String + user_starts_with: String + user_starts_with_nocase: String + user_not_starts_with: String + user_not_starts_with_nocase: String + user_ends_with: String + user_ends_with_nocase: String + user_not_ends_with: String + user_not_ends_with_nocase: String + user_: User_filter + approved: Boolean + approved_not: Boolean + approved_in: [Boolean!] + approved_not_in: [Boolean!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MasterContractApproval_filter] + or: [MasterContractApproval_filter] +} + +enum MasterContractApproval_orderBy { + id + masterContract + masterContract__id + masterContract__approved + user + user__id + user__block + user__timestamp + approved +} + +input MasterContract_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + clones_: Clone_filter + masterContractApprovals_: MasterContractApproval_filter + approved: Boolean + approved_not: Boolean + approved_in: [Boolean!] + approved_not_in: [Boolean!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [MasterContract_filter] + or: [MasterContract_filter] +} + +enum MasterContract_orderBy { + id + bentoBox + bentoBox__id + clones + masterContractApprovals + approved +} + +"""Defines the order direction, either ascending or descending""" +enum OrderDirection { + asc + desc +} + +type ProfitOrLoss { + """ Concatenation of strategy and profit or loss count """ + id: ID! + + """ The Harvest this profit or loss belongs to """ + harvest: Harvest! + + """ The cached token elastic at time of profit or loss""" + elastic: BigInt! + + """ The cached token base at time of profit or loss""" + base: BigInt! + + """ Amount of profit or loss """ + amount: BigInt! + + """ Block number of this profit or loss """ + block: BigInt! + + """ Timestamp of this profit or loss """ + timestamp: BigInt! +} + +input ProfitOrLoss_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!] + harvest: String + harvest_not: String + harvest_gt: String + harvest_lt: String + harvest_gte: String + harvest_lte: String + harvest_in: [String!] + harvest_not_in: [String!] + harvest_contains: String + harvest_contains_nocase: String + harvest_not_contains: String + harvest_not_contains_nocase: String + harvest_starts_with: String + harvest_starts_with_nocase: String + harvest_not_starts_with: String + harvest_not_starts_with_nocase: String + harvest_ends_with: String + harvest_ends_with_nocase: String + harvest_not_ends_with: String + harvest_not_ends_with_nocase: String + harvest_: Harvest_filter + elastic: BigInt + elastic_not: BigInt + elastic_gt: BigInt + elastic_lt: BigInt + elastic_gte: BigInt + elastic_lte: BigInt + elastic_in: [BigInt!] + elastic_not_in: [BigInt!] + base: BigInt + base_not: BigInt + base_gt: BigInt + base_lt: BigInt + base_gte: BigInt + base_lte: BigInt + base_in: [BigInt!] + base_not_in: [BigInt!] + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [ProfitOrLoss_filter] + or: [ProfitOrLoss_filter] +} + +enum ProfitOrLoss_orderBy { + id + harvest + harvest__id + harvest__block + harvest__timestamp + elastic + base + amount + block + timestamp +} + +type Protocol { + """ Protocol address """ + id: ID! + + """ BentoBox this protocol belongs to """ + bentoBox: BentoBox! +} + +input Protocol_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Protocol_filter] + or: [Protocol_filter] +} + +enum Protocol_orderBy { + id + bentoBox + bentoBox__id +} + +type Query { + bentoBox( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBox + bentoBoxes( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBox_orderBy + orderDirection: OrderDirection + where: BentoBox_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBox!]! + bentoBoxKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxKpi + bentoBoxKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxKpi!]! + masterContract( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterContract + masterContracts( + skip: Int = 0 + first: Int = 100 + orderBy: MasterContract_orderBy + orderDirection: OrderDirection + where: MasterContract_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterContract!]! + masterContractApproval( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterContractApproval + masterContractApprovals( + skip: Int = 0 + first: Int = 100 + orderBy: MasterContractApproval_orderBy + orderDirection: OrderDirection + where: MasterContractApproval_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterContractApproval!]! + clone( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Clone + clones( + skip: Int = 0 + first: Int = 100 + orderBy: Clone_orderBy + orderDirection: OrderDirection + where: Clone_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Clone!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + tokenKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenKpi + tokenKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenKpi_orderBy + orderDirection: OrderDirection + where: TokenKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenKpi!]! + tokenStrategy( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenStrategy + tokenStrategies( + skip: Int = 0 + first: Int = 100 + orderBy: TokenStrategy_orderBy + orderDirection: OrderDirection + where: TokenStrategy_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenStrategy!]! + strategy( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Strategy + strategies( + skip: Int = 0 + first: Int = 100 + orderBy: Strategy_orderBy + orderDirection: OrderDirection + where: Strategy_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Strategy!]! + strategyData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyData + strategyDatas( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyData_orderBy + orderDirection: OrderDirection + where: StrategyData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyData!]! + strategyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyKpi + strategyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyKpi_orderBy + orderDirection: OrderDirection + where: StrategyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyKpi!]! + harvest( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Harvest + harvests( + skip: Int = 0 + first: Int = 100 + orderBy: Harvest_orderBy + orderDirection: OrderDirection + where: Harvest_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Harvest!]! + profitOrLoss( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): ProfitOrLoss + profitOrLosses( + skip: Int = 0 + first: Int = 100 + orderBy: ProfitOrLoss_orderBy + orderDirection: OrderDirection + where: ProfitOrLoss_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [ProfitOrLoss!]! + investOrDivest( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): InvestOrDivest + investOrDivests( + skip: Int = 0 + first: Int = 100 + orderBy: InvestOrDivest_orderBy + orderDirection: OrderDirection + where: InvestOrDivest_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [InvestOrDivest!]! + rebase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rebase + rebases( + skip: Int = 0 + first: Int = 100 + orderBy: Rebase_orderBy + orderDirection: OrderDirection + where: Rebase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rebase!]! + flashLoan( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FlashLoan + flashLoans( + skip: Int = 0 + first: Int = 100 + orderBy: FlashLoan_orderBy + orderDirection: OrderDirection + where: FlashLoan_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FlashLoan!]! + protocol( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Protocol + protocols( + skip: Int = 0 + first: Int = 100 + orderBy: Protocol_orderBy + orderDirection: OrderDirection + where: Protocol_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Protocol!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + balance( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Balance + balances( + skip: Int = 0 + first: Int = 100 + orderBy: Balance_orderBy + orderDirection: OrderDirection + where: Balance_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Balance!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + bentoBoxHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxHourlyKpi + bentoBoxHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxHourlyKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxHourlyKpi!]! + bentoBoxDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxDailyKpi + bentoBoxDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxDailyKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxDailyKpi!]! + strategyDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyDailyKpi + strategyDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyDailyKpi_orderBy + orderDirection: OrderDirection + where: StrategyDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyDailyKpi!]! + strategyHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyHourlyKpi + strategyHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyHourlyKpi_orderBy + orderDirection: OrderDirection + where: StrategyHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyHourlyKpi!]! + tokenHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourlyKpi + tokenHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourlyKpi_orderBy + orderDirection: OrderDirection + where: TokenHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourlyKpi!]! + tokenDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDailyKpi + tokenDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDailyKpi_orderBy + orderDirection: OrderDirection + where: TokenDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDailyKpi!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +type Rebase { + """ Token address """ + id: ID! + + """ BentoBox this rebase belongs to """ + bentoBox: BentoBox! + + """ Token this rebase belongs to """ + token: Token! + + """ Base (Share) """ + base: BigInt! + + """ Elastic (Amount) """ + elastic: BigInt! +} + +input Rebase_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + base: BigInt + base_not: BigInt + base_gt: BigInt + base_lt: BigInt + base_gte: BigInt + base_lte: BigInt + base_in: [BigInt!] + base_not_in: [BigInt!] + elastic: BigInt + elastic_not: BigInt + elastic_gt: BigInt + elastic_lt: BigInt + elastic_gte: BigInt + elastic_lte: BigInt + elastic_in: [BigInt!] + elastic_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Rebase_filter] + or: [Rebase_filter] +} + +enum Rebase_orderBy { + id + bentoBox + bentoBox__id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + base + elastic +} + +type Strategy { + """ Strategy address """ + id: ID! + + """ StrategyKpi of this strategy """ + kpi: StrategyKpi! + + """ Harvests which belong to this strategy """ + harvests(skip: Int = 0, first: Int = 100, orderBy: Harvest_orderBy, orderDirection: OrderDirection, where: Harvest_filter): [Harvest!] + + """ The Token this strategy belongs to """ + token: Token! + + """ Block number of this strategy """ + block: BigInt! + + """ Timestamp of this strategy """ + timestamp: BigInt! +} + +type StrategyDailyKpi { + """ created by id, infix '-day-' and unix timestamp, e.g. '0x00..00-day-1657270000' + """ + id: ID! + + """ The Strategy this KPI belongs to """ + strategy: Strategy! + + """ Start date """ + date: Int! + + """ Harvest count """ + harvestCount: BigInt! + + """ Invest or divest count """ + investOrDivestCount: BigInt! + + """ Invest count """ + investCount: BigInt! + + """ Invested """ + invested: BigInt! + + """ Divest count """ + divestCount: BigInt! + + """ Divested""" + divested: BigInt! + + """ Profit or loss count """ + profitOrLossCount: BigInt! + + """ Profit count """ + profitCount: BigInt! + + """ Loss count """ + lossCount: BigInt! + + """ Profit & Loss""" + profitAndLoss: BigInt! + + """ APR """ + apr: BigDecimal + + """ Utilization """ + utilization: BigDecimal + + """ Harvest count for the given timeframe """ + newHarvestCount: BigInt! + + """ Invest or divest count for the given timeframe """ + newInvestOrDivestCount: BigInt! + + """ Invest count for the given timeframe """ + newInvestCount: BigInt! + + """ Invested for the given timeframe """ + newInvested: BigInt! + + """ Divest count for the given timeframe """ + newDivestCount: BigInt! + + """ Divested for the given timeframe """ + newDivested: BigInt! + + """ Profit or loss count for the given timeframe """ + newProfitOrLossCount: BigInt! + + """ Profit count for the given timeframe """ + newProfitCount: BigInt! + + """ Loss count for the given timeframe """ + newLossCount: BigInt! + + """ Profit & Los for the given timeframe """ + newProfitAndLoss: BigInt! + + """ APR for the given timeframe """ + newApr: BigDecimal + + """ Utilization for the given timeframe """ + newUtilization: BigDecimal +} + +input StrategyDailyKpi_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!] + strategy: String + strategy_not: String + strategy_gt: String + strategy_lt: String + strategy_gte: String + strategy_lte: String + strategy_in: [String!] + strategy_not_in: [String!] + strategy_contains: String + strategy_contains_nocase: String + strategy_not_contains: String + strategy_not_contains_nocase: String + strategy_starts_with: String + strategy_starts_with_nocase: String + strategy_not_starts_with: String + strategy_not_starts_with_nocase: String + strategy_ends_with: String + strategy_ends_with_nocase: String + strategy_not_ends_with: String + strategy_not_ends_with_nocase: String + strategy_: Strategy_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + harvestCount: BigInt + harvestCount_not: BigInt + harvestCount_gt: BigInt + harvestCount_lt: BigInt + harvestCount_gte: BigInt + harvestCount_lte: BigInt + harvestCount_in: [BigInt!] + harvestCount_not_in: [BigInt!] + investOrDivestCount: BigInt + investOrDivestCount_not: BigInt + investOrDivestCount_gt: BigInt + investOrDivestCount_lt: BigInt + investOrDivestCount_gte: BigInt + investOrDivestCount_lte: BigInt + investOrDivestCount_in: [BigInt!] + investOrDivestCount_not_in: [BigInt!] + investCount: BigInt + investCount_not: BigInt + investCount_gt: BigInt + investCount_lt: BigInt + investCount_gte: BigInt + investCount_lte: BigInt + investCount_in: [BigInt!] + investCount_not_in: [BigInt!] + invested: BigInt + invested_not: BigInt + invested_gt: BigInt + invested_lt: BigInt + invested_gte: BigInt + invested_lte: BigInt + invested_in: [BigInt!] + invested_not_in: [BigInt!] + divestCount: BigInt + divestCount_not: BigInt + divestCount_gt: BigInt + divestCount_lt: BigInt + divestCount_gte: BigInt + divestCount_lte: BigInt + divestCount_in: [BigInt!] + divestCount_not_in: [BigInt!] + divested: BigInt + divested_not: BigInt + divested_gt: BigInt + divested_lt: BigInt + divested_gte: BigInt + divested_lte: BigInt + divested_in: [BigInt!] + divested_not_in: [BigInt!] + profitOrLossCount: BigInt + profitOrLossCount_not: BigInt + profitOrLossCount_gt: BigInt + profitOrLossCount_lt: BigInt + profitOrLossCount_gte: BigInt + profitOrLossCount_lte: BigInt + profitOrLossCount_in: [BigInt!] + profitOrLossCount_not_in: [BigInt!] + profitCount: BigInt + profitCount_not: BigInt + profitCount_gt: BigInt + profitCount_lt: BigInt + profitCount_gte: BigInt + profitCount_lte: BigInt + profitCount_in: [BigInt!] + profitCount_not_in: [BigInt!] + lossCount: BigInt + lossCount_not: BigInt + lossCount_gt: BigInt + lossCount_lt: BigInt + lossCount_gte: BigInt + lossCount_lte: BigInt + lossCount_in: [BigInt!] + lossCount_not_in: [BigInt!] + profitAndLoss: BigInt + profitAndLoss_not: BigInt + profitAndLoss_gt: BigInt + profitAndLoss_lt: BigInt + profitAndLoss_gte: BigInt + profitAndLoss_lte: BigInt + profitAndLoss_in: [BigInt!] + profitAndLoss_not_in: [BigInt!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + utilization: BigDecimal + utilization_not: BigDecimal + utilization_gt: BigDecimal + utilization_lt: BigDecimal + utilization_gte: BigDecimal + utilization_lte: BigDecimal + utilization_in: [BigDecimal!] + utilization_not_in: [BigDecimal!] + newHarvestCount: BigInt + newHarvestCount_not: BigInt + newHarvestCount_gt: BigInt + newHarvestCount_lt: BigInt + newHarvestCount_gte: BigInt + newHarvestCount_lte: BigInt + newHarvestCount_in: [BigInt!] + newHarvestCount_not_in: [BigInt!] + newInvestOrDivestCount: BigInt + newInvestOrDivestCount_not: BigInt + newInvestOrDivestCount_gt: BigInt + newInvestOrDivestCount_lt: BigInt + newInvestOrDivestCount_gte: BigInt + newInvestOrDivestCount_lte: BigInt + newInvestOrDivestCount_in: [BigInt!] + newInvestOrDivestCount_not_in: [BigInt!] + newInvestCount: BigInt + newInvestCount_not: BigInt + newInvestCount_gt: BigInt + newInvestCount_lt: BigInt + newInvestCount_gte: BigInt + newInvestCount_lte: BigInt + newInvestCount_in: [BigInt!] + newInvestCount_not_in: [BigInt!] + newInvested: BigInt + newInvested_not: BigInt + newInvested_gt: BigInt + newInvested_lt: BigInt + newInvested_gte: BigInt + newInvested_lte: BigInt + newInvested_in: [BigInt!] + newInvested_not_in: [BigInt!] + newDivestCount: BigInt + newDivestCount_not: BigInt + newDivestCount_gt: BigInt + newDivestCount_lt: BigInt + newDivestCount_gte: BigInt + newDivestCount_lte: BigInt + newDivestCount_in: [BigInt!] + newDivestCount_not_in: [BigInt!] + newDivested: BigInt + newDivested_not: BigInt + newDivested_gt: BigInt + newDivested_lt: BigInt + newDivested_gte: BigInt + newDivested_lte: BigInt + newDivested_in: [BigInt!] + newDivested_not_in: [BigInt!] + newProfitOrLossCount: BigInt + newProfitOrLossCount_not: BigInt + newProfitOrLossCount_gt: BigInt + newProfitOrLossCount_lt: BigInt + newProfitOrLossCount_gte: BigInt + newProfitOrLossCount_lte: BigInt + newProfitOrLossCount_in: [BigInt!] + newProfitOrLossCount_not_in: [BigInt!] + newProfitCount: BigInt + newProfitCount_not: BigInt + newProfitCount_gt: BigInt + newProfitCount_lt: BigInt + newProfitCount_gte: BigInt + newProfitCount_lte: BigInt + newProfitCount_in: [BigInt!] + newProfitCount_not_in: [BigInt!] + newLossCount: BigInt + newLossCount_not: BigInt + newLossCount_gt: BigInt + newLossCount_lt: BigInt + newLossCount_gte: BigInt + newLossCount_lte: BigInt + newLossCount_in: [BigInt!] + newLossCount_not_in: [BigInt!] + newProfitAndLoss: BigInt + newProfitAndLoss_not: BigInt + newProfitAndLoss_gt: BigInt + newProfitAndLoss_lt: BigInt + newProfitAndLoss_gte: BigInt + newProfitAndLoss_lte: BigInt + newProfitAndLoss_in: [BigInt!] + newProfitAndLoss_not_in: [BigInt!] + newApr: BigDecimal + newApr_not: BigDecimal + newApr_gt: BigDecimal + newApr_lt: BigDecimal + newApr_gte: BigDecimal + newApr_lte: BigDecimal + newApr_in: [BigDecimal!] + newApr_not_in: [BigDecimal!] + newUtilization: BigDecimal + newUtilization_not: BigDecimal + newUtilization_gt: BigDecimal + newUtilization_lt: BigDecimal + newUtilization_gte: BigDecimal + newUtilization_lte: BigDecimal + newUtilization_in: [BigDecimal!] + newUtilization_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [StrategyDailyKpi_filter] + or: [StrategyDailyKpi_filter] +} + +enum StrategyDailyKpi_orderBy { + id + strategy + strategy__id + strategy__block + strategy__timestamp + date + harvestCount + investOrDivestCount + investCount + invested + divestCount + divested + profitOrLossCount + profitCount + lossCount + profitAndLoss + apr + utilization + newHarvestCount + newInvestOrDivestCount + newInvestCount + newInvested + newDivestCount + newDivested + newProfitOrLossCount + newProfitCount + newLossCount + newProfitAndLoss + newApr + newUtilization +} + +type StrategyData { + """ Token address """ + id: ID! + + """ Strategy start date """ + strategyStartDate: BigInt! + + """ Target percentage """ + targetPercentage: BigInt! + + """ BentoBox's understanding of the balance """ + balance: BigInt! +} + +input StrategyData_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!] + strategyStartDate: BigInt + strategyStartDate_not: BigInt + strategyStartDate_gt: BigInt + strategyStartDate_lt: BigInt + strategyStartDate_gte: BigInt + strategyStartDate_lte: BigInt + strategyStartDate_in: [BigInt!] + strategyStartDate_not_in: [BigInt!] + targetPercentage: BigInt + targetPercentage_not: BigInt + targetPercentage_gt: BigInt + targetPercentage_lt: BigInt + targetPercentage_gte: BigInt + targetPercentage_lte: BigInt + targetPercentage_in: [BigInt!] + targetPercentage_not_in: [BigInt!] + balance: BigInt + balance_not: BigInt + balance_gt: BigInt + balance_lt: BigInt + balance_gte: BigInt + balance_lte: BigInt + balance_in: [BigInt!] + balance_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [StrategyData_filter] + or: [StrategyData_filter] +} + +enum StrategyData_orderBy { + id + strategyStartDate + targetPercentage + balance +} + +type StrategyHourlyKpi { + """ created by id, infix '-hour-' and unix timestamp, e.g. '0x00..00-hour-1657270000' + """ + id: ID! + + """ The Strategy this KPI belongs to """ + strategy: Strategy! + + """ Start date """ + date: Int! + + """ Harvest count """ + harvestCount: BigInt! + + """ Invest or divest count """ + investOrDivestCount: BigInt! + + """ Invest count """ + investCount: BigInt! + + """ Invested """ + invested: BigInt! + + """ Divest count """ + divestCount: BigInt! + + """ Divested""" + divested: BigInt! + + """ Profit or loss count """ + profitOrLossCount: BigInt! + + """ Profit count """ + profitCount: BigInt! + + """ Loss count """ + lossCount: BigInt! + + """ Profit & Loss""" + profitAndLoss: BigInt! + + """ APR """ + apr: BigDecimal + + """ Utilization """ + utilization: BigDecimal + + """ Harvest count for the given timeframe """ + newHarvestCount: BigInt! + + """ Invest or divest count for the given timeframe """ + newInvestOrDivestCount: BigInt! + + """ Invest count for the given timeframe """ + newInvestCount: BigInt! + + """ Invested for the given timeframe """ + newInvested: BigInt! + + """ Divest count for the given timeframe """ + newDivestCount: BigInt! + + """ Divested for the given timeframe """ + newDivested: BigInt! + + """ Profit or loss count for the given timeframe """ + newProfitOrLossCount: BigInt! + + """ Profit count for the given timeframe """ + newProfitCount: BigInt! + + """ Loss count for the given timeframe """ + newLossCount: BigInt! + + """ Profit & Los for the given timeframe """ + newProfitAndLoss: BigInt! + + """ APR for the given timeframe """ + newApr: BigDecimal + + """ Utilization for the given timeframe """ + newUtilization: BigDecimal +} + +input StrategyHourlyKpi_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!] + strategy: String + strategy_not: String + strategy_gt: String + strategy_lt: String + strategy_gte: String + strategy_lte: String + strategy_in: [String!] + strategy_not_in: [String!] + strategy_contains: String + strategy_contains_nocase: String + strategy_not_contains: String + strategy_not_contains_nocase: String + strategy_starts_with: String + strategy_starts_with_nocase: String + strategy_not_starts_with: String + strategy_not_starts_with_nocase: String + strategy_ends_with: String + strategy_ends_with_nocase: String + strategy_not_ends_with: String + strategy_not_ends_with_nocase: String + strategy_: Strategy_filter + date: Int + date_not: Int + date_gt: Int + date_lt: Int + date_gte: Int + date_lte: Int + date_in: [Int!] + date_not_in: [Int!] + harvestCount: BigInt + harvestCount_not: BigInt + harvestCount_gt: BigInt + harvestCount_lt: BigInt + harvestCount_gte: BigInt + harvestCount_lte: BigInt + harvestCount_in: [BigInt!] + harvestCount_not_in: [BigInt!] + investOrDivestCount: BigInt + investOrDivestCount_not: BigInt + investOrDivestCount_gt: BigInt + investOrDivestCount_lt: BigInt + investOrDivestCount_gte: BigInt + investOrDivestCount_lte: BigInt + investOrDivestCount_in: [BigInt!] + investOrDivestCount_not_in: [BigInt!] + investCount: BigInt + investCount_not: BigInt + investCount_gt: BigInt + investCount_lt: BigInt + investCount_gte: BigInt + investCount_lte: BigInt + investCount_in: [BigInt!] + investCount_not_in: [BigInt!] + invested: BigInt + invested_not: BigInt + invested_gt: BigInt + invested_lt: BigInt + invested_gte: BigInt + invested_lte: BigInt + invested_in: [BigInt!] + invested_not_in: [BigInt!] + divestCount: BigInt + divestCount_not: BigInt + divestCount_gt: BigInt + divestCount_lt: BigInt + divestCount_gte: BigInt + divestCount_lte: BigInt + divestCount_in: [BigInt!] + divestCount_not_in: [BigInt!] + divested: BigInt + divested_not: BigInt + divested_gt: BigInt + divested_lt: BigInt + divested_gte: BigInt + divested_lte: BigInt + divested_in: [BigInt!] + divested_not_in: [BigInt!] + profitOrLossCount: BigInt + profitOrLossCount_not: BigInt + profitOrLossCount_gt: BigInt + profitOrLossCount_lt: BigInt + profitOrLossCount_gte: BigInt + profitOrLossCount_lte: BigInt + profitOrLossCount_in: [BigInt!] + profitOrLossCount_not_in: [BigInt!] + profitCount: BigInt + profitCount_not: BigInt + profitCount_gt: BigInt + profitCount_lt: BigInt + profitCount_gte: BigInt + profitCount_lte: BigInt + profitCount_in: [BigInt!] + profitCount_not_in: [BigInt!] + lossCount: BigInt + lossCount_not: BigInt + lossCount_gt: BigInt + lossCount_lt: BigInt + lossCount_gte: BigInt + lossCount_lte: BigInt + lossCount_in: [BigInt!] + lossCount_not_in: [BigInt!] + profitAndLoss: BigInt + profitAndLoss_not: BigInt + profitAndLoss_gt: BigInt + profitAndLoss_lt: BigInt + profitAndLoss_gte: BigInt + profitAndLoss_lte: BigInt + profitAndLoss_in: [BigInt!] + profitAndLoss_not_in: [BigInt!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + utilization: BigDecimal + utilization_not: BigDecimal + utilization_gt: BigDecimal + utilization_lt: BigDecimal + utilization_gte: BigDecimal + utilization_lte: BigDecimal + utilization_in: [BigDecimal!] + utilization_not_in: [BigDecimal!] + newHarvestCount: BigInt + newHarvestCount_not: BigInt + newHarvestCount_gt: BigInt + newHarvestCount_lt: BigInt + newHarvestCount_gte: BigInt + newHarvestCount_lte: BigInt + newHarvestCount_in: [BigInt!] + newHarvestCount_not_in: [BigInt!] + newInvestOrDivestCount: BigInt + newInvestOrDivestCount_not: BigInt + newInvestOrDivestCount_gt: BigInt + newInvestOrDivestCount_lt: BigInt + newInvestOrDivestCount_gte: BigInt + newInvestOrDivestCount_lte: BigInt + newInvestOrDivestCount_in: [BigInt!] + newInvestOrDivestCount_not_in: [BigInt!] + newInvestCount: BigInt + newInvestCount_not: BigInt + newInvestCount_gt: BigInt + newInvestCount_lt: BigInt + newInvestCount_gte: BigInt + newInvestCount_lte: BigInt + newInvestCount_in: [BigInt!] + newInvestCount_not_in: [BigInt!] + newInvested: BigInt + newInvested_not: BigInt + newInvested_gt: BigInt + newInvested_lt: BigInt + newInvested_gte: BigInt + newInvested_lte: BigInt + newInvested_in: [BigInt!] + newInvested_not_in: [BigInt!] + newDivestCount: BigInt + newDivestCount_not: BigInt + newDivestCount_gt: BigInt + newDivestCount_lt: BigInt + newDivestCount_gte: BigInt + newDivestCount_lte: BigInt + newDivestCount_in: [BigInt!] + newDivestCount_not_in: [BigInt!] + newDivested: BigInt + newDivested_not: BigInt + newDivested_gt: BigInt + newDivested_lt: BigInt + newDivested_gte: BigInt + newDivested_lte: BigInt + newDivested_in: [BigInt!] + newDivested_not_in: [BigInt!] + newProfitOrLossCount: BigInt + newProfitOrLossCount_not: BigInt + newProfitOrLossCount_gt: BigInt + newProfitOrLossCount_lt: BigInt + newProfitOrLossCount_gte: BigInt + newProfitOrLossCount_lte: BigInt + newProfitOrLossCount_in: [BigInt!] + newProfitOrLossCount_not_in: [BigInt!] + newProfitCount: BigInt + newProfitCount_not: BigInt + newProfitCount_gt: BigInt + newProfitCount_lt: BigInt + newProfitCount_gte: BigInt + newProfitCount_lte: BigInt + newProfitCount_in: [BigInt!] + newProfitCount_not_in: [BigInt!] + newLossCount: BigInt + newLossCount_not: BigInt + newLossCount_gt: BigInt + newLossCount_lt: BigInt + newLossCount_gte: BigInt + newLossCount_lte: BigInt + newLossCount_in: [BigInt!] + newLossCount_not_in: [BigInt!] + newProfitAndLoss: BigInt + newProfitAndLoss_not: BigInt + newProfitAndLoss_gt: BigInt + newProfitAndLoss_lt: BigInt + newProfitAndLoss_gte: BigInt + newProfitAndLoss_lte: BigInt + newProfitAndLoss_in: [BigInt!] + newProfitAndLoss_not_in: [BigInt!] + newApr: BigDecimal + newApr_not: BigDecimal + newApr_gt: BigDecimal + newApr_lt: BigDecimal + newApr_gte: BigDecimal + newApr_lte: BigDecimal + newApr_in: [BigDecimal!] + newApr_not_in: [BigDecimal!] + newUtilization: BigDecimal + newUtilization_not: BigDecimal + newUtilization_gt: BigDecimal + newUtilization_lt: BigDecimal + newUtilization_gte: BigDecimal + newUtilization_lte: BigDecimal + newUtilization_in: [BigDecimal!] + newUtilization_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [StrategyHourlyKpi_filter] + or: [StrategyHourlyKpi_filter] +} + +enum StrategyHourlyKpi_orderBy { + id + strategy + strategy__id + strategy__block + strategy__timestamp + date + harvestCount + investOrDivestCount + investCount + invested + divestCount + divested + profitOrLossCount + profitCount + lossCount + profitAndLoss + apr + utilization + newHarvestCount + newInvestOrDivestCount + newInvestCount + newInvested + newDivestCount + newDivested + newProfitOrLossCount + newProfitCount + newLossCount + newProfitAndLoss + newApr + newUtilization +} + +type StrategyKpi { + """ Strategy address """ + id: ID! + + """ Harvest count """ + harvestCount: BigInt! + + """ Invest or divest count """ + investOrDivestCount: BigInt! + + """ Invest count """ + investCount: BigInt! + + """ Invested """ + invested: BigInt! + + """ Divest count """ + divestCount: BigInt! + + """ Divested""" + divested: BigInt! + + """ Profit or loss count """ + profitOrLossCount: BigInt! + + """ Profit count """ + profitCount: BigInt! + + """ Loss count """ + lossCount: BigInt! + + """ Profit & Loss""" + profitAndLoss: BigInt! + + """ Isolated Strategy APR """ + apr: BigDecimal + + """ Utilization """ + utilization: BigDecimal +} + +input StrategyKpi_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!] + harvestCount: BigInt + harvestCount_not: BigInt + harvestCount_gt: BigInt + harvestCount_lt: BigInt + harvestCount_gte: BigInt + harvestCount_lte: BigInt + harvestCount_in: [BigInt!] + harvestCount_not_in: [BigInt!] + investOrDivestCount: BigInt + investOrDivestCount_not: BigInt + investOrDivestCount_gt: BigInt + investOrDivestCount_lt: BigInt + investOrDivestCount_gte: BigInt + investOrDivestCount_lte: BigInt + investOrDivestCount_in: [BigInt!] + investOrDivestCount_not_in: [BigInt!] + investCount: BigInt + investCount_not: BigInt + investCount_gt: BigInt + investCount_lt: BigInt + investCount_gte: BigInt + investCount_lte: BigInt + investCount_in: [BigInt!] + investCount_not_in: [BigInt!] + invested: BigInt + invested_not: BigInt + invested_gt: BigInt + invested_lt: BigInt + invested_gte: BigInt + invested_lte: BigInt + invested_in: [BigInt!] + invested_not_in: [BigInt!] + divestCount: BigInt + divestCount_not: BigInt + divestCount_gt: BigInt + divestCount_lt: BigInt + divestCount_gte: BigInt + divestCount_lte: BigInt + divestCount_in: [BigInt!] + divestCount_not_in: [BigInt!] + divested: BigInt + divested_not: BigInt + divested_gt: BigInt + divested_lt: BigInt + divested_gte: BigInt + divested_lte: BigInt + divested_in: [BigInt!] + divested_not_in: [BigInt!] + profitOrLossCount: BigInt + profitOrLossCount_not: BigInt + profitOrLossCount_gt: BigInt + profitOrLossCount_lt: BigInt + profitOrLossCount_gte: BigInt + profitOrLossCount_lte: BigInt + profitOrLossCount_in: [BigInt!] + profitOrLossCount_not_in: [BigInt!] + profitCount: BigInt + profitCount_not: BigInt + profitCount_gt: BigInt + profitCount_lt: BigInt + profitCount_gte: BigInt + profitCount_lte: BigInt + profitCount_in: [BigInt!] + profitCount_not_in: [BigInt!] + lossCount: BigInt + lossCount_not: BigInt + lossCount_gt: BigInt + lossCount_lt: BigInt + lossCount_gte: BigInt + lossCount_lte: BigInt + lossCount_in: [BigInt!] + lossCount_not_in: [BigInt!] + profitAndLoss: BigInt + profitAndLoss_not: BigInt + profitAndLoss_gt: BigInt + profitAndLoss_lt: BigInt + profitAndLoss_gte: BigInt + profitAndLoss_lte: BigInt + profitAndLoss_in: [BigInt!] + profitAndLoss_not_in: [BigInt!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + utilization: BigDecimal + utilization_not: BigDecimal + utilization_gt: BigDecimal + utilization_lt: BigDecimal + utilization_gte: BigDecimal + utilization_lte: BigDecimal + utilization_in: [BigDecimal!] + utilization_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [StrategyKpi_filter] + or: [StrategyKpi_filter] +} + +enum StrategyKpi_orderBy { + id + harvestCount + investOrDivestCount + investCount + invested + divestCount + divested + profitOrLossCount + profitCount + lossCount + profitAndLoss + apr + utilization +} + +input Strategy_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!] + kpi: String + kpi_not: String + kpi_gt: String + kpi_lt: String + kpi_gte: String + kpi_lte: String + kpi_in: [String!] + kpi_not_in: [String!] + kpi_contains: String + kpi_contains_nocase: String + kpi_not_contains: String + kpi_not_contains_nocase: String + kpi_starts_with: String + kpi_starts_with_nocase: String + kpi_not_starts_with: String + kpi_not_starts_with_nocase: String + kpi_ends_with: String + kpi_ends_with_nocase: String + kpi_not_ends_with: String + kpi_not_ends_with_nocase: String + kpi_: StrategyKpi_filter + harvests_: Harvest_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Strategy_filter] + or: [Strategy_filter] +} + +enum Strategy_orderBy { + id + kpi + kpi__id + kpi__harvestCount + kpi__investOrDivestCount + kpi__investCount + kpi__invested + kpi__divestCount + kpi__divested + kpi__profitOrLossCount + kpi__profitCount + kpi__lossCount + kpi__profitAndLoss + kpi__apr + kpi__utilization + harvests + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + block + timestamp +} + +type Subscription { + bentoBox( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBox + bentoBoxes( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBox_orderBy + orderDirection: OrderDirection + where: BentoBox_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBox!]! + bentoBoxKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxKpi + bentoBoxKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxKpi!]! + masterContract( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterContract + masterContracts( + skip: Int = 0 + first: Int = 100 + orderBy: MasterContract_orderBy + orderDirection: OrderDirection + where: MasterContract_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterContract!]! + masterContractApproval( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): MasterContractApproval + masterContractApprovals( + skip: Int = 0 + first: Int = 100 + orderBy: MasterContractApproval_orderBy + orderDirection: OrderDirection + where: MasterContractApproval_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [MasterContractApproval!]! + clone( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Clone + clones( + skip: Int = 0 + first: Int = 100 + orderBy: Clone_orderBy + orderDirection: OrderDirection + where: Clone_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Clone!]! + token( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Token + tokens( + skip: Int = 0 + first: Int = 100 + orderBy: Token_orderBy + orderDirection: OrderDirection + where: Token_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Token!]! + tokenKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenKpi + tokenKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenKpi_orderBy + orderDirection: OrderDirection + where: TokenKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenKpi!]! + tokenStrategy( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenStrategy + tokenStrategies( + skip: Int = 0 + first: Int = 100 + orderBy: TokenStrategy_orderBy + orderDirection: OrderDirection + where: TokenStrategy_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenStrategy!]! + strategy( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Strategy + strategies( + skip: Int = 0 + first: Int = 100 + orderBy: Strategy_orderBy + orderDirection: OrderDirection + where: Strategy_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Strategy!]! + strategyData( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyData + strategyDatas( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyData_orderBy + orderDirection: OrderDirection + where: StrategyData_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyData!]! + strategyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyKpi + strategyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyKpi_orderBy + orderDirection: OrderDirection + where: StrategyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyKpi!]! + harvest( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Harvest + harvests( + skip: Int = 0 + first: Int = 100 + orderBy: Harvest_orderBy + orderDirection: OrderDirection + where: Harvest_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Harvest!]! + profitOrLoss( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): ProfitOrLoss + profitOrLosses( + skip: Int = 0 + first: Int = 100 + orderBy: ProfitOrLoss_orderBy + orderDirection: OrderDirection + where: ProfitOrLoss_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [ProfitOrLoss!]! + investOrDivest( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): InvestOrDivest + investOrDivests( + skip: Int = 0 + first: Int = 100 + orderBy: InvestOrDivest_orderBy + orderDirection: OrderDirection + where: InvestOrDivest_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [InvestOrDivest!]! + rebase( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Rebase + rebases( + skip: Int = 0 + first: Int = 100 + orderBy: Rebase_orderBy + orderDirection: OrderDirection + where: Rebase_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Rebase!]! + flashLoan( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): FlashLoan + flashLoans( + skip: Int = 0 + first: Int = 100 + orderBy: FlashLoan_orderBy + orderDirection: OrderDirection + where: FlashLoan_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [FlashLoan!]! + protocol( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Protocol + protocols( + skip: Int = 0 + first: Int = 100 + orderBy: Protocol_orderBy + orderDirection: OrderDirection + where: Protocol_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Protocol!]! + user( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): User + users( + skip: Int = 0 + first: Int = 100 + orderBy: User_orderBy + orderDirection: OrderDirection + where: User_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [User!]! + balance( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Balance + balances( + skip: Int = 0 + first: Int = 100 + orderBy: Balance_orderBy + orderDirection: OrderDirection + where: Balance_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Balance!]! + transaction( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): Transaction + transactions( + skip: Int = 0 + first: Int = 100 + orderBy: Transaction_orderBy + orderDirection: OrderDirection + where: Transaction_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [Transaction!]! + bentoBoxHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxHourlyKpi + bentoBoxHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxHourlyKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxHourlyKpi!]! + bentoBoxDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): BentoBoxDailyKpi + bentoBoxDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: BentoBoxDailyKpi_orderBy + orderDirection: OrderDirection + where: BentoBoxDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [BentoBoxDailyKpi!]! + strategyDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyDailyKpi + strategyDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyDailyKpi_orderBy + orderDirection: OrderDirection + where: StrategyDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyDailyKpi!]! + strategyHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): StrategyHourlyKpi + strategyHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: StrategyHourlyKpi_orderBy + orderDirection: OrderDirection + where: StrategyHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [StrategyHourlyKpi!]! + tokenHourlyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenHourlyKpi + tokenHourlyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenHourlyKpi_orderBy + orderDirection: OrderDirection + where: TokenHourlyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenHourlyKpi!]! + tokenDailyKpi( + id: ID! + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): TokenDailyKpi + tokenDailyKpis( + skip: Int = 0 + first: Int = 100 + orderBy: TokenDailyKpi_orderBy + orderDirection: OrderDirection + where: TokenDailyKpi_filter + + """ + The block at which the query should be executed. Can either be a `{ hash: Bytes }` value containing a block hash, a `{ number: Int }` containing the block number, or a `{ number_gte: Int }` containing the minimum block number. In the case of `number_gte`, the query will be executed on the latest block only if the subgraph has progressed to or past the minimum block number. Defaults to the latest block when omitted. + """ + block: Block_height + + """ + Set to `allow` to receive data even if the subgraph has skipped over errors while syncing. + """ + subgraphError: _SubgraphErrorPolicy_! = deny + ): [TokenDailyKpi!]! + + """Access to subgraph metadata""" + _meta(block: Block_height): _Meta_ +} + +"A string representation of microseconds UNIX timestamp (16 digits)\n" +scalar Timestamp + +type Token { + """ Token address """ + id: ID! + + """ The BentoBox this token belongs to """ + bentoBox: BentoBox! + + """ The Rebase that belongs to this token """ + rebase: Rebase! + + """ Strategies, past and present, which belong to this token """ + strategies(skip: Int = 0, first: Int = 100, orderBy: Strategy_orderBy, orderDirection: OrderDirection, where: Strategy_filter): [Strategy!] + + """ The Kpi which belong to this token """ + kpi: TokenKpi! + + """ Token symbol, if fetched successfully, else default to ??? """ + symbol: String! + + """ If the symbol was succesfully fetched """ + symbolSuccess: Boolean! + + """ Token name, if fetched successfully, else default to ??? """ + name: String! + + """ If the name was succesfully fetched """ + nameSuccess: Boolean! + + """ Token decimals, if fetched successfully, else default to 18 """ + decimals: BigInt! + + """ If the decimals was succesfully fetched """ + decimalsSuccess: Boolean! +} + +type TokenDailyKpi { + """ created by id, infix '-day-' and unix timestamp, e.g. '0x00..00-day-1657270000' + """ + id: ID! + + """ Token this KPI belongs to """ + token: Token! + + """ Liquidity """ + liquidity: BigInt! + + """ Liquidity for the given timeframe """ + newLiquidity: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Strategy count for the given timeframe """ + newStrategyCount: BigInt! +} + +input TokenDailyKpi_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + liquidity: BigInt + liquidity_not: BigInt + liquidity_gt: BigInt + liquidity_lt: BigInt + liquidity_gte: BigInt + liquidity_lte: BigInt + liquidity_in: [BigInt!] + liquidity_not_in: [BigInt!] + newLiquidity: BigInt + newLiquidity_not: BigInt + newLiquidity_gt: BigInt + newLiquidity_lt: BigInt + newLiquidity_gte: BigInt + newLiquidity_lte: BigInt + newLiquidity_in: [BigInt!] + newLiquidity_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + newStrategyCount: BigInt + newStrategyCount_not: BigInt + newStrategyCount_gt: BigInt + newStrategyCount_lt: BigInt + newStrategyCount_gte: BigInt + newStrategyCount_lte: BigInt + newStrategyCount_in: [BigInt!] + newStrategyCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenDailyKpi_filter] + or: [TokenDailyKpi_filter] +} + +enum TokenDailyKpi_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + liquidity + newLiquidity + strategyCount + newStrategyCount +} + +type TokenHourlyKpi { + """ created by id, infix '-hour-' and unix timestamp, e.g. '0x00..00-hour-1657270000' + """ + id: ID! + + """ Token this KPI belongs to """ + token: Token! + + """ Liquidity """ + liquidity: BigInt! + + """ Liquidity for the given timeframe """ + newLiquidity: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Strategy count for the given timeframe """ + newStrategyCount: BigInt! +} + +input TokenHourlyKpi_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + liquidity: BigInt + liquidity_not: BigInt + liquidity_gt: BigInt + liquidity_lt: BigInt + liquidity_gte: BigInt + liquidity_lte: BigInt + liquidity_in: [BigInt!] + liquidity_not_in: [BigInt!] + newLiquidity: BigInt + newLiquidity_not: BigInt + newLiquidity_gt: BigInt + newLiquidity_lt: BigInt + newLiquidity_gte: BigInt + newLiquidity_lte: BigInt + newLiquidity_in: [BigInt!] + newLiquidity_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + newStrategyCount: BigInt + newStrategyCount_not: BigInt + newStrategyCount_gt: BigInt + newStrategyCount_lt: BigInt + newStrategyCount_gte: BigInt + newStrategyCount_lte: BigInt + newStrategyCount_in: [BigInt!] + newStrategyCount_not_in: [BigInt!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenHourlyKpi_filter] + or: [TokenHourlyKpi_filter] +} + +enum TokenHourlyKpi_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + liquidity + newLiquidity + strategyCount + newStrategyCount +} + +type TokenKpi { + """ Token address """ + id: ID! + + """ Token that belongs to this Kpi """ + token: Token! + + """ Liquidity """ + liquidity: BigInt! + + """ Strategy count """ + strategyCount: BigInt! + + """ Token Strategy APR """ + apr: BigDecimal +} + +input TokenKpi_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + liquidity: BigInt + liquidity_not: BigInt + liquidity_gt: BigInt + liquidity_lt: BigInt + liquidity_gte: BigInt + liquidity_lte: BigInt + liquidity_in: [BigInt!] + liquidity_not_in: [BigInt!] + strategyCount: BigInt + strategyCount_not: BigInt + strategyCount_gt: BigInt + strategyCount_lt: BigInt + strategyCount_gte: BigInt + strategyCount_lte: BigInt + strategyCount_in: [BigInt!] + strategyCount_not_in: [BigInt!] + apr: BigDecimal + apr_not: BigDecimal + apr_gt: BigDecimal + apr_lt: BigDecimal + apr_gte: BigDecimal + apr_lte: BigDecimal + apr_in: [BigDecimal!] + apr_not_in: [BigDecimal!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenKpi_filter] + or: [TokenKpi_filter] +} + +enum TokenKpi_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + liquidity + strategyCount + apr +} + +type TokenStrategy { + """ Token address """ + id: ID! + + """ The Token this strategy belongs to """ + token: Token! + + """ Strategy address """ + strategy: Strategy + + """ Pending strategy address """ + pendingStrategy: Strategy + + """ The Strategy data """ + data: StrategyData! + + """ The block number of this strategy """ + block: BigInt! + + """ The timestamp of this strategy """ + timestamp: BigInt! +} + +input TokenStrategy_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!] + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + strategy: String + strategy_not: String + strategy_gt: String + strategy_lt: String + strategy_gte: String + strategy_lte: String + strategy_in: [String!] + strategy_not_in: [String!] + strategy_contains: String + strategy_contains_nocase: String + strategy_not_contains: String + strategy_not_contains_nocase: String + strategy_starts_with: String + strategy_starts_with_nocase: String + strategy_not_starts_with: String + strategy_not_starts_with_nocase: String + strategy_ends_with: String + strategy_ends_with_nocase: String + strategy_not_ends_with: String + strategy_not_ends_with_nocase: String + strategy_: Strategy_filter + pendingStrategy: String + pendingStrategy_not: String + pendingStrategy_gt: String + pendingStrategy_lt: String + pendingStrategy_gte: String + pendingStrategy_lte: String + pendingStrategy_in: [String!] + pendingStrategy_not_in: [String!] + pendingStrategy_contains: String + pendingStrategy_contains_nocase: String + pendingStrategy_not_contains: String + pendingStrategy_not_contains_nocase: String + pendingStrategy_starts_with: String + pendingStrategy_starts_with_nocase: String + pendingStrategy_not_starts_with: String + pendingStrategy_not_starts_with_nocase: String + pendingStrategy_ends_with: String + pendingStrategy_ends_with_nocase: String + pendingStrategy_not_ends_with: String + pendingStrategy_not_ends_with_nocase: String + pendingStrategy_: Strategy_filter + data: String + data_not: String + data_gt: String + data_lt: String + data_gte: String + data_lte: String + data_in: [String!] + data_not_in: [String!] + data_contains: String + data_contains_nocase: String + data_not_contains: String + data_not_contains_nocase: String + data_starts_with: String + data_starts_with_nocase: String + data_not_starts_with: String + data_not_starts_with_nocase: String + data_ends_with: String + data_ends_with_nocase: String + data_not_ends_with: String + data_not_ends_with_nocase: String + data_: StrategyData_filter + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [TokenStrategy_filter] + or: [TokenStrategy_filter] +} + +enum TokenStrategy_orderBy { + id + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + strategy + strategy__id + strategy__block + strategy__timestamp + pendingStrategy + pendingStrategy__id + pendingStrategy__block + pendingStrategy__timestamp + data + data__id + data__strategyStartDate + data__targetPercentage + data__balance + block + timestamp +} + +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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + rebase: String + rebase_not: String + rebase_gt: String + rebase_lt: String + rebase_gte: String + rebase_lte: String + rebase_in: [String!] + rebase_not_in: [String!] + rebase_contains: String + rebase_contains_nocase: String + rebase_not_contains: String + rebase_not_contains_nocase: String + rebase_starts_with: String + rebase_starts_with_nocase: String + rebase_not_starts_with: String + rebase_not_starts_with_nocase: String + rebase_ends_with: String + rebase_ends_with_nocase: String + rebase_not_ends_with: String + rebase_not_ends_with_nocase: String + rebase_: Rebase_filter + strategies_: Strategy_filter + kpi: String + kpi_not: String + kpi_gt: String + kpi_lt: String + kpi_gte: String + kpi_lte: String + kpi_in: [String!] + kpi_not_in: [String!] + kpi_contains: String + kpi_contains_nocase: String + kpi_not_contains: String + kpi_not_contains_nocase: String + kpi_starts_with: String + kpi_starts_with_nocase: String + kpi_not_starts_with: String + kpi_not_starts_with_nocase: String + kpi_ends_with: String + kpi_ends_with_nocase: String + kpi_not_ends_with: String + kpi_not_ends_with_nocase: String + kpi_: TokenKpi_filter + symbol: String + symbol_not: String + symbol_gt: String + symbol_lt: String + symbol_gte: String + symbol_lte: String + symbol_in: [String!] + symbol_not_in: [String!] + symbol_contains: String + symbol_contains_nocase: String + symbol_not_contains: String + symbol_not_contains_nocase: String + symbol_starts_with: String + symbol_starts_with_nocase: String + symbol_not_starts_with: String + symbol_not_starts_with_nocase: String + symbol_ends_with: String + symbol_ends_with_nocase: String + symbol_not_ends_with: String + symbol_not_ends_with_nocase: String + symbolSuccess: Boolean + symbolSuccess_not: Boolean + symbolSuccess_in: [Boolean!] + symbolSuccess_not_in: [Boolean!] + name: String + name_not: String + name_gt: String + name_lt: String + name_gte: String + name_lte: String + name_in: [String!] + name_not_in: [String!] + name_contains: String + name_contains_nocase: String + name_not_contains: String + name_not_contains_nocase: String + name_starts_with: String + name_starts_with_nocase: String + name_not_starts_with: String + name_not_starts_with_nocase: String + name_ends_with: String + name_ends_with_nocase: String + name_not_ends_with: String + name_not_ends_with_nocase: String + nameSuccess: Boolean + nameSuccess_not: Boolean + nameSuccess_in: [Boolean!] + nameSuccess_not_in: [Boolean!] + decimals: BigInt + decimals_not: BigInt + decimals_gt: BigInt + decimals_lt: BigInt + decimals_gte: BigInt + decimals_lte: BigInt + decimals_in: [BigInt!] + decimals_not_in: [BigInt!] + decimalsSuccess: Boolean + decimalsSuccess_not: Boolean + decimalsSuccess_in: [Boolean!] + decimalsSuccess_not_in: [Boolean!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Token_filter] + or: [Token_filter] +} + +enum Token_orderBy { + id + bentoBox + bentoBox__id + rebase + rebase__id + rebase__base + rebase__elastic + strategies + kpi + kpi__id + kpi__liquidity + kpi__strategyCount + kpi__apr + symbol + symbolSuccess + name + nameSuccess + decimals + decimalsSuccess +} + +type Transaction { + """ Concatenation of transaction hash and log index """ + id: ID! + + """ BentoBox this transaction belongs to """ + bentoBox: BentoBox! + + """ Transaction type """ + type: TransactionType! + + """ User from whom this transaction is made """ + from: User! + + """ User to whom the transaction is sent """ + to: User! + + """ Token this transaction belongs to """ + token: Token! + + """ Amount of this transaction """ + amount: BigInt + + """ Share of this transaction """ + share: BigInt! + + """ Block number of this transaction """ + block: BigInt! + + """ Timestamp of this transaction """ + timestamp: BigInt! +} + +enum TransactionType { + deposit + transfer + withdraw +} + +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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + type: TransactionType + type_not: TransactionType + type_in: [TransactionType!] + type_not_in: [TransactionType!] + from: String + from_not: String + from_gt: String + from_lt: String + from_gte: String + from_lte: String + from_in: [String!] + from_not_in: [String!] + from_contains: String + from_contains_nocase: String + from_not_contains: String + from_not_contains_nocase: String + from_starts_with: String + from_starts_with_nocase: String + from_not_starts_with: String + from_not_starts_with_nocase: String + from_ends_with: String + from_ends_with_nocase: String + from_not_ends_with: String + from_not_ends_with_nocase: String + from_: User_filter + to: String + to_not: String + to_gt: String + to_lt: String + to_gte: String + to_lte: String + to_in: [String!] + to_not_in: [String!] + to_contains: String + to_contains_nocase: String + to_not_contains: String + to_not_contains_nocase: String + to_starts_with: String + to_starts_with_nocase: String + to_not_starts_with: String + to_not_starts_with_nocase: String + to_ends_with: String + to_ends_with_nocase: String + to_not_ends_with: String + to_not_ends_with_nocase: String + to_: User_filter + token: String + token_not: String + token_gt: String + token_lt: String + token_gte: String + token_lte: String + token_in: [String!] + token_not_in: [String!] + token_contains: String + token_contains_nocase: String + token_not_contains: String + token_not_contains_nocase: String + token_starts_with: String + token_starts_with_nocase: String + token_not_starts_with: String + token_not_starts_with_nocase: String + token_ends_with: String + token_ends_with_nocase: String + token_not_ends_with: String + token_not_ends_with_nocase: String + token_: Token_filter + amount: BigInt + amount_not: BigInt + amount_gt: BigInt + amount_lt: BigInt + amount_gte: BigInt + amount_lte: BigInt + amount_in: [BigInt!] + amount_not_in: [BigInt!] + share: BigInt + share_not: BigInt + share_gt: BigInt + share_lt: BigInt + share_gte: BigInt + share_lte: BigInt + share_in: [BigInt!] + share_not_in: [BigInt!] + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [Transaction_filter] + or: [Transaction_filter] +} + +enum Transaction_orderBy { + id + bentoBox + bentoBox__id + type + from + from__id + from__block + from__timestamp + to + to__id + to__block + to__timestamp + token + token__id + token__symbol + token__symbolSuccess + token__name + token__nameSuccess + token__decimals + token__decimalsSuccess + amount + share + block + timestamp +} + +type User { + """ User address """ + id: ID! + + """ BentoBox this user belongs to """ + bentoBox: BentoBox! + + """ MasterContractApprovals that belong to this user """ + masterContractApprovals(skip: Int = 0, first: Int = 100, orderBy: MasterContractApproval_orderBy, orderDirection: OrderDirection, where: MasterContractApproval_filter): [MasterContractApproval!] + + """ Balances that belong to this user """ + balances(skip: Int = 0, first: Int = 100, orderBy: Balance_orderBy, orderDirection: OrderDirection, where: Balance_filter): [Balance!] + + """ Block number of this user """ + block: BigInt! + + """ Timestamp of this user """ + timestamp: BigInt! +} + +input User_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!] + bentoBox: String + bentoBox_not: String + bentoBox_gt: String + bentoBox_lt: String + bentoBox_gte: String + bentoBox_lte: String + bentoBox_in: [String!] + bentoBox_not_in: [String!] + bentoBox_contains: String + bentoBox_contains_nocase: String + bentoBox_not_contains: String + bentoBox_not_contains_nocase: String + bentoBox_starts_with: String + bentoBox_starts_with_nocase: String + bentoBox_not_starts_with: String + bentoBox_not_starts_with_nocase: String + bentoBox_ends_with: String + bentoBox_ends_with_nocase: String + bentoBox_not_ends_with: String + bentoBox_not_ends_with_nocase: String + bentoBox_: BentoBox_filter + masterContractApprovals_: MasterContractApproval_filter + balances_: Balance_filter + block: BigInt + block_not: BigInt + block_gt: BigInt + block_lt: BigInt + block_gte: BigInt + block_lte: BigInt + block_in: [BigInt!] + block_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!] + + """Filter for the block changed event.""" + _change_block: BlockChangedFilter + and: [User_filter] + or: [User_filter] +} + +enum User_orderBy { + id + bentoBox + bentoBox__id + masterContractApprovals + balances + block + timestamp +} + +type _Block_ { + """The hash of the block""" + hash: Bytes + + """The block number""" + number: Int! + + """Integer representation of the timestamp stored in blocks for the chain""" + timestamp: Int + + """The hash of the parent block""" + parentHash: Bytes +} + +"""The type for the top-level _meta field""" +type _Meta_ { + "Information about a specific subgraph block. The hash of the block\nwill be null if the _meta field has a block constraint that asks for\na block number. It will be filled if the _meta field has no block constraint\nand therefore asks for the latest block\n" + block: _Block_! + + """The deployment ID""" + deployment: String! + + """If `true`, the subgraph encountered indexing errors at some past block""" + hasIndexingErrors: Boolean! +} + +enum _SubgraphErrorPolicy_ { + """Data will be returned even if the subgraph has indexing errors""" + allow + + """ + If the subgraph has indexing errors, data will be omitted. The default. + """ + deny +} \ No newline at end of file diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client-new/tsconfig.json index 06fa20dea2..d5fef38894 100644 --- a/packages/graph-client-new/tsconfig.json +++ b/packages/graph-client-new/tsconfig.json @@ -35,6 +35,12 @@ "tadaOutputLocation": "./src/subgraphs/furo/furo-env.d.ts", "tadaTurboLocation": "./src/subgraphs/furo/furo-cache.d.ts" }, + { + "name": "bentobox", + "schema": "./src/subgraphs/bentobox/schema.graphql", + "tadaOutputLocation": "./src/subgraphs/bentobox/bentobox-env.d.ts", + "tadaTurboLocation": "./src/subgraphs/bentobox/bentobox-cache.d.ts" + }, { "name": "master-chef-v1", "schema": "./src/subgraphs/master-chef-v1/schema.graphql", From 86849c0e82e7bc146e66d181b15a1f3e330dad04 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Thu, 30 May 2024 17:11:48 +0200 Subject: [PATCH 039/119] perf(apps/evm): add cache to analytics api --- apps/evm/src/app/analytics/api/bentobox/route.ts | 6 +++++- apps/evm/src/app/analytics/api/charts/route.ts | 6 +++++- apps/evm/src/app/analytics/api/furoTokens/route.ts | 6 +++++- apps/evm/src/app/analytics/api/pools/count/route.ts | 6 +++++- apps/evm/src/app/analytics/api/pools/route.ts | 6 +++++- 5 files changed, 25 insertions(+), 5 deletions(-) diff --git a/apps/evm/src/app/analytics/api/bentobox/route.ts b/apps/evm/src/app/analytics/api/bentobox/route.ts index 1f9348c2e4..3159171c2d 100644 --- a/apps/evm/src/app/analytics/api/bentobox/route.ts +++ b/apps/evm/src/app/analytics/api/bentobox/route.ts @@ -14,5 +14,9 @@ export async function GET(request: Request) { return new Response(result.error.message, { status: 422 }) } const tokens = await getBentoBoxTokens(result.data) - return NextResponse.json(tokens) + return NextResponse.json(tokens, { + headers: { + 'Cache-Control': 'public, max-age=60, stale-while-revalidate=600', + }, + }) } diff --git a/apps/evm/src/app/analytics/api/charts/route.ts b/apps/evm/src/app/analytics/api/charts/route.ts index 41ae475807..f44c352a70 100644 --- a/apps/evm/src/app/analytics/api/charts/route.ts +++ b/apps/evm/src/app/analytics/api/charts/route.ts @@ -8,5 +8,9 @@ export async function GET(request: Request) { const { searchParams } = new URL(request.url) const networks = searchParams.get('networks') as string const data = await getCharts({ networks }) - return NextResponse.json(data) + return NextResponse.json(data, { + headers: { + 'Cache-Control': 'public, max-age=60, stale-while-revalidate=600', + }, + }) } diff --git a/apps/evm/src/app/analytics/api/furoTokens/route.ts b/apps/evm/src/app/analytics/api/furoTokens/route.ts index fe16b36ade..c33aa02ca2 100644 --- a/apps/evm/src/app/analytics/api/furoTokens/route.ts +++ b/apps/evm/src/app/analytics/api/furoTokens/route.ts @@ -14,5 +14,9 @@ export async function GET(request: Request) { return new Response(result.error.message, { status: 422 }) } const tokens = await getFuroTokens(result.data) - return NextResponse.json(tokens) + return NextResponse.json(tokens, { + headers: { + 'Cache-Control': 'public, max-age=60, stale-while-revalidate=600', + }, + }) } diff --git a/apps/evm/src/app/analytics/api/pools/count/route.ts b/apps/evm/src/app/analytics/api/pools/count/route.ts index 6267db265d..261db7e93f 100644 --- a/apps/evm/src/app/analytics/api/pools/count/route.ts +++ b/apps/evm/src/app/analytics/api/pools/count/route.ts @@ -22,5 +22,9 @@ export async function GET(request: Request) { return new Response(result.error.message, { status: 422 }) } const count = await getPoolCount(result.data) - return NextResponse.json(count) + return NextResponse.json(count, { + headers: { + 'Cache-Control': 'public, max-age=60, stale-while-revalidate=600', + }, + }) } diff --git a/apps/evm/src/app/analytics/api/pools/route.ts b/apps/evm/src/app/analytics/api/pools/route.ts index c98b5ca5ca..67e71cd4ab 100644 --- a/apps/evm/src/app/analytics/api/pools/route.ts +++ b/apps/evm/src/app/analytics/api/pools/route.ts @@ -28,5 +28,9 @@ export async function GET(request: Request) { return new Response(result.error.message, { status: 422 }) } const pools = await getPools(result.data) - return NextResponse.json(pools) + return NextResponse.json(pools, { + headers: { + 'Cache-Control': 'public, max-age=60, stale-while-revalidate=600', + }, + }) } From c468b337c3c4aed370277a16b58711515f9a4a98 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 3 Jun 2024 12:48:32 +0200 Subject: [PATCH 040/119] fix: graphPool/user endpoint --- apps/evm/src/app/pool/api/user/route.ts | 6 ++++- .../evm/src/lib/hooks/api/useUserPositions.ts | 14 +++++------ apps/evm/src/types/index.ts | 4 ++-- apps/evm/src/ui/pool/columns.tsx | 4 ++-- .../src/composite/combined-user-positions.ts | 15 ++++++++++-- .../sushi-v2/transforms/pool-v2-to-std.ts | 23 +++++++++++++++---- .../sushi-v3/transforms/pool-v3-to-std.ts | 8 +++---- .../src/types/sushi-pool/sushi-pool-base.ts | 8 +++---- 8 files changed, 55 insertions(+), 27 deletions(-) diff --git a/apps/evm/src/app/pool/api/user/route.ts b/apps/evm/src/app/pool/api/user/route.ts index 3217f94ba6..c8638778dd 100644 --- a/apps/evm/src/app/pool/api/user/route.ts +++ b/apps/evm/src/app/pool/api/user/route.ts @@ -38,5 +38,9 @@ export async function GET(request: Request) { } const args = result.data const data = await getUser(args) - return NextResponse.json(data) + return NextResponse.json(data, { + headers: { + 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', + }, + }) } diff --git a/apps/evm/src/lib/hooks/api/useUserPositions.ts b/apps/evm/src/lib/hooks/api/useUserPositions.ts index 6d8938dcd6..fea27b283e 100644 --- a/apps/evm/src/lib/hooks/api/useUserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useUserPositions.ts @@ -1,7 +1,7 @@ 'use client' import { Pools, parseArgs } from '@sushiswap/client' -import { UserPosition } from '@sushiswap/graph-client' +import { CombinedV2UserPosition } from '@sushiswap/graph-client-new/composite/combined-user-positions' import { useMemo } from 'react' import { ChainId } from 'sushi/chain' import useSWR from 'swr' @@ -18,28 +18,28 @@ export function getUserPositionsUrl(args: GetUserArgs) { return `/pool/api/user/${parseArgs(args)}` } -const transformPositions = (positions?: UserPosition[], pools?: Pools) => +const transformPositions = (positions?: CombinedV2UserPosition[], pools?: Pools) => positions && pools ? positions .map((position) => { - const pool = pools.find((pool) => pool.id === position.pool) - + const pool = pools.find((pool) => pool.id === position.id) return { ...position, pool } }) - .filter((position): position is PositionWithPool => !!position.pool) + .filter((position): position is PositionWithPool => !!position.id) : undefined export function useUserPositions(args: GetUserArgs, shouldFetch = true) { - const { data: positions } = useSWR( + const { data: positions } = useSWR( shouldFetch && args.id ? getUserPositionsUrl(args) : null, async (url) => fetch(url).then((data) => data.json()), ) const _positions = useMemo( - () => positions?.map((position) => position.pool) || [], + () => positions?.map((position) => position.id) || [], [positions], ) const pools = useGraphPools(_positions) + console.log({pools}) const isValidating = shouldFetch && diff --git a/apps/evm/src/types/index.ts b/apps/evm/src/types/index.ts index e8b0db0f75..226f1f26cb 100644 --- a/apps/evm/src/types/index.ts +++ b/apps/evm/src/types/index.ts @@ -10,8 +10,8 @@ export type SwapChainId = | SushiSwapV3ChainId import { Pool } from '@sushiswap/client' -import { UserPosition } from '@sushiswap/graph-client' +import { CombinedV2UserPosition } from '@sushiswap/graph-client-new/composite/combined-user-positions' -export interface PositionWithPool extends Omit { +export interface PositionWithPool extends Omit { pool: Pool } diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 12c4c78fe5..2f5afbc556 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -362,7 +362,7 @@ export const VALUE_COLUMN: ColumnDef = { id: 'value', header: 'Value', accessorFn: (row) => - (Number(row.balance) / Number(row.pool.totalSupply)) * + (Number(row.unstakedBalance) / Number(row.pool.totalSupply)) * Number(row.pool.liquidityUSD), cell: (props) => ( = { } > {formatUSD( - (Number(props.row.original.balance) / + (Number(props.row.original.unstakedBalance) / Number(props.row.original.pool.totalSupply)) * Number(props.row.original.pool.liquidityUSD), )} diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts index 2b6a3d0758..05e3694c90 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -10,6 +10,7 @@ import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, isMiniChefChainId, isSushiSwapV2ChainId, + type SushiSwapV2ChainId, } from 'sushi/config' import type { GetChefUserPositions } from './chef-user-positions' @@ -40,9 +41,10 @@ export async function getCombinedUserPositions({ chainIds: sushiSwapChainIds, fetch: getSushiV2LiquidityPositions, variables: { - first: Infinity, + first: 1000, where: { user, + liquidityTokenBalance_gt: '0', }, }, }) @@ -53,7 +55,7 @@ export async function getCombinedUserPositions({ chainIds: miniChefChainIds, fetch: getSushiV2LiquidityPositions, variables: { - first: Infinity, + first: 1000, where: { user, }, @@ -92,3 +94,12 @@ export async function getCombinedUserPositions({ return { data, errors } } + +export type CombinedV2UserPosition = { + user: `0x${string}` + unstakedBalance: string + stakedBalance: string + chainId: SushiSwapV2ChainId + address: `0x${string}` + id: `${string}:${string}` +} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts index eb4d727d13..fb80c01365 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts @@ -1,7 +1,10 @@ import type { ResultOf } from 'gql.tada' import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v2/fragments/pool-fields' import type { SushiSwapV2ChainId } from 'sushi/config' -import { getIdFromChainIdAddress } from 'sushi/format' +import { + getIdFromChainIdAddress, + withoutScientificNotation, +} from 'sushi/format' import { type SushiPoolV2, SushiSwapProtocol } from 'sushi/types' type ToPick = @@ -31,9 +34,19 @@ export function transformPoolV2ToStd( protocol: SushiSwapProtocol.SUSHISWAP_V2, - reserve0: BigInt(pool.reserve0), - reserve1: BigInt(pool.reserve1), - liquidity: BigInt(pool.totalSupply), + // reserve0: BigInt(pool.reserve0), + // reserve1: BigInt(pool.reserve1), + + reserve0: withoutScientificNotation( + (Number(pool.reserve0) * 10 ** Number(pool.token0.decimals)).toFixed(), + )!, + reserve1: withoutScientificNotation( + (Number(pool.reserve1) * 10 ** Number(pool.token1.decimals)).toFixed(), + )!, + + liquidity: withoutScientificNotation( + (Number(pool.totalSupply) * 10 ** 18).toFixed(), + )!, liquidityUSD: Number(pool.liquidityUSD), volumeUSD: Number(pool.volumeUSD), @@ -56,6 +69,6 @@ export function transformPoolV2ToStd( symbol: pool.token1.symbol, }, - txCount: BigInt(pool.txCount), + txCount: pool.txCount.toString(), } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts index 727effb1f5..cecf8983c7 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts @@ -44,9 +44,9 @@ export function transformPoolV3ToStd( protocol: SushiSwapProtocol.SUSHISWAP_V3, - reserve0: BigInt(pool.reserve0), - reserve1: BigInt(pool.reserve1), - liquidity: BigInt(pool.liquidity), + reserve0: pool.reserve0, + reserve1: pool.reserve1, + liquidity: pool.liquidity, liquidityUSD: Number(pool.liquidityUSD), volumeUSD: Number(pool.volumeUSD), @@ -69,6 +69,6 @@ export function transformPoolV3ToStd( symbol: pool.token1.symbol, }, - txCount: BigInt(pool.txCount), + txCount: pool.txCount, } } diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts index d1836c9207..636ad8b966 100644 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts @@ -13,9 +13,9 @@ export type SushiPoolBase = { swapFee: number // twapEnabled: boolean - reserve0: bigint - reserve1: bigint - liquidity: bigint + reserve0: string + reserve1: string + liquidity: string liquidityUSD: number @@ -26,7 +26,7 @@ export type SushiPoolBase = { // token0Price: bigint // token1Price: bigint - txCount: bigint + txCount: string protocol: SushiSwapProtocol } From b2833be7969f2df2afe0d24d7a2ca1ed07c413ee Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 3 Jun 2024 15:55:07 +0000 Subject: [PATCH 041/119] fix(apps/analytics): chain id types --- apps/evm/src/app/analytics/vault/table.tsx | 3 ++- apps/evm/src/ui/pool/PoolsFiltersProvider.tsx | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/evm/src/app/analytics/vault/table.tsx b/apps/evm/src/app/analytics/vault/table.tsx index 1feb3d07c7..231a1556e1 100644 --- a/apps/evm/src/app/analytics/vault/table.tsx +++ b/apps/evm/src/app/analytics/vault/table.tsx @@ -27,6 +27,7 @@ import { } from './use-bentobox-tokens' import { usePoolFilters } from 'src/ui/pool' +import { BentoBoxChainId, isBentoBoxChainId } from 'sushi/config' const COLUMNS: ColumnDef[] = [ { @@ -100,7 +101,7 @@ export const BentoBoxTokenTable: FC = () => { const args = useMemo( () => ({ - chainIds, + chainIds: chainIds.filter(isBentoBoxChainId) as BentoBoxChainId[], tokenSymbols, }), [chainIds, tokenSymbols], diff --git a/apps/evm/src/ui/pool/PoolsFiltersProvider.tsx b/apps/evm/src/ui/pool/PoolsFiltersProvider.tsx index ce8f59bb01..3dde44c6f3 100644 --- a/apps/evm/src/ui/pool/PoolsFiltersProvider.tsx +++ b/apps/evm/src/ui/pool/PoolsFiltersProvider.tsx @@ -11,7 +11,7 @@ import { useContext, useMemo, } from 'react' -import { SUPPORTED_CHAIN_IDS } from 'src/config' +import { SUPPORTED_CHAIN_IDS, isSupportedChainId } from 'src/config' import { z } from 'zod' import { useTypedSearchParams } from '../../lib/hooks' @@ -39,7 +39,8 @@ export const poolFiltersSchema = z.object({ chainIds !== null && chainIds !== ',' ? chainIds.split(',').map((chainId) => Number(chainId)) : SUPPORTED_CHAIN_IDS, - ), + ) + .transform((chainIds) => chainIds.filter(isSupportedChainId)), protocols: z .string() .transform((protocols) => From c0a3cb759c27a41aef265d890e0d44208c59bf18 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 3 Jun 2024 15:56:30 +0000 Subject: [PATCH 042/119] chore: format --- apps/evm/src/lib/hooks/api/useUserPositions.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/evm/src/lib/hooks/api/useUserPositions.ts b/apps/evm/src/lib/hooks/api/useUserPositions.ts index fea27b283e..56032b84aa 100644 --- a/apps/evm/src/lib/hooks/api/useUserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useUserPositions.ts @@ -18,7 +18,10 @@ export function getUserPositionsUrl(args: GetUserArgs) { return `/pool/api/user/${parseArgs(args)}` } -const transformPositions = (positions?: CombinedV2UserPosition[], pools?: Pools) => +const transformPositions = ( + positions?: CombinedV2UserPosition[], + pools?: Pools, +) => positions && pools ? positions .map((position) => { @@ -39,7 +42,7 @@ export function useUserPositions(args: GetUserArgs, shouldFetch = true) { [positions], ) const pools = useGraphPools(_positions) - console.log({pools}) + console.log({ pools }) const isValidating = shouldFetch && From 3b42420642a69ea48826d2a53b05c2843839c8c4 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 4 Jun 2024 10:19:18 +0200 Subject: [PATCH 043/119] refactor: remove graphPools endpoint, add /user-with-pools --- apps/evm/src/app/pool/api/graphPools/route.ts | 20 --- .../src/app/pool/api/user-with-pools/route.ts | 80 ++++++++++ apps/evm/src/lib/graph.ts | 69 +++++++++ apps/evm/src/lib/hooks/api/useGraphPool.ts | 2 +- apps/evm/src/lib/hooks/api/useGraphPools.ts | 142 ------------------ .../evm/src/lib/hooks/api/useUserPositions.ts | 36 ++--- apps/evm/src/types/index.ts | 2 +- apps/evm/src/ui/pool/PoolNameCell.tsx | 2 +- apps/evm/src/ui/pool/PositionCardList.tsx | 4 +- apps/evm/src/ui/pool/PositionsTab.tsx | 1 - apps/evm/src/ui/pool/PositionsTable.tsx | 9 +- apps/evm/src/ui/pool/columns.tsx | 56 +------ .../src/composite/combined-user-positions.ts | 35 +++-- .../sushi-v2/fragments/pool-fields.ts | 1 + .../src/subgraphs/sushi-v2/queries/pools.ts | 24 ++- 15 files changed, 211 insertions(+), 272 deletions(-) delete mode 100644 apps/evm/src/app/pool/api/graphPools/route.ts create mode 100644 apps/evm/src/app/pool/api/user-with-pools/route.ts delete mode 100644 apps/evm/src/lib/hooks/api/useGraphPools.ts diff --git a/apps/evm/src/app/pool/api/graphPools/route.ts b/apps/evm/src/app/pool/api/graphPools/route.ts deleted file mode 100644 index b4d393e457..0000000000 --- a/apps/evm/src/app/pool/api/graphPools/route.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { NextResponse } from 'next/server' -import { getV2GraphPools } from 'src/lib/graph' -import { z } from 'zod' - -export const revalidate = 60 - -const schema = z.object({ - ids: z.string().transform((ids) => ids.split(',')), -}) - -export async function GET(request: Request) { - const { searchParams } = new URL(request.url) - const ids = searchParams.get('ids') - const result = schema.safeParse({ ids }) - if (!result.success) { - return new Response(result.error.message, { status: 422 }) - } - const pool = await getV2GraphPools(result.data.ids) - return NextResponse.json(pool) -} diff --git a/apps/evm/src/app/pool/api/user-with-pools/route.ts b/apps/evm/src/app/pool/api/user-with-pools/route.ts new file mode 100644 index 0000000000..7dce0b6f21 --- /dev/null +++ b/apps/evm/src/app/pool/api/user-with-pools/route.ts @@ -0,0 +1,80 @@ +import { getPools } from '@sushiswap/client' +import { NextResponse } from 'next/server' +import { getUser, getV2GraphPools, transformGraphPool } from 'src/lib/graph' +import { ChainId } from 'sushi/chain' +import { isSushiSwapV2ChainId } from 'sushi/config' +import { Address } from 'viem' +import { z } from 'zod' + +export const revalidate = 15 + +const schema = z.object({ + id: z + .string() + .refine((id) => id.startsWith('0x')) + .transform((id) => id.toLowerCase() as Address), + chainIds: z.nullable(z.string()).transform((chainIds) => + chainIds + ?.split(',') + .map((chainId) => Number(chainId) as ChainId) + .filter(isSushiSwapV2ChainId), + ), +}) + +export async function GET(request: Request) { + const { searchParams } = new URL(request.url) + const id = searchParams.get('id') + const chainIds = searchParams.get('chainIds') + if (!id) return new Response(null, { status: 422 }) + const result = schema.safeParse({ id, chainIds }) + if (!result.success) { + return new Response(result.error.message, { status: 400 }) + } + const args = result.data + const data = await getUser(args) + const poolIds = data.map((position) => position.id) + + const [graphPoolsPromise, dbPoolsPromise] = await Promise.allSettled([ + getV2GraphPools(poolIds), + getPools({ + ids: poolIds, + }), + ]) + const graphPools = + graphPoolsPromise.status === 'fulfilled' ? graphPoolsPromise.value : [] + const dbPools = + dbPoolsPromise.status === 'fulfilled' ? dbPoolsPromise.value : [] + + const userPositions = + data + .map((position) => { + const pool = dbPools?.find((pool) => pool.id === position.id) + const graphPool = graphPools?.find( + (graphPool) => graphPool.id === position.address, + ) + + if (!pool && !graphPool) return undefined + + if (!graphPool) return { ...position, pool } + if (!pool) return { ...position, pool: transformGraphPool(graphPool) } + + return { + ...position, + pool: { + ...pool, + totalSupply: String(graphPool.totalSupply), + liquidityUSD: String(graphPool.liquidityUSD), + volumeUSD: String(graphPool.volumeUSD), + feeApr: Number(pool.feeApr1d), + totalApr: Number(pool.feeApr1d) + pool.incentiveApr, + }, + } + }) + .filter((pool) => pool !== undefined) ?? [] + + return NextResponse.json(userPositions, { + headers: { + 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', + }, + }) +} diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 5eaaf57d3b..1201ccb1a0 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -18,6 +18,7 @@ import { } from 'sushi/config' import { Address } from 'viem' import { bentoBoxTokensSchema, furoTokensSchema } from './schema' +import { Pool, Protocol } from '@prisma/client' export async function getUser(args: { id?: Address @@ -203,3 +204,71 @@ export const getCharts = async (query?: { networks: string }) => { return [tvl, vol] } + + +export function transformGraphPool( + graphPool: Awaited>[0], +): Pool { + return { + id: graphPool.id, + address: graphPool.address, + name: `${graphPool.token0.symbol}-${graphPool.token1.symbol}`, + chainId: graphPool.chainId, + protocol: Protocol.SUSHISWAP_V2, + swapFee: 30 / 10000, + twapEnabled: false, + totalSupply: String(graphPool.totalSupply), + liquidityUSD: String(graphPool.liquidityUSD), + volumeUSD: String(graphPool.volumeUSD), + feeApr1h: 0, + feeApr1d: 0, + feeApr1w: 0, + feeApr1m: 0, + totalApr1h: 0, + totalApr1d: 0, + totalApr1w: 0, + totalApr1m: 0, + incentiveApr: 0, + isIncentivized: false, + wasIncentivized: false, + fees1h: '0', + fees1d: '0', + fees1w: '0', + fees1m: '0', + feesChange1h: 0, + feesChange1d: 0, + feesChange1w: 0, + feesChange1m: 0, + volume1h: '0', + volume1d: '0', + volume1w: '0', + volume1m: '0', + volumeChange1h: 0, + volumeChange1d: 0, + volumeChange1w: 0, + volumeChange1m: 0, + liquidityUSDChange1h: 0, + liquidityUSDChange1d: 0, + liquidityUSDChange1w: 0, + liquidityUSDChange1m: 0, + isBlacklisted: false, + token0: { + id: `${graphPool.chainId}:${graphPool.token0.id}`, + address: graphPool.token0.id, + name: graphPool.token0.name, + symbol: graphPool.token0.symbol, + decimals: Number(graphPool.token0.decimals), + }, + token1: { + id: `${graphPool.chainId}:${graphPool.token1.id}`, + address: graphPool.token1.id, + name: graphPool.token1.name, + symbol: graphPool.token1.symbol, + decimals: Number(graphPool.token1.decimals), + }, + incentives: [], + hasEnabledSteerVault: false, + hadEnabledSteerVault: false, + steerVaults: [], + } satisfies Pool +} \ No newline at end of file diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index 1e5229f58f..60550a5501 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -34,7 +34,7 @@ export const useGraphPool = (pool: Pool) => { token1, liquidityToken, liquidityNative: graphPool ? Number(graphPool?.reserveETH) : null, - liquidityUSD: graphPool ? Number(graphPool?.reserveUSD) : null, + liquidityUSD: graphPool ? Number(graphPool?.liquidityUSD) : null, liquidity1dChange: graphPool ? Number(graphPool?.liquidity1dChange ?? 0) : null, diff --git a/apps/evm/src/lib/hooks/api/useGraphPools.ts b/apps/evm/src/lib/hooks/api/useGraphPools.ts deleted file mode 100644 index e97204520c..0000000000 --- a/apps/evm/src/lib/hooks/api/useGraphPools.ts +++ /dev/null @@ -1,142 +0,0 @@ -'use client' - -import { Pool, Pools, Protocol, parseArgs } from '@sushiswap/client' -import { useMemo } from 'react' -import useSWR from 'swr' - -import { usePools } from '@sushiswap/client/hooks' -import { getV2GraphPools } from '../../graph' - -function transformGraphPool( - graphPool: Awaited>[0], -): Pool { - return { - id: graphPool.id, - address: graphPool.address, - name: `${graphPool.token0.symbol}-${graphPool.token1.symbol}`, - chainId: graphPool.chainId, - protocol: Protocol.SUSHISWAP_V2, - swapFee: 30 / 10000, - twapEnabled: false, - totalSupply: String(graphPool.totalSupply), - liquidityUSD: String(graphPool.reserveUSD), - volumeUSD: String(graphPool.volumeUSD), - feeApr1h: 0, - feeApr1d: 0, - feeApr1w: 0, - feeApr1m: 0, - totalApr1h: 0, - totalApr1d: 0, - totalApr1w: 0, - totalApr1m: 0, - incentiveApr: 0, - isIncentivized: false, - wasIncentivized: false, - fees1h: '0', - fees1d: '0', - fees1w: '0', - fees1m: '0', - feesChange1h: 0, - feesChange1d: 0, - feesChange1w: 0, - feesChange1m: 0, - volume1h: '0', - volume1d: '0', - volume1w: '0', - volume1m: '0', - volumeChange1h: 0, - volumeChange1d: 0, - volumeChange1w: 0, - volumeChange1m: 0, - liquidityUSDChange1h: 0, - liquidityUSDChange1d: 0, - liquidityUSDChange1w: 0, - liquidityUSDChange1m: 0, - isBlacklisted: false, - token0: { - id: `${graphPool.chainId}:${graphPool.token0.id}`, - address: graphPool.token0.id, - name: graphPool.token0.name, - symbol: graphPool.token0.symbol, - decimals: Number(graphPool.token0.decimals), - }, - token1: { - id: `${graphPool.chainId}:${graphPool.token1.id}`, - address: graphPool.token1.id, - name: graphPool.token1.name, - symbol: graphPool.token1.symbol, - decimals: Number(graphPool.token1.decimals), - }, - incentives: [], - hasEnabledSteerVault: false, - hadEnabledSteerVault: false, - steerVaults: [], - } satisfies Pool -} - -export function getGraphPoolsUrl(poolIds: string[]) { - return `/pools/api/graphPools${parseArgs({ ids: poolIds })}` -} - -// Returns the Pools type, to make everyone's life easier -// Updates possibly stale values with subgraph values -export const useGraphPools = (poolIds: string[]): Pools => { - const { - data: graphPools, - isLoading: isGraphPoolsLoading, - error: graphPoolsError, - } = useSWR>>( - poolIds.length > 0 ? getGraphPoolsUrl(poolIds) : null, - async () => getV2GraphPools(poolIds), - ) - - const { - data: pools, - isLoading: isPoolsLoading, - error: poolsError, - } = usePools({ args: { ids: poolIds } }) - - return useMemo(() => { - if ( - (isGraphPoolsLoading && !graphPoolsError) || - (isPoolsLoading && !poolsError) - ) { - return [] - } - - if (pools || graphPools) { - return poolIds - .map((poolId) => { - const pool = pools?.find((pool) => pool.id === poolId) - const graphPool = graphPools?.find( - (graphPool) => graphPool.id === poolId, - ) - - if (!pool && !graphPool) return undefined - - if (!graphPool) return pool - if (!pool) return transformGraphPool(graphPool) - - return { - ...pool, - totalSupply: String(graphPool.totalSupply), - liquidityUSD: String(graphPool.reserveUSD), - volumeUSD: String(graphPool.volumeUSD), - feeApr: Number(pool.feeApr1d), - totalApr: Number(pool.feeApr1d) + pool.incentiveApr, - } - }) - .filter((pool) => pool !== undefined) as Pools - } - - return [] - }, [ - graphPools, - isGraphPoolsLoading, - isPoolsLoading, - poolIds, - pools, - graphPoolsError, - poolsError, - ]) -} diff --git a/apps/evm/src/lib/hooks/api/useUserPositions.ts b/apps/evm/src/lib/hooks/api/useUserPositions.ts index fea27b283e..5392ee93ee 100644 --- a/apps/evm/src/lib/hooks/api/useUserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useUserPositions.ts @@ -1,45 +1,32 @@ 'use client' -import { Pools, parseArgs } from '@sushiswap/client' -import { CombinedV2UserPosition } from '@sushiswap/graph-client-new/composite/combined-user-positions' +import { parseArgs } from '@sushiswap/client' import { useMemo } from 'react' +import { PositionWithPool } from 'src/types' import { ChainId } from 'sushi/chain' import useSWR from 'swr' -import { PositionWithPool } from '../../../types' -import { useGraphPools } from './useGraphPools' export interface GetUserArgs { id?: string chainIds?: ChainId[] } -export function getUserPositionsUrl(args: GetUserArgs) { - return `/pool/api/user/${parseArgs(args)}` +export function getUserPositionsWithPoolsUrl(args: GetUserArgs) { + return `/pool/api/user-with-pools/${parseArgs(args)}` } -const transformPositions = (positions?: CombinedV2UserPosition[], pools?: Pools) => - positions && pools - ? positions - .map((position) => { - const pool = pools.find((pool) => pool.id === position.id) - return { ...position, pool } - }) - .filter((position): position is PositionWithPool => !!position.id) - : undefined export function useUserPositions(args: GetUserArgs, shouldFetch = true) { - const { data: positions } = useSWR( - shouldFetch && args.id ? getUserPositionsUrl(args) : null, + const { data: positions } = useSWR( + shouldFetch && args.id ? getUserPositionsWithPoolsUrl(args) : null, async (url) => fetch(url).then((data) => data.json()), ) - - const _positions = useMemo( - () => positions?.map((position) => position.id) || [], + + const pools = useMemo( + () => positions?.map((position) => position.pool) || [], [positions], ) - const pools = useGraphPools(_positions) - console.log({pools}) const isValidating = shouldFetch && @@ -48,7 +35,7 @@ export function useUserPositions(args: GetUserArgs, shouldFetch = true) { return useMemo( () => ({ data: !isValidating - ? transformPositions(positions, pools)?.filter((position) => + ? positions?.filter((position) => Array.isArray(args.chainIds) ? args.chainIds?.includes(position.chainId as ChainId) : true, @@ -56,6 +43,7 @@ export function useUserPositions(args: GetUserArgs, shouldFetch = true) { : undefined, isValidating, }), - [args.chainIds, isValidating, pools, positions], + [args.chainIds, isValidating, positions], ) } + diff --git a/apps/evm/src/types/index.ts b/apps/evm/src/types/index.ts index 226f1f26cb..94b49203bd 100644 --- a/apps/evm/src/types/index.ts +++ b/apps/evm/src/types/index.ts @@ -9,7 +9,7 @@ export type SwapChainId = | SushiSwapV2ChainId | SushiSwapV3ChainId -import { Pool } from '@sushiswap/client' +import { Pool } from '@prisma/client' import { CombinedV2UserPosition } from '@sushiswap/graph-client-new/composite/combined-user-positions' export interface PositionWithPool extends Omit { diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index edd59e1f15..7421e12a7a 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -45,7 +45,7 @@ export const ProtocolBadge: Record = { export const PoolNameCell: FC> = ({ original }) => { const { token0, token1 } = useTokensFromPool(original.pool) - const incentives = original.pool.incentives.filter((i) => i.rewardPerDay > 0) + const incentives = original.pool?.incentives?.filter((i) => i.rewardPerDay > 0) return (
diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index 3910c66227..9685a98cfa 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -1,4 +1,3 @@ -import { Protocol } from '@sushiswap/client' import React, { FC, ReactNode } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { useUserPositions } from 'src/lib/hooks' @@ -13,7 +12,7 @@ interface PositionCardList { } const value = (position: PositionWithPool) => - (Number(position.balance + position.stakedBalance) / + (Number(position.unstakedBalance + position.stakedBalance) / Number(position.pool.totalSupply)) * Number(position.pool.liquidityUSD) @@ -30,7 +29,6 @@ export const PositionCardList: FC = ({ children }) => { positions: isValidating ? new Array(6).fill(null) : (userPositions || []) - .filter((el) => el.pool.protocol === Protocol.SUSHISWAP_V2) .sort((a, b) => value(b) - value(a)), isLoading: isValidating, })} diff --git a/apps/evm/src/ui/pool/PositionsTab.tsx b/apps/evm/src/ui/pool/PositionsTab.tsx index 1817b77662..269855db5a 100644 --- a/apps/evm/src/ui/pool/PositionsTab.tsx +++ b/apps/evm/src/ui/pool/PositionsTab.tsx @@ -91,7 +91,6 @@ export const PositionsTab = () => { `/pool/${row.pool.id}`} /> diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index 6279494971..44d579d720 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -1,4 +1,3 @@ -import { Protocol } from '@sushiswap/client' import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' import { Slot } from '@sushiswap/ui/components/slot' import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' @@ -22,7 +21,6 @@ const COLUMNS = [ ] satisfies ColumnDef[] interface PositionsTableProps { - protocol: Protocol onRowClick?(row: PositionWithPool): void rowLink?(row: PositionWithPool): string } @@ -30,7 +28,6 @@ interface PositionsTableProps { const tableState = { sorting: [{ id: 'value', desc: true }] } export const PositionsTable: FC = ({ - protocol, onRowClick, rowLink, }) => { @@ -65,8 +62,8 @@ export const PositionsTable: FC = ({ const chainFiltered = searchFiltered.filter((el) => chainIds.includes(el.chainId), ) - return chainFiltered.filter((el) => el.pool?.protocol === protocol) - }, [positions, tokenSymbols, chainIds, protocol]) + return chainFiltered + }, [positions, tokenSymbols, chainIds]) const rowRenderer = useCallback( (row: Row, rowNode: ReactNode) => { @@ -102,7 +99,7 @@ export const PositionsTable: FC = ({ data={_positions} pagination={true} onPaginationChange={setPaginationState} - state={{ + state={{ ...tableState, pagination: paginationState, }} diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 2f5afbc556..b8fb9418fd 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -272,53 +272,13 @@ export const NETWORK_COLUMN: ColumnDef = { }, } -const WithDeprecationNotice: FC<{ children: ReactNode }> = ({ children }) => { - return ( -
-
{children}
- - - -
-
- Deprecated Soon -
-
-
- -
-
- - Pool soon to be deprecated - - - Trident Pools will soon be deprecated, please remove your - assets ASAP. - -
-
-
-
-
-
- ) -} - export const NAME_COLUMN_POSITION_WITH_POOL: ColumnDef< PositionWithPool, unknown > = { id: 'name', header: 'Name', - cell: (props) => - props.row.original.pool.protocol === Protocol.BENTOBOX_CLASSIC || - props.row.original.pool.protocol === Protocol.BENTOBOX_STABLE ? ( - - - - ) : ( - - ), + cell: (props) => , meta: { skeleton: (
@@ -341,13 +301,7 @@ export const APR_COLUMN: ColumnDef = { cell: (props) => ( {formatPercent(props.row.original.pool.totalApr1d)} @@ -366,12 +320,6 @@ export const VALUE_COLUMN: ColumnDef = { Number(row.pool.liquidityUSD), cell: (props) => ( {formatUSD( (Number(props.row.original.unstakedBalance) / diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts index 05e3694c90..0d5cbce77c 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -4,6 +4,7 @@ import { fetchMultichain } from 'src/multichain/fetch-multichain' import { type GetSushiV2LiquidityPositions, getSushiV2LiquidityPositions, + type SushiV2Pools, } from 'src/subgraphs/sushi-v2' import { MINICHEF_SUPPORTED_CHAIN_IDS, @@ -69,23 +70,25 @@ export async function getCombinedUserPositions({ ]), ) - const data = poolIds.map((poolId) => { - const sushiSwapPosition = sushiSwapV2LiquidityPositions.find( - (position) => position.pool.id === poolId, - ) - const chefPosition = chefUserPositions.find( - (position) => position.pool.id === poolId, - ) + const data = poolIds + .map((poolId) => { + const sushiSwapPosition = sushiSwapV2LiquidityPositions.find( + (position) => position.pool.id === poolId, + ) + const chefPosition = chefUserPositions.find( + (position) => position.pool.id === poolId, + ) - const pool = sushiSwapPosition?.pool ?? chefPosition?.pool - - return { - ...pool, - user, - unstakedBalance: sushiSwapPosition?.balance ?? '0', - stakedBalance: chefPosition?.balance ?? '0', - } - }) + const pool = sushiSwapPosition?.pool ?? chefPosition?.pool + if (!pool) return null + return { + ...pool, + user, + unstakedBalance: sushiSwapPosition?.balance ?? '0', + stakedBalance: chefPosition?.balance ?? '0', + } + }) + .filter((p) => p !== null) as CombinedV2UserPosition[] const errors = [ ...sushiSwapV2LiquidityPositionErrors, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts index e359b18970..15237d4653 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -21,6 +21,7 @@ export const PoolFieldsFragment = graphql(` reserve1 totalSupply liquidityUSD: reserveUSD + liquidityNative: reserveETH # token0Price # token1Price volumeUSD diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index 71ab32e595..5536ac70cc 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -10,6 +10,7 @@ import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' +import { getIdFromChainIdAddress } from 'sushi' export const SushiV2PoolsQuery = graphql( ` @@ -39,9 +40,26 @@ export async function getSushiV2Pools({ }) if (result) { - return result.pools.map((pool) => - convertIdToMultichainId(copyIdToAddress(addChainId(chainId, pool))), - ) + return result.pools.map((pool) => ({ + ...convertIdToMultichainId(copyIdToAddress(addChainId(chainId, pool))), + name: `${pool.token0.symbol}-${pool.token1.symbol}`, + token0: { + id: getIdFromChainIdAddress(chainId, pool.token0.id), + address: pool.token0.id, + chainId, + decimals: Number(pool.token0.decimals), + name: pool.token0.name, + symbol: pool.token0.symbol, + }, + token1: { + id: getIdFromChainIdAddress(chainId, pool.token1.id), + address: pool.token1.id, + chainId, + decimals: Number(pool.token1.decimals), + name: pool.token1.name, + symbol: pool.token1.symbol, + }, + })) } throw new FetchError(chainId, 'Failed to fetch pools') From 4090dd8bdb1dc9dbd804dbd4941fd6c639ac1a26 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 4 Jun 2024 08:25:40 +0000 Subject: [PATCH 044/119] chore: format --- apps/evm/src/lib/graph.ts | 3 +-- apps/evm/src/lib/hooks/api/useUserPositions.ts | 5 +---- apps/evm/src/ui/pool/PoolNameCell.tsx | 4 +++- apps/evm/src/ui/pool/PositionCardList.tsx | 3 +-- apps/evm/src/ui/pool/PositionsTab.tsx | 4 +--- apps/evm/src/ui/pool/PositionsTable.tsx | 2 +- apps/evm/src/ui/pool/columns.tsx | 3 +-- .../src/composite/combined-user-positions.ts | 2 +- 8 files changed, 10 insertions(+), 16 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 1201ccb1a0..743b462513 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -205,7 +205,6 @@ export const getCharts = async (query?: { networks: string }) => { return [tvl, vol] } - export function transformGraphPool( graphPool: Awaited>[0], ): Pool { @@ -271,4 +270,4 @@ export function transformGraphPool( hadEnabledSteerVault: false, steerVaults: [], } satisfies Pool -} \ No newline at end of file +} diff --git a/apps/evm/src/lib/hooks/api/useUserPositions.ts b/apps/evm/src/lib/hooks/api/useUserPositions.ts index 5392ee93ee..1e3bbfc22c 100644 --- a/apps/evm/src/lib/hooks/api/useUserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useUserPositions.ts @@ -6,7 +6,6 @@ import { PositionWithPool } from 'src/types' import { ChainId } from 'sushi/chain' import useSWR from 'swr' - export interface GetUserArgs { id?: string chainIds?: ChainId[] @@ -16,13 +15,12 @@ export function getUserPositionsWithPoolsUrl(args: GetUserArgs) { return `/pool/api/user-with-pools/${parseArgs(args)}` } - export function useUserPositions(args: GetUserArgs, shouldFetch = true) { const { data: positions } = useSWR( shouldFetch && args.id ? getUserPositionsWithPoolsUrl(args) : null, async (url) => fetch(url).then((data) => data.json()), ) - + const pools = useMemo( () => positions?.map((position) => position.pool) || [], [positions], @@ -46,4 +44,3 @@ export function useUserPositions(args: GetUserArgs, shouldFetch = true) { [args.chainIds, isValidating, positions], ) } - diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index 7421e12a7a..ac2a84b82b 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -45,7 +45,9 @@ export const ProtocolBadge: Record = { export const PoolNameCell: FC> = ({ original }) => { const { token0, token1 } = useTokensFromPool(original.pool) - const incentives = original.pool?.incentives?.filter((i) => i.rewardPerDay > 0) + const incentives = original.pool?.incentives?.filter( + (i) => i.rewardPerDay > 0, + ) return (
diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index 9685a98cfa..a3752be999 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -28,8 +28,7 @@ export const PositionCardList: FC = ({ children }) => { {children({ positions: isValidating ? new Array(6).fill(null) - : (userPositions || []) - .sort((a, b) => value(b) - value(a)), + : (userPositions || []).sort((a, b) => value(b) - value(a)), isLoading: isValidating, })} diff --git a/apps/evm/src/ui/pool/PositionsTab.tsx b/apps/evm/src/ui/pool/PositionsTab.tsx index 269855db5a..e1879f3a9a 100644 --- a/apps/evm/src/ui/pool/PositionsTab.tsx +++ b/apps/evm/src/ui/pool/PositionsTab.tsx @@ -90,9 +90,7 @@ export const PositionsTab = () => { - `/pool/${row.pool.id}`} - /> + `/pool/${row.pool.id}`} /> diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index 44d579d720..dd27c4ab17 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -99,7 +99,7 @@ export const PositionsTable: FC = ({ data={_positions} pagination={true} onPaginationChange={setPaginationState} - state={{ + state={{ ...tableState, pagination: paginationState, }} diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index b8fb9418fd..161d78736c 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -319,8 +319,7 @@ export const VALUE_COLUMN: ColumnDef = { (Number(row.unstakedBalance) / Number(row.pool.totalSupply)) * Number(row.pool.liquidityUSD), cell: (props) => ( - + {formatUSD( (Number(props.row.original.unstakedBalance) / Number(props.row.original.pool.totalSupply)) * diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/combined-user-positions.ts index 145251d64d..6b84eed2f8 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/combined-user-positions.ts @@ -79,7 +79,7 @@ export async function getCombinedUserPositions({ ) const pool = sushiSwapPosition?.pool ?? chefPosition?.pool - if (!pool) return null + if (!pool) return null return { ...pool, user, From 76081970496adde0ac61af3bab5e12841aa1b645 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 4 Jun 2024 13:31:40 +0200 Subject: [PATCH 045/119] fix: use liquidity instead of total supply --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index 60550a5501..83655ed76b 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -60,7 +60,7 @@ export const useGraphPool = (pool: Pool) => { : null, totalSupply: liquidityToken && graphPool - ? Amount.fromRawAmount(liquidityToken, graphPool.totalSupply) + ? Amount.fromRawAmount(liquidityToken, graphPool.liquidity) : null, }, } From 10fdc4f39075d6e8022cbfc257283209d264d8d3 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 5 Jun 2024 10:40:39 +0000 Subject: [PATCH 046/119] feat(pkgs/graph-client): more type cooking --- apps/evm/src/app/internal/tokens/lib/index.ts | 4 +- apps/evm/src/lib/hooks/api/index.ts | 2 +- .../lib/hooks/api/useSushiV2UserPositions.ts | 32 ++++++++++ .../evm/src/lib/hooks/api/useUserPositions.ts | 46 -------------- apps/evm/src/types/index.ts | 7 --- apps/evm/src/ui/pool/PositionCardList.tsx | 21 ++++--- apps/evm/src/ui/pool/PositionsTable.tsx | 21 ++++--- apps/evm/src/ui/pool/columns.tsx | 63 ++++++++----------- ... => sushi-v2-staked-unstaked-positions.ts} | 33 +++++----- .../src/subgraphs/sushi-v2/queries/tokens.ts | 2 +- packages/sushi/src/types/index.ts | 1 + packages/sushi/src/types/sushi-pool/index.ts | 7 ++- .../src/types/sushi-pool/maybe-nested-pool.ts | 13 ++++ .../sushi-pool/sushi-pool-if-incentivized.ts | 6 ++ .../types/sushi-pool/sushi-pool-with-aprs.ts | 27 ++++++++ ...ith-pool.ts => sushi-pool-with-buckets.ts} | 0 .../sushi-pool/sushi-pool-with-incentives.ts | 35 +++++++++++ .../sushi/src/types/sushi-position/index.ts | 3 + .../sushi-position/sushi-position-base.ts | 7 +++ .../sushi-position/sushi-position-staked.ts | 7 +++ .../sushi-position-with-pool.ts | 9 +++ 21 files changed, 213 insertions(+), 133 deletions(-) create mode 100644 apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts delete mode 100644 apps/evm/src/lib/hooks/api/useUserPositions.ts rename packages/graph-client-new/src/composite/{combined-user-positions.ts => sushi-v2-staked-unstaked-positions.ts} (80%) create mode 100644 packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts rename packages/sushi/src/types/sushi-pool/{buckets-with-pool.ts => sushi-pool-with-buckets.ts} (100%) create mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts create mode 100644 packages/sushi/src/types/sushi-position/index.ts create mode 100644 packages/sushi/src/types/sushi-position/sushi-position-base.ts create mode 100644 packages/sushi/src/types/sushi-position/sushi-position-staked.ts create mode 100644 packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts diff --git a/apps/evm/src/app/internal/tokens/lib/index.ts b/apps/evm/src/app/internal/tokens/lib/index.ts index 4a396cfc41..cfe4b8c41e 100644 --- a/apps/evm/src/app/internal/tokens/lib/index.ts +++ b/apps/evm/src/app/internal/tokens/lib/index.ts @@ -40,8 +40,8 @@ export async function getTokens({ if (tokenCombined) { tokensCombined.set(token.id, { ...token, - tradeVolumeUSD: String( - Number(token.tradeVolumeUSD) + Number(tokenCombined.tradeVolumeUSD), + volumeUSD: String( + Number(token.volumeUSD) + Number(tokenCombined.volumeUSD), ), totalLiquidity: String( Number(token.totalLiquidity) + Number(tokenCombined.totalLiquidity), diff --git a/apps/evm/src/lib/hooks/api/index.ts b/apps/evm/src/lib/hooks/api/index.ts index e515a8d356..2729093d2d 100644 --- a/apps/evm/src/lib/hooks/api/index.ts +++ b/apps/evm/src/lib/hooks/api/index.ts @@ -1,3 +1,3 @@ export * from './useGraphPool' export * from './usePoolGraphData' -export * from './useUserPositions' +export * from './useSushiV2UserPositions' diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts new file mode 100644 index 0000000000..022ed9adec --- /dev/null +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -0,0 +1,32 @@ +'use client' + +import { parseArgs } from '@sushiswap/client' +import type { + GetSushiV2StakedUnstakedPositions, + SushiV2StakedUnstakedPosition, +} from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' +import { useQuery } from '@tanstack/react-query' +import { ChainId } from 'sushi/chain' + +export interface GetUserArgs { + id?: string + chainIds?: ChainId[] +} + +export function getUserPositionsWithPoolsUrl( + args: GetSushiV2StakedUnstakedPositions, +) { + return `/pool/api/user-with-pools/${parseArgs(args)}` +} + +export function useSushiV2UserPositions( + args: GetSushiV2StakedUnstakedPositions, + shouldFetch = true, +) { + return useQuery({ + queryKey: [getUserPositionsWithPoolsUrl(args)], + queryFn: () => + fetch(getUserPositionsWithPoolsUrl(args)).then((data) => data.json()), + enabled: Boolean(shouldFetch && args.user), + }) +} diff --git a/apps/evm/src/lib/hooks/api/useUserPositions.ts b/apps/evm/src/lib/hooks/api/useUserPositions.ts deleted file mode 100644 index 1e3bbfc22c..0000000000 --- a/apps/evm/src/lib/hooks/api/useUserPositions.ts +++ /dev/null @@ -1,46 +0,0 @@ -'use client' - -import { parseArgs } from '@sushiswap/client' -import { useMemo } from 'react' -import { PositionWithPool } from 'src/types' -import { ChainId } from 'sushi/chain' -import useSWR from 'swr' - -export interface GetUserArgs { - id?: string - chainIds?: ChainId[] -} - -export function getUserPositionsWithPoolsUrl(args: GetUserArgs) { - return `/pool/api/user-with-pools/${parseArgs(args)}` -} - -export function useUserPositions(args: GetUserArgs, shouldFetch = true) { - const { data: positions } = useSWR( - shouldFetch && args.id ? getUserPositionsWithPoolsUrl(args) : null, - async (url) => fetch(url).then((data) => data.json()), - ) - - const pools = useMemo( - () => positions?.map((position) => position.pool) || [], - [positions], - ) - - const isValidating = - shouldFetch && - (!positions || !pools || (positions.length > 0 && pools.length === 0)) - - return useMemo( - () => ({ - data: !isValidating - ? positions?.filter((position) => - Array.isArray(args.chainIds) - ? args.chainIds?.includes(position.chainId as ChainId) - : true, - ) - : undefined, - isValidating, - }), - [args.chainIds, isValidating, positions], - ) -} diff --git a/apps/evm/src/types/index.ts b/apps/evm/src/types/index.ts index 94b49203bd..09c94761e8 100644 --- a/apps/evm/src/types/index.ts +++ b/apps/evm/src/types/index.ts @@ -8,10 +8,3 @@ export type SwapChainId = | TridentChainId | SushiSwapV2ChainId | SushiSwapV3ChainId - -import { Pool } from '@prisma/client' -import { CombinedV2UserPosition } from '@sushiswap/graph-client-new/composite/combined-user-positions' - -export interface PositionWithPool extends Omit { - pool: Pool -} diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index a3752be999..e5ff1c7d9f 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -1,35 +1,38 @@ +import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import React, { FC, ReactNode } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' -import { useUserPositions } from 'src/lib/hooks' -import { PositionWithPool } from 'src/types' +import { useSushiV2UserPositions } from 'src/lib/hooks' import { useAccount } from 'wagmi' interface PositionCardList { children({ positions, isLoading, - }: { positions: PositionWithPool[]; isLoading: boolean }): ReactNode + }: { + positions: SushiV2StakedUnstakedPosition[] + isLoading: boolean + }): ReactNode } -const value = (position: PositionWithPool) => +const value = (position: SushiV2StakedUnstakedPosition) => (Number(position.unstakedBalance + position.stakedBalance) / - Number(position.pool.totalSupply)) * + Number(position.pool.liquidity)) * Number(position.pool.liquidityUSD) export const PositionCardList: FC = ({ children }) => { const { address } = useAccount() - const { data: userPositions, isValidating } = useUserPositions({ - id: address, + const { data: userPositions, isLoading } = useSushiV2UserPositions({ + user: address!, chainIds: SUPPORTED_CHAIN_IDS, }) return ( <> {children({ - positions: isValidating + positions: isLoading ? new Array(6).fill(null) : (userPositions || []).sort((a, b) => value(b) - value(a)), - isLoading: isValidating, + isLoading, })} ) diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index dd27c4ab17..9cfec31655 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -3,9 +3,10 @@ import { Slot } from '@sushiswap/ui/components/slot' import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' -import { useUserPositions } from 'src/lib/hooks' -import { PositionWithPool } from 'src/types' +import { useSushiV2UserPositions } from 'src/lib/hooks' +import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' +import type { SushiSwapV2ChainId } from 'sushi/config' import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' import { @@ -18,11 +19,11 @@ const COLUMNS = [ NAME_COLUMN_POSITION_WITH_POOL, VALUE_COLUMN, APR_COLUMN, -] satisfies ColumnDef[] +] satisfies ColumnDef[] interface PositionsTableProps { - onRowClick?(row: PositionWithPool): void - rowLink?(row: PositionWithPool): string + onRowClick?(row: SushiV2StakedUnstakedPosition): void + rowLink?(row: SushiV2StakedUnstakedPosition): string } const tableState = { sorting: [{ id: 'value', desc: true }] } @@ -38,9 +39,9 @@ export const PositionsTable: FC = ({ pageSize: 10, }) - const { data: positions, isValidating } = useUserPositions( + const { data: positions, isLoading } = useSushiV2UserPositions( { - id: address, + user: address!, chainIds: SUPPORTED_CHAIN_IDS, }, !!address, @@ -60,13 +61,13 @@ export const PositionsTable: FC = ({ : true, ) const chainFiltered = searchFiltered.filter((el) => - chainIds.includes(el.chainId), + (chainIds as SushiSwapV2ChainId[]).includes(el.pool.chainId), ) return chainFiltered }, [positions, tokenSymbols, chainIds]) const rowRenderer = useCallback( - (row: Row, rowNode: ReactNode) => { + (row: Row, rowNode: ReactNode) => { if (onRowClick) return ( = ({ = { id: 'poolName', @@ -256,24 +254,25 @@ export const FEES_COLUMN: ColumnDef = { }, } -export const NETWORK_COLUMN: ColumnDef = { - id: 'network', - header: 'Network', - cell: (props) => ( - - ), - meta: { - skeleton: , - }, -} +export const NETWORK_COLUMN: ColumnDef = + { + id: 'network', + header: 'Network', + cell: (props) => ( + + ), + meta: { + skeleton: , + }, + } export const NAME_COLUMN_POSITION_WITH_POOL: ColumnDef< - PositionWithPool, + SushiV2StakedUnstakedPosition, unknown > = { id: 'name', @@ -294,7 +293,7 @@ export const NAME_COLUMN_POSITION_WITH_POOL: ColumnDef< }, } -export const APR_COLUMN: ColumnDef = { +export const APR_COLUMN: ColumnDef = { id: 'apr', header: 'APR', accessorFn: (row) => row.pool.totalApr1d, @@ -312,17 +311,17 @@ export const APR_COLUMN: ColumnDef = { }, } -export const VALUE_COLUMN: ColumnDef = { +export const VALUE_COLUMN: ColumnDef = { id: 'value', header: 'Value', accessorFn: (row) => - (Number(row.unstakedBalance) / Number(row.pool.totalSupply)) * + (Number(row.unstakedBalance) / Number(row.pool.liquidity)) * Number(row.pool.liquidityUSD), cell: (props) => ( {formatUSD( (Number(props.row.original.unstakedBalance) / - Number(props.row.original.pool.totalSupply)) * + Number(props.row.original.pool.liquidity)) * Number(props.row.original.pool.liquidityUSD), )} @@ -332,18 +331,6 @@ export const VALUE_COLUMN: ColumnDef = { }, } -export const VOLUME_COLUMN: ColumnDef = { - id: 'volume', - header: 'Volume (24h)', - cell: (props) => - formatUSD(props.row.original.pool.volume1d).includes('NaN') - ? '$0.00' - : formatUSD(props.row.original.pool.volume1d), - meta: { - skeleton: , - }, -} - export const NAME_COLUMN_V3: ColumnDef< ConcentratedLiquidityPositionWithV3Pool, unknown diff --git a/packages/graph-client-new/src/composite/combined-user-positions.ts b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts similarity index 80% rename from packages/graph-client-new/src/composite/combined-user-positions.ts rename to packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts index 6b84eed2f8..c5816dada7 100644 --- a/packages/graph-client-new/src/composite/combined-user-positions.ts +++ b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts @@ -10,21 +10,29 @@ import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, isMiniChefChainId, isSushiSwapV2ChainId, - type SushiSwapV2ChainId, } from 'sushi/config' +import type { + SushiPoolV2, + SushiPositionStaked, + SushiPositionWithPool, +} from 'sushi/types' import type { GetChefUserPositions } from './chef-user-positions' -export type GetCombinedUserPositions = { +export type GetSushiV2StakedUnstakedPositions = { user: Hex } & ChainIdsVariable< | NonNullable[number] | GetSushiV2LiquidityPositions['chainId'] > +export type SushiV2StakedUnstakedPosition = SushiPositionStaked< + SushiPositionWithPool +> + /** * @brief Get staked AND unstaked user positions */ -export async function getCombinedUserPositions({ +export async function getSushiV2StakedUnstakedPositions({ chainIds = [ ...new Set([ ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, @@ -32,7 +40,7 @@ export async function getCombinedUserPositions({ ]), ], user, -}: GetCombinedUserPositions) { +}: GetSushiV2StakedUnstakedPositions) { const sushiSwapChainIds = chainIds.filter(isSushiSwapV2ChainId) const { data: sushiSwapV2LiquidityPositions, @@ -81,13 +89,13 @@ export async function getCombinedUserPositions({ const pool = sushiSwapPosition?.pool ?? chefPosition?.pool if (!pool) return null return { - ...pool, user, - unstakedBalance: sushiSwapPosition?.balance ?? '0', - stakedBalance: chefPosition?.balance ?? '0', + unstakedBalance: BigInt(sushiSwapPosition?.balance ?? '0'), + stakedBalance: BigInt(chefPosition?.balance ?? '0'), + pool, } }) - .filter((p) => p !== null) as CombinedV2UserPosition[] + .filter((p) => p !== null) as SushiV2StakedUnstakedPosition[] const errors = [ ...sushiSwapV2LiquidityPositionErrors, @@ -96,12 +104,3 @@ export async function getCombinedUserPositions({ return { data, errors } } - -export type CombinedV2UserPosition = { - user: `0x${string}` - unstakedBalance: string - stakedBalance: string - chainId: SushiSwapV2ChainId - address: `0x${string}` - id: `${string}:${string}` -} diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 2da327968f..93fe318e04 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -16,7 +16,7 @@ export const SushiV2TokensQuery = graphql(` name symbol decimals - tradeVolumeUSD + volumeUSD: tradeVolumeUSD totalLiquidity } } diff --git a/packages/sushi/src/types/index.ts b/packages/sushi/src/types/index.ts index a47f132a0c..7b9a3ac7b7 100644 --- a/packages/sushi/src/types/index.ts +++ b/packages/sushi/src/types/index.ts @@ -1,4 +1,5 @@ export * from './sushi-pool/index' +export * from './sushi-position/index' export type * from './address' export type * from './contract' export type * from './id' diff --git a/packages/sushi/src/types/sushi-pool/index.ts b/packages/sushi/src/types/sushi-pool/index.ts index 5f438d93d1..458ca746ad 100644 --- a/packages/sushi/src/types/sushi-pool/index.ts +++ b/packages/sushi/src/types/sushi-pool/index.ts @@ -1,6 +1,9 @@ -export * from './buckets-with-pool' +export * from './protocol' export * from './sushi-pool-base' export * from './sushi-pool-history' +export * from './sushi-pool-if-incentivized' export * from './sushi-pool-v2' export * from './sushi-pool-v3' -export * from './protocol' +export * from './sushi-pool-with-aprs' +export * from './sushi-pool-with-buckets' +export * from './sushi-pool-with-incentives' diff --git a/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts b/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts new file mode 100644 index 0000000000..ea3d912af1 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts @@ -0,0 +1,13 @@ +import type { SushiPoolBase } from 'sushi/types' + +export type MaybeNestedPool = + | T + | { + pool: T + } + +export function unnestPool( + maybeNestedPool: MaybeNestedPool, +) { + return 'pool' in maybeNestedPool ? maybeNestedPool.pool : maybeNestedPool +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts new file mode 100644 index 0000000000..bc3facfa62 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts @@ -0,0 +1,6 @@ +import type { SushiPoolBase } from 'sushi/types' + +export type SushiPoolIfIncentivized = T & { + isIncentivized: boolean + wasIncentivized: boolean +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts new file mode 100644 index 0000000000..cc54d5a1c9 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts @@ -0,0 +1,27 @@ +import type { SushiPoolBase } from 'sushi/types' + +export type SushiPoolWithAprs = T & + SushiPoolWithIncentiveApr & + SushiPoolWithFeeAprs & + SushiPoolWithFeeAprs + +export type SushiPoolWithIncentiveApr = + T & { + incentiveApr: number + } + +export type SushiPoolWithFeeAprs = + T & { + feeApr1h: number + feeApr1d: number + feeApr1w: number + feeApr1m: number + } + +export type SushiPoolWithTotalAprs = + T & { + totalApr1h: number + totalApr1d: number + totalApr1w: number + totalApr1m: number + } diff --git a/packages/sushi/src/types/sushi-pool/buckets-with-pool.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts similarity index 100% rename from packages/sushi/src/types/sushi-pool/buckets-with-pool.ts rename to packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts new file mode 100644 index 0000000000..a6e601e25a --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts @@ -0,0 +1,35 @@ +import type { + Address, + SushiPoolBase, + SushiPoolWithIncentiveApr, + Token, +} from 'sushi/types' + +export enum SushiRewarderType { + Primary = 'Primary', + Secondary = 'Secondary', +} + +export enum SushiChefType { + MasterChefV1 = 'MasterChefV1', + MasterChefV2 = 'MasterChefV2', + MiniChef = 'MiniChef', + Merkl = 'Merkl', +} + +export type SushiIncentive = { + id: string + chainId: number + rewarderAddress: Address + rewardPerDay: number + rewardToken: Token + pid: number + rewarderType: SushiRewarderType + chefType: SushiChefType +} + +export type SushiPoolWithIncentives = + T & + SushiPoolWithIncentiveApr & { + incentives: SushiIncentive[] + } diff --git a/packages/sushi/src/types/sushi-position/index.ts b/packages/sushi/src/types/sushi-position/index.ts new file mode 100644 index 0000000000..9988a7667f --- /dev/null +++ b/packages/sushi/src/types/sushi-position/index.ts @@ -0,0 +1,3 @@ +export * from './sushi-position-staked' +export * from './sushi-position-with-pool' +export * from './sushi-position-base' diff --git a/packages/sushi/src/types/sushi-position/sushi-position-base.ts b/packages/sushi/src/types/sushi-position/sushi-position-base.ts new file mode 100644 index 0000000000..4ebf74869d --- /dev/null +++ b/packages/sushi/src/types/sushi-position/sushi-position-base.ts @@ -0,0 +1,7 @@ +import type { Address, SushiPoolBase } from 'sushi/types' + +export type SushiPositionBase = { + user: Address + unstakedBalance: bigint + pool: Pick +} diff --git a/packages/sushi/src/types/sushi-position/sushi-position-staked.ts b/packages/sushi/src/types/sushi-position/sushi-position-staked.ts new file mode 100644 index 0000000000..df758f153e --- /dev/null +++ b/packages/sushi/src/types/sushi-position/sushi-position-staked.ts @@ -0,0 +1,7 @@ +import type { SushiPositionBase } from 'sushi/types' + +export type SushiPositionStaked< + T extends SushiPositionBase = SushiPositionBase, +> = T & { + stakedBalance: bigint +} diff --git a/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts b/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts new file mode 100644 index 0000000000..ca91856f77 --- /dev/null +++ b/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts @@ -0,0 +1,9 @@ +import type { SushiPoolBase } from 'sushi/types' +import { SushiPositionBase } from './sushi-position-base' + +export type SushiPositionWithPool< + Pool extends SushiPoolBase = SushiPoolBase, + Position extends SushiPositionBase = SushiPositionBase, +> = Omit & { + pool: Pool +} From fc4ca8d09532fd33ff0b2f1a309844be1ad34d63 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 5 Jun 2024 14:16:18 +0200 Subject: [PATCH 047/119] fix: tada v2 pool page --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 32 +++--- .../evm/src/lib/hooks/api/usePoolGraphData.ts | 37 +++--- apps/evm/src/ui/pool/PoolChartGraph.tsx | 5 +- apps/evm/src/ui/pool/PoolChartV2.tsx | 4 +- apps/evm/src/ui/pool/PoolComposition.tsx | 4 +- apps/evm/src/ui/pool/PoolPageV2.tsx | 3 +- apps/evm/src/ui/pool/PoolStats.tsx | 4 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 43 ++++--- .../src/composite/sushi-historic-pool.ts | 106 +++++++++--------- .../blocks/queries/block-historic.ts | 2 +- packages/sushi/src/config/subgraph/hosts.ts | 8 +- .../types/sushi-pool/sushi-pool-history.ts | 10 +- turbo.json | 3 +- 13 files changed, 129 insertions(+), 132 deletions(-) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index 83655ed76b..796d56fb33 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -33,23 +33,23 @@ export const useGraphPool = (pool: Pool) => { token0, token1, liquidityToken, - liquidityNative: graphPool ? Number(graphPool?.reserveETH) : null, + // liquidityNative: graphPool ? Number(graphPool?.reserveETH) : null, liquidityUSD: graphPool ? Number(graphPool?.liquidityUSD) : null, - liquidity1dChange: graphPool - ? Number(graphPool?.liquidity1dChange ?? 0) - : null, - fees1d: graphPool ? Number(graphPool?.fees1d ?? 0) : null, - fees1dChange: graphPool ? Number(graphPool?.fees1dChange ?? 0) : null, - volume1d: graphPool ? Number(graphPool?.volume1d ?? 0) : null, - volume1dChange: graphPool - ? Number(graphPool?.volume1dChange ?? 0) - : null, - txCount1d: graphPool ? Number(graphPool?.txCount1d ?? 0) : null, - txCount1dChange: graphPool - ? Number(graphPool?.txCount1dChange ?? 0) - : null, - hourSnapshots: graphPool?.hourSnapshots ?? null, - daySnapshots: graphPool?.daySnapshots ?? null, + // liquidity1dChange: graphPool + // ? Number(graphPool?.liquidity1dChange ?? 0) + // : null, + // fees1d: graphPool ? Number(graphPool?.fees1d ?? 0) : null, + // fees1dChange: graphPool ? Number(graphPool?.fees1dChange ?? 0) : null, + // volume1d: graphPool ? Number(graphPool?.volume1d ?? 0) : null, + // volume1dChange: graphPool + // ? Number(graphPool?.volume1dChange ?? 0) + // : null, + // txCount1d: graphPool ? Number(graphPool?.txCount1d ?? 0) : null, + // txCount1dChange: graphPool + // ? Number(graphPool?.txCount1dChange ?? 0) + // : null, + // hourSnapshots: graphPool?.hourSnapshots ?? null, + // daySnapshots: graphPool?.daySnapshots ?? null, reserve0: token0 && graphPool ? Amount.fromRawAmount(token0, graphPool.reserve0) diff --git a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts index da65679b68..ef4b0c09e7 100644 --- a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts +++ b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts @@ -1,18 +1,16 @@ 'use client' -import { getBuiltGraphSDK } from '@sushiswap/graph-client' +import { getSushiHistoricPool } from '@sushiswap/graph-client-new/composite/sushi-historic-pool' import { useQuery } from '@tanstack/react-query' -import { ChainId, chainShortName } from 'sushi/chain' +import { SushiSwapV2ChainId } from 'sushi/config' import { Amount, Token } from 'sushi/currency' interface UsePoolGraphDataParams { poolAddress: string - chainId: ChainId + chainId: SushiSwapV2ChainId enabled?: boolean } -const sdk = getBuiltGraphSDK() - export const usePoolGraphData = ({ poolAddress, chainId, @@ -21,14 +19,15 @@ export const usePoolGraphData = ({ return useQuery({ queryKey: ['usePoolGraphData', { poolAddress, chainId }], queryFn: async () => { - const { pair } = await sdk.PairById({ - id: `${chainShortName[chainId]}:${poolAddress}`, + const pair = await getSushiHistoricPool({ + chainId, + id: poolAddress, }) if (pair) { const token0 = new Token({ chainId: pair.chainId, - address: pair.token0.id, + address: pair.token0.address, decimals: pair.token0.decimals, symbol: pair.token0.symbol, name: pair.token0.name, @@ -36,7 +35,7 @@ export const usePoolGraphData = ({ const token1 = new Token({ chainId: pair.chainId, - address: pair.token1.id, + address: pair.token1.address, decimals: pair.token1.decimals, symbol: pair.token1.symbol, name: pair.token1.name, @@ -48,17 +47,17 @@ export const usePoolGraphData = ({ swapFee: Number(pair.swapFee), reserve0: Amount.fromRawAmount(token0, pair.reserve0), reserve1: Amount.fromRawAmount(token1, pair.reserve1), - liquidityNative: Number(pair.liquidityNative), + liquidityNative: 0, liquidityUSD: Number(pair.liquidityUSD), - liquidity1dChange: Number(pair.liquidity1dChange ?? 0), - fees1d: Number(pair.fees1d ?? 0), - fees1dChange: Number(pair.fees1dChange ?? 0), - volume1d: Number(pair.volume1d ?? 0), - volume1dChange: Number(pair.volume1dChange ?? 0), - txCount1d: Number(pair.txCount1d ?? 0), - txCount1dChange: Number(pair.txCount1dChange ?? 0), - hourSnapshots: pair.hourSnapshots, - daySnapshots: pair.daySnapshots, + liquidity1dChange: 0, + fees1d: Number(pair.feesUSD1d), + fees1dChange: Number(pair.feesUSD1dChange), + volume1d: Number(pair.volumeUSD1d), + volume1dChange: Number(pair.volumeUSD1dChange), + txCount1d: Number(pair.txCount1d), + txCount1dChange: Number(pair.txCount1dChange), + hourSnapshots: pair.poolHourData, + daySnapshots: pair.poolDayData, } } diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index ba1fde18a5..9f2bbb0d0b 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -13,19 +13,20 @@ import ReactECharts from 'echarts-for-react' import { EChartsOption } from 'echarts-for-react/lib/types' import { FC, useCallback, useMemo } from 'react' import { usePoolGraphData } from 'src/lib/hooks' -import { ChainId } from 'sushi/chain' + import { formatUSD } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' import resolveConfig from 'tailwindcss/resolveConfig' import { PoolChartPeriod, chartPeriods } from './PoolChartPeriods' import { PoolChartType } from './PoolChartTypes' +import { SushiSwapV2ChainId } from 'sushi/config' interface PoolChartProps { chart: PoolChartType.Volume | PoolChartType.Fees | PoolChartType.TVL period: PoolChartPeriod address: string - chainId: ChainId + chainId: SushiSwapV2ChainId } const tailwind = resolveConfig(tailwindConfig) diff --git a/apps/evm/src/ui/pool/PoolChartV2.tsx b/apps/evm/src/ui/pool/PoolChartV2.tsx index 0ab0e1d222..7f88076d17 100644 --- a/apps/evm/src/ui/pool/PoolChartV2.tsx +++ b/apps/evm/src/ui/pool/PoolChartV2.tsx @@ -2,11 +2,11 @@ import { Card } from '@sushiswap/ui' import React, { FC, useState } from 'react' -import { ChainId } from 'sushi/chain' import { PoolChartGraph } from './PoolChartGraph' import { PoolChartPeriod, PoolChartPeriods } from './PoolChartPeriods' import { PoolChartType, PoolChartTypes } from './PoolChartTypes' +import { SushiSwapV2ChainId } from 'sushi/config' const charts = [ PoolChartType.Volume, @@ -23,7 +23,7 @@ const periods = [ interface PoolChartV2Props { address: string - chainId: ChainId + chainId: SushiSwapV2ChainId } const PoolChartV2: FC = ({ address, chainId }) => { diff --git a/apps/evm/src/ui/pool/PoolComposition.tsx b/apps/evm/src/ui/pool/PoolComposition.tsx index 092e0a00ee..e58f7d549e 100644 --- a/apps/evm/src/ui/pool/PoolComposition.tsx +++ b/apps/evm/src/ui/pool/PoolComposition.tsx @@ -14,7 +14,7 @@ import { } from '@sushiswap/ui/components/card' import React, { FC, useMemo } from 'react' import { usePoolGraphData, useTokenAmountDollarValues } from 'src/lib/hooks' -import { ChainId } from 'sushi/chain' +import { SushiSwapV2ChainId } from 'sushi/config' import { formatUSD } from 'sushi/format' interface PoolCompositionProps { @@ -24,7 +24,7 @@ interface PoolCompositionProps { export const PoolComposition: FC = ({ pool }) => { const { data, isLoading: isPoolLoading } = usePoolGraphData({ poolAddress: pool.address, - chainId: pool.chainId as ChainId, + chainId: pool.chainId as SushiSwapV2ChainId, }) const amounts = [data?.reserve0, data?.reserve1] diff --git a/apps/evm/src/ui/pool/PoolPageV2.tsx b/apps/evm/src/ui/pool/PoolPageV2.tsx index de6f7c6003..fecea8221b 100644 --- a/apps/evm/src/ui/pool/PoolPageV2.tsx +++ b/apps/evm/src/ui/pool/PoolPageV2.tsx @@ -15,6 +15,7 @@ import { PoolPositionStakedProvider } from './PoolPositionStakedProvider' import { PoolRewards } from './PoolRewards' import { PoolStats } from './PoolStats' import { UnknownTokenAlert } from './UnknownTokenAlert' +import { SushiSwapV2ChainId } from 'sushi/config' interface PoolPageV2 { pool: Awaited> @@ -48,7 +49,7 @@ export const PoolPageV2: FC = ({ pool, tab }) => {
diff --git a/apps/evm/src/ui/pool/PoolStats.tsx b/apps/evm/src/ui/pool/PoolStats.tsx index 2f4bfaeaca..3d0f6f4572 100644 --- a/apps/evm/src/ui/pool/PoolStats.tsx +++ b/apps/evm/src/ui/pool/PoolStats.tsx @@ -12,7 +12,7 @@ import { import { SkeletonText } from '@sushiswap/ui/components/skeleton' import { FC } from 'react' import { usePoolGraphData } from 'src/lib/hooks' -import { ChainId } from 'sushi/chain' +import { SushiSwapV2ChainId } from 'sushi/config' import { formatNumber, formatPercent, formatUSD } from 'sushi/format' interface PoolStats { @@ -22,7 +22,7 @@ interface PoolStats { export const PoolStats: FC = ({ pool }) => { const { data, isLoading } = usePoolGraphData({ poolAddress: pool.address, - chainId: pool.chainId as ChainId, + chainId: pool.chainId as SushiSwapV2ChainId, }) return ( diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 0d0104b3ae..6a97a2894a 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -1,7 +1,6 @@ 'use client' import { Pool } from '@sushiswap/client' -import { getBuiltGraphSDK } from '@sushiswap/graph-client' import { Card, CardContent, @@ -16,7 +15,6 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV2ChainId, isSushiSwapV2ChainId } from 'sushi/config' -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { TX_AMOUNT_IN_V2_COLUMN, TX_AMOUNT_OUT_V2_COLUMN, @@ -24,6 +22,7 @@ import { TX_CREATED_TIME_V2_COLUMN, TX_SENDER_V2_COLUMN, } from './columns' +import { getSushiV2Burns, getSushiV2Mints, getSushiV2Swaps, getSushiV2Transactions } from '@sushiswap/graph-client-new/sushi-v2' export enum TransactionType { Mint = 'Mint', @@ -43,11 +42,9 @@ const fetchAll = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }) - const { transactions } = await sdk.V2Transactions({ + const transactions = await getSushiV2Transactions({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { @@ -72,6 +69,8 @@ const fetchAll = async ( }, ], }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return transactions @@ -82,14 +81,14 @@ const fetchMints = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }) - const { mints } = await sdk.V2Mints({ + const mints = await getSushiV2Mints({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pair: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return mints.map((mint) => ({ @@ -105,19 +104,20 @@ const fetchBurns = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }) - const { burns } = await sdk.V2Burns({ + const burns = await getSushiV2Burns({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pair: poolId.toLowerCase(), - amount0_not: null, - amount1_not: null, - sender_not: null, + // TODO: disbled for now, according to the types this can never be null so not sure if we need it anymore + // amount0_not: null, + // amount1_not: null, + // sender_not: null, }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return burns.map((burn) => ({ @@ -133,14 +133,13 @@ const fetchSwaps = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }) - - const { swaps } = await sdk.V2Swaps({ + const swaps = await getSushiV2Swaps({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pair: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return swaps.map((swap) => ({ diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts index e8e718e52a..be11954635 100644 --- a/packages/graph-client-new/src/composite/sushi-historic-pool.ts +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -97,76 +97,74 @@ export async function getSushiHistoricPool({ const pool1dP = getPoolTimeAgo({ daysAgo: 1 }) const pool2dP = getPoolTimeAgo({ daysAgo: 2 }) - const pool1wP = getPoolTimeAgo({ weeksAgo: 1 }) - const [pool1dS, pool2dS, pool1wS] = await Promise.allSettled([ - pool1dP, - pool2dP, - pool1wP, - ]) + const [pool1dS, pool2dS] = await Promise.allSettled([pool1dP, pool2dP]) const pool = v2pool || v3pool! const pool1d = isPromiseFulfilled(pool1dS) ? pool1dS.value : null const pool2d = isPromiseFulfilled(pool2dS) ? pool2dS.value : null - const pool1w = isPromiseFulfilled(pool1wS) ? pool1wS.value : null // TRANSFORM - const liquidityUSD1dChange = pool1d - ? pool.liquidityUSD / pool1d.liquidityUSD - 1 - : 0 - const liquidityUSD1wChange = pool1w - ? pool.liquidityUSD / pool1w.liquidityUSD - 1 - : 0 - - const volumeUSD1d = pool1d - ? Number(pool.volumeUSD) - Number(pool1d.volumeUSD) - : Number(pool.volumeUSD) - const volumeUSD2d = // Volume between 1d and 2d ago - pool1d && pool2d - ? Number(pool1d.volumeUSD) - Number(pool2d.volumeUSD) - : Number(pool.volumeUSD) - const volumeUSD1w = pool1w - ? Number(pool.volumeUSD) - Number(pool1w.volumeUSD) - : Number(pool.volumeUSD) - const volumeUSD1dChange = - pool1d && pool2d ? volumeUSD1d / volumeUSD2d - 1 : null - - const feesUSD1d = pool1d - ? Number(pool.feesUSD) - Number(pool1d.feesUSD) - : Number(pool.feesUSD) - const feesUSD2d = // Fees between 1d and 2d ago - pool1d && pool2d - ? Number(pool1d.feesUSD) - Number(pool2d.feesUSD) - : Number(pool.feesUSD) - const feesUSD1w = pool1w - ? Number(pool.feesUSD) - Number(pool1w.feesUSD) - : Number(pool.feesUSD) - const feesUSD1dChange = pool1d && pool2d ? feesUSD1d / feesUSD2d - 1 : null - - const txCount1d = pool1d - ? Number(pool.txCount) - Number(pool1d.txCount) - : Number(pool.txCount) - const txCount2d = // Tx count between 1d and 2d ago - pool1d && pool2d - ? Number(pool1d.txCount) - Number(pool2d.txCount) - : Number(pool.txCount) - const txCount1w = pool1w - ? Number(pool.txCount) - Number(pool1w.txCount) - : Number(pool.txCount) - const txCount1dChange = pool1d && pool2d ? txCount1d / txCount2d - 1 : null + const liquidityUSD1dChange = calculatePercentageChange( + pool.liquidityUSD, + pool1d?.liquidityUSD, + pool2d?.liquidityUSD, + ) + + const volumeUSD1d = calculateValueChange(pool.volumeUSD, pool1d?.volumeUSD) + const volumeUSD1dChange = calculatePercentageChange( + pool.volumeUSD, + pool1d?.volumeUSD, + pool2d?.volumeUSD, + ) + + const feesUSD1d = calculateValueChange(pool.feesUSD, pool1d?.feesUSD) + const feesUSD1dChange = calculatePercentageChange( + pool.feesUSD, + pool1d?.feesUSD, + pool2d?.feesUSD, + ) + const txCount1d = calculateValueChange(pool.txCount, pool1d?.txCount) + const txCount1dChange = calculatePercentageChange( + pool.txCount, + pool1d?.txCount, + pool2d?.txCount, + ) return { ...pool, liquidityUSD1dChange, - liquidityUSD1wChange, volumeUSD1d, volumeUSD1dChange, - volumeUSD1w, feesUSD1d, feesUSD1dChange, - feesUSD1w, txCount1d, txCount1dChange, - txCount1w, } } + +const calculateValueChange = ( + current: string | number | undefined, + previous: string | number | undefined, +) => { + const _current = Number(current) + const _previous = Number(previous) + if (_current === 0) return 0 + return _previous !== 0 ? _current - _previous : 0 +} + +const calculatePercentageChange = ( + current: string | number | undefined, + previous: string | number | undefined, + previous2: string | number | undefined, +) => { + const _current = Number(current) + const _previous = Number(previous) + const _previous2 = Number(previous2) + if (_current === 0) return 0 + const change1 = _previous !== 0 ? _current - _previous : 0 + const change2 = + _previous !== 0 && _previous2 !== 0 ? _previous - _previous2 : 0 + if (change2 === 0) return 0 // avoid division by 0 + return _previous !== 0 && _previous2 !== 0 ? change1 / change2 - 1 : 0 +} diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts index 965b5699c3..ce5108a2fd 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts @@ -38,7 +38,7 @@ export async function getBlockHistoric({ chainId, first: 1, orderBy: 'timestamp', - orderDirection: 'desc', + orderDirection: 'asc', where: { timestamp_gte: String(target), }, diff --git a/packages/sushi/src/config/subgraph/hosts.ts b/packages/sushi/src/config/subgraph/hosts.ts index b8f7cf2da2..89f59e7b56 100644 --- a/packages/sushi/src/config/subgraph/hosts.ts +++ b/packages/sushi/src/config/subgraph/hosts.ts @@ -26,6 +26,8 @@ export const SKALE_HOST = 'elated-tan-skat-graph.skalenodes.com:8000/subgraphs/name' const SUSHI_DOMAIN_RESTRICTED_API_KEY = '5d5d00365d2b8f675e12952d6eb5b9b0' -export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${ - process.env['SUSHI_GRAPH_KEY'] ?? SUSHI_DOMAIN_RESTRICTED_API_KEY -}/subgraphs/id` +const DECENTRALIZED_NETWORK_KEY = + process.env['SUSHI_GRAPH_KEY'] || + process.env['NEXT_PUBLIC_SUSHI_GRAPH_KEY'] || + SUSHI_DOMAIN_RESTRICTED_API_KEY +export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${DECENTRALIZED_NETWORK_KEY}/subgraphs/id` diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts index 60735c1756..b8292d9900 100644 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts +++ b/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts @@ -2,17 +2,13 @@ import { SushiPoolBase } from 'sushi/types' export type SushiPoolHistory = T & { liquidityUSD1dChange: number - liquidityUSD1wChange: number volumeUSD1d: number - volumeUSD1dChange: number | null - volumeUSD1w: number + volumeUSD1dChange: number feesUSD1d: number - feesUSD1dChange: number | null - feesUSD1w: number + feesUSD1dChange: number txCount1d: number - txCount1dChange: number | null - txCount1w: number + txCount1dChange: number } diff --git a/turbo.json b/turbo.json index adf0ef32b7..a8652fd94a 100644 --- a/turbo.json +++ b/turbo.json @@ -35,7 +35,8 @@ "SWAP_API_V0_BASE_URL", "TOKEN_LIST_PR_WEBHOOK_URL", "OCTOKIT_KEY", - "NEXT_PUBLIC_STRAPI_API_URL" + "NEXT_PUBLIC_STRAPI_API_URL", + "NEXT_PUBLIC_SUSHI_GRAPH_KEY" ] }, "clean": { From d29600f3b63c5339ad76c4c03cb5d2173e278ebe Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 5 Jun 2024 12:19:05 +0000 Subject: [PATCH 048/119] chore: format --- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 6a97a2894a..e4fa2d0984 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -22,7 +22,12 @@ import { TX_CREATED_TIME_V2_COLUMN, TX_SENDER_V2_COLUMN, } from './columns' -import { getSushiV2Burns, getSushiV2Mints, getSushiV2Swaps, getSushiV2Transactions } from '@sushiswap/graph-client-new/sushi-v2' +import { + getSushiV2Burns, + getSushiV2Mints, + getSushiV2Swaps, + getSushiV2Transactions, +} from '@sushiswap/graph-client-new/sushi-v2' export enum TransactionType { Mint = 'Mint', @@ -42,7 +47,6 @@ const fetchAll = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const transactions = await getSushiV2Transactions({ chainId, first: opts.first, @@ -81,7 +85,6 @@ const fetchMints = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const mints = await getSushiV2Mints({ chainId, first: opts.first, @@ -104,7 +107,6 @@ const fetchBurns = async ( chainId: SushiSwapV2ChainId, opts: UseTransactionsV2Opts, ) => { - const burns = await getSushiV2Burns({ chainId, first: opts.first, From 33fd26f995723c04fc01d2366ad01301c14b3d59 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 5 Jun 2024 14:48:40 +0200 Subject: [PATCH 049/119] fix: tada v3 pool page --- apps/evm/src/ui/pool/PoolTransactionsV3.tsx | 54 +++++++++---------- .../sushi-v3/transforms/pool-v3-to-std.ts | 10 ++-- 2 files changed, 34 insertions(+), 30 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx index ad4e1472f2..59ba2c257f 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx @@ -1,7 +1,6 @@ 'use client' import { Pool } from '@sushiswap/client' -import { getBuiltGraphSDK } from '@sushiswap/graph-client' import { Card, CardContent, @@ -16,7 +15,6 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV3ChainId, isSushiSwapV3ChainId } from 'sushi/config' -import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { TX_AMOUNT_IN_V3_COLUMN, TX_AMOUNT_OUT_V3_COLUMN, @@ -24,6 +22,13 @@ import { TX_ORIGIN_V3_COLUMN, TX_TIME_V3_COLUMN, } from './columns' +import { + getSushiV3Burns, + getSushiV3Collects, + getSushiV3Mints, + getSushiV3Swaps, + getSushiV3Transactions, +} from '@sushiswap/graph-client-new/sushi-v3' export enum TransactionTypeV3 { Mint = 'Mint', @@ -44,11 +49,8 @@ const fetchAll = async ( chainId: SushiSwapV3ChainId, opts: UseTransactionsV3Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { transactions } = await sdk.V3Transactions({ + const transactions = await getSushiV3Transactions({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { @@ -75,6 +77,8 @@ const fetchAll = async ( }, ], }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return transactions @@ -85,14 +89,13 @@ const fetchMints = async ( chainId: SushiSwapV3ChainId, opts: UseTransactionsV3Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { mints } = await sdk.V3Mints({ + const mints = await getSushiV3Mints({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pool: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return mints.map((mint) => ({ @@ -109,14 +112,13 @@ const fetchBurns = async ( chainId: SushiSwapV3ChainId, opts: UseTransactionsV3Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { burns } = await sdk.V3Burns({ + const burns = await getSushiV3Burns({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pool: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return burns.map((burn) => ({ @@ -133,14 +135,13 @@ const fetchSwaps = async ( chainId: SushiSwapV3ChainId, opts: UseTransactionsV3Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { swaps } = await sdk.V3Swaps({ + const swaps = await getSushiV3Swaps({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pool: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return swaps.map((swap) => ({ @@ -157,14 +158,13 @@ const fetchCollects = async ( chainId: SushiSwapV3ChainId, opts: UseTransactionsV3Opts, ) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { collects } = await sdk.V3Collects({ + const collects = await getSushiV3Collects({ + chainId, first: opts.first, skip: opts?.skip ?? 0, where: { pool: poolId.toLowerCase() }, + orderBy: 'timestamp', + orderDirection: 'desc', }) return collects.map((collect) => ({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts index cecf8983c7..ad8d8fb094 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts @@ -1,7 +1,7 @@ import type { ResultOf } from 'gql.tada' import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import type { SushiSwapV3ChainId } from 'sushi/config' -import { getIdFromChainIdAddress } from 'sushi/format' +import { getIdFromChainIdAddress, withoutScientificNotation } from 'sushi/format' import { type Address, type SushiPoolV3, SushiSwapProtocol } from 'sushi/types' type ToPick = @@ -44,8 +44,12 @@ export function transformPoolV3ToStd( protocol: SushiSwapProtocol.SUSHISWAP_V3, - reserve0: pool.reserve0, - reserve1: pool.reserve1, + reserve0: withoutScientificNotation( + (Number(pool.reserve0) * 10 ** Number(pool.token0.decimals)).toFixed(), + )!, + reserve1: withoutScientificNotation( + (Number(pool.reserve1) * 10 ** Number(pool.token1.decimals)).toFixed(), + )!, liquidity: pool.liquidity, liquidityUSD: Number(pool.liquidityUSD), From 9f85907d39ffb16eb5e013fe2a931126c8667d01 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 5 Jun 2024 12:50:07 +0000 Subject: [PATCH 050/119] chore: format --- .../src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts index ad8d8fb094..60b6a7c30b 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts @@ -1,7 +1,10 @@ import type { ResultOf } from 'gql.tada' import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import type { SushiSwapV3ChainId } from 'sushi/config' -import { getIdFromChainIdAddress, withoutScientificNotation } from 'sushi/format' +import { + getIdFromChainIdAddress, + withoutScientificNotation, +} from 'sushi/format' import { type Address, type SushiPoolV3, SushiSwapProtocol } from 'sushi/types' type ToPick = From c63b9d2cfabe360119feac6b56814103f2c7464a Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 5 Jun 2024 14:58:43 +0000 Subject: [PATCH 051/119] feat: more type cooking --- apps/evm/src/lib/functions.ts | 5 +- apps/evm/src/lib/hooks/useTokensFromPool.ts | 4 +- apps/evm/src/ui/pool/APRHoverCard.tsx | 6 +- apps/evm/src/ui/pool/PoolNameCell.tsx | 104 +++--------------- apps/evm/src/ui/pool/PoolsTable.tsx | 4 +- apps/evm/src/ui/pool/PositionsTable.tsx | 8 +- apps/evm/src/ui/pool/columns.tsx | 67 ++++------- .../src/composite/sushi-historic-pool.ts | 9 +- .../sushi-v2-staked-unstaked-positions.ts | 4 +- .../sushi-v2/queries/pool-with-buckets.ts | 4 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 4 +- .../sushi-v2/transforms/bucket-v2-to-std.ts | 6 +- .../sushi-v2/transforms/pool-v2-to-std.ts | 4 +- .../sushi-v3/queries/pool-with-buckets.ts | 4 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 4 +- .../sushi-v3/transforms/bucket-v3-to-std.ts | 6 +- .../sushi-v3/transforms/pool-v3-to-std.ts | 4 +- packages/steer-sdk/src/index.ts | 1 + packages/steer-sdk/src/types/index.ts | 5 + .../src/types/pool-has-steer-vaults.ts | 6 + .../src/types/pool-with-steer-vaults.ts | 10 ++ .../steer-sdk/src/types/steer-vault-id.ts | 8 ++ .../src/types/steer-vault-with-pool.ts | 9 ++ packages/steer-sdk/src/types/steer-vault.ts | 42 +++++++ packages/sushi/src/types/sushi-pool/index.ts | 18 +-- .../src/types/sushi-pool/maybe-nested-pool.ts | 6 +- .../{sushi-pool-base.ts => pool-base.ts} | 10 +- ...{sushi-pool-history.ts => pool-history.ts} | 4 +- .../sushi/src/types/sushi-pool/pool-id.ts | 10 ++ .../types/sushi-pool/pool-if-incentivized.ts | 6 + .../sushi/src/types/sushi-pool/pool-v2.ts | 13 +++ .../{sushi-pool-v3.ts => pool-v3.ts} | 15 ++- .../src/types/sushi-pool/pool-with-aprs.ts | 24 ++++ .../src/types/sushi-pool/pool-with-buckets.ts | 15 +++ .../types/sushi-pool/pool-with-incentives.ts | 36 ++++++ .../sushi-pool/sushi-pool-if-incentivized.ts | 6 - .../src/types/sushi-pool/sushi-pool-v2.ts | 14 --- .../types/sushi-pool/sushi-pool-with-aprs.ts | 27 ----- .../sushi-pool/sushi-pool-with-buckets.ts | 15 --- .../sushi-pool/sushi-pool-with-incentives.ts | 35 ------ .../sushi-position/sushi-position-base.ts | 4 +- .../sushi-position-with-pool.ts | 4 +- 42 files changed, 282 insertions(+), 308 deletions(-) create mode 100644 packages/steer-sdk/src/types/index.ts create mode 100644 packages/steer-sdk/src/types/pool-has-steer-vaults.ts create mode 100644 packages/steer-sdk/src/types/pool-with-steer-vaults.ts create mode 100644 packages/steer-sdk/src/types/steer-vault-id.ts create mode 100644 packages/steer-sdk/src/types/steer-vault-with-pool.ts create mode 100644 packages/steer-sdk/src/types/steer-vault.ts rename packages/sushi/src/types/sushi-pool/{sushi-pool-base.ts => pool-base.ts} (56%) rename packages/sushi/src/types/sushi-pool/{sushi-pool-history.ts => pool-history.ts} (73%) create mode 100644 packages/sushi/src/types/sushi-pool/pool-id.ts create mode 100644 packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts create mode 100644 packages/sushi/src/types/sushi-pool/pool-v2.ts rename packages/sushi/src/types/sushi-pool/{sushi-pool-v3.ts => pool-v3.ts} (57%) create mode 100644 packages/sushi/src/types/sushi-pool/pool-with-aprs.ts create mode 100644 packages/sushi/src/types/sushi-pool/pool-with-buckets.ts create mode 100644 packages/sushi/src/types/sushi-pool/pool-with-incentives.ts delete mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts delete mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts delete mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts delete mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts delete mode 100644 packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts diff --git a/apps/evm/src/lib/functions.ts b/apps/evm/src/lib/functions.ts index 1d6230bb83..b1ada03814 100644 --- a/apps/evm/src/lib/functions.ts +++ b/apps/evm/src/lib/functions.ts @@ -1,4 +1,5 @@ -import { Pool, Protocol } from '@sushiswap/client' +import { Protocol } from '@sushiswap/client' +import type { Incentive } from 'sushi' import { ChainId } from 'sushi/chain' import { SushiSwapV3FeeAmount, TICK_SPACINGS } from 'sushi/config' import { @@ -51,7 +52,7 @@ export const isTridentPoolProtocol = (protocol: Protocol) => export const incentiveRewardToToken = ( chainId: ChainId, - incentive: Pool['incentives'][0], + incentive: Incentive, ): Token => { return new Token({ chainId, diff --git a/apps/evm/src/lib/hooks/useTokensFromPool.ts b/apps/evm/src/lib/hooks/useTokensFromPool.ts index f976ab2e47..e523f1d45b 100644 --- a/apps/evm/src/lib/hooks/useTokensFromPool.ts +++ b/apps/evm/src/lib/hooks/useTokensFromPool.ts @@ -1,10 +1,10 @@ 'use client' -import { Pool } from '@sushiswap/client' import { useMemo } from 'react' +import type { PoolBase } from 'sushi' import { Native, Token } from 'sushi/currency' -export const useTokensFromPool = (pool: Pool) => { +export const useTokensFromPool = (pool: PoolBase) => { return useMemo(() => { const _token0 = new Token({ address: pool.token0.address, diff --git a/apps/evm/src/ui/pool/APRHoverCard.tsx b/apps/evm/src/ui/pool/APRHoverCard.tsx index 2c1b1c8cf9..8135d49233 100644 --- a/apps/evm/src/ui/pool/APRHoverCard.tsx +++ b/apps/evm/src/ui/pool/APRHoverCard.tsx @@ -1,6 +1,5 @@ 'use client' -import { Pool } from '@sushiswap/client' import { CardDescription, Currency, @@ -17,11 +16,14 @@ import { ChainId } from 'sushi/chain' import { tryParseAmount } from 'sushi/currency' import { formatPercent } from 'sushi/format' +import type { PoolWithFeeAprs, PoolWithIncentives } from 'sushi' import { incentiveRewardToToken } from '../../lib/functions' +type RequiredPool = PoolWithIncentives + interface APRHoverCardProps { children: ReactNode - pool: Pool + pool: RequiredPool showEmissions?: boolean smartPoolAPR?: number } diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index ac2a84b82b..a5dbae77af 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -1,6 +1,6 @@ 'use client' -import { Pool, Protocol } from '@sushiswap/client' +import { Protocol } from '@sushiswap/client' import { classNames } from '@sushiswap/ui' import { Badge } from '@sushiswap/ui/components/badge' import { Currency } from '@sushiswap/ui/components/currency' @@ -17,7 +17,12 @@ import { useTokensFromPool } from 'src/lib/hooks' import { ChainId } from 'sushi/chain' import { formatNumber } from 'sushi/format' -import { PositionWithPool } from '../../types' +import { + MaybeNestedPool, + PoolBase, + PoolWithIncentives, + unnestPool, +} from 'sushi' export const ProtocolBadge: Record = { [Protocol.BENTOBOX_STABLE]: ( @@ -42,93 +47,14 @@ export const ProtocolBadge: Record = { ), } -export const PoolNameCell: FC> = ({ original }) => { - const { token0, token1 } = useTokensFromPool(original.pool) - - const incentives = original.pool?.incentives?.filter( - (i) => i.rewardPerDay > 0, - ) - - return ( -
-
- {token0 && token1 && ( - - } - > - - - - - - )} -
-
- - {token0?.symbol}{' '} - - / - {' '} - {token1?.symbol}{' '} -
- -
- {ProtocolBadge[original.pool.protocol]} -
- {formatNumber(original.pool.swapFee * 100)}% -
- {original.pool.isIncentivized && ( - - - -
- 🧑‍🌾 {incentives.length > 1 - ? `x ${incentives.length}` - : ''}{' '} -
-
- -

Farm rewards available

-
-
-
- )} - {original.pool.hasEnabledSteerVault && ( - - - -
- 💡 -
-
- -

Smart Pool available

-
-
-
- )} -
-
-
- ) -} +export const PoolNameCell: FC< + Row>> +> = ({ original }) => { + const pool = unnestPool(original) -export const PoolNameCellPool: FC<{ pool: Pool }> = ({ pool }) => { const { token0, token1 } = useTokensFromPool(pool) - const incentives = pool.incentives.filter((i) => i.rewardPerDay > 0) + const incentives = pool.incentives?.filter((i) => i.rewardPerDay > 0) return (
@@ -138,11 +64,7 @@ export const PoolNameCellPool: FC<{ pool: Pool }> = ({ pool }) => { className="border-2 border-slate-900 rounded-full z-[11]" position="bottom-right" badgeContent={ - + } > diff --git a/apps/evm/src/ui/pool/PoolsTable.tsx b/apps/evm/src/ui/pool/PoolsTable.tsx index 7a5b2a8e6d..39f78afeee 100644 --- a/apps/evm/src/ui/pool/PoolsTable.tsx +++ b/apps/evm/src/ui/pool/PoolsTable.tsx @@ -45,7 +45,7 @@ import { usePoolCount, usePoolsInfinite } from '@sushiswap/client/hooks' import { isAngleEnabledChainId } from 'sushi/config' import { usePoolFilters } from './PoolsFiltersProvider' import { - APR_COLUMN_POOL, + APR_COLUMN, FEES_COLUMN, NAME_COLUMN_POOL, TVL_COLUMN, @@ -61,7 +61,7 @@ const COLUMNS = [ VOLUME_7D_COLUMN, VOLUME_1M_COLUMN, FEES_COLUMN, - APR_COLUMN_POOL, + APR_COLUMN, { id: 'actions', cell: ({ row }) => diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index 9cfec31655..cb4c67a426 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -9,14 +9,10 @@ import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/compo import type { SushiSwapV2ChainId } from 'sushi/config' import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' -import { - APR_COLUMN, - NAME_COLUMN_POSITION_WITH_POOL, - VALUE_COLUMN, -} from './columns' +import { APR_COLUMN, NAME_COLUMN_POOL, VALUE_COLUMN } from './columns' const COLUMNS = [ - NAME_COLUMN_POSITION_WITH_POOL, + NAME_COLUMN_POOL, VALUE_COLUMN, APR_COLUMN, ] satisfies ColumnDef[] diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index b56910f77d..b3dfcad142 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -22,9 +22,16 @@ import { import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' +import type { + MaybeNestedPool, + PoolBase, + PoolWithAprs, + PoolWithIncentives, +} from 'sushi' +import { unnestPool } from 'sushi/types' import { APRHoverCard } from './APRHoverCard' import { ConcentratedLiquidityPositionAPRCell } from './ConcentratedLiquidityPositionAPRCell' -import { PoolNameCell, PoolNameCellPool } from './PoolNameCell' +import { PoolNameCell } from './PoolNameCell' import { PoolNameCellV3 } from './PoolNameCellV3' import { Transaction, @@ -114,7 +121,7 @@ export const REWARDS_V3_CLAIMABLE_COLUMN: ColumnDef = }, } -export const NETWORK_COLUMN_POOL: ColumnDef = { +export const NETWORK_COLUMN_POOL: ColumnDef = { id: 'network', header: 'Network', cell: (props) => ( @@ -130,10 +137,13 @@ export const NETWORK_COLUMN_POOL: ColumnDef = { }, } -export const NAME_COLUMN_POOL: ColumnDef = { +export const NAME_COLUMN_POOL: ColumnDef< + MaybeNestedPool>, + unknown +> = { id: 'name', header: 'Name', - cell: (props) => , + cell: (props) => , meta: { skeleton: (
@@ -150,7 +160,7 @@ export const NAME_COLUMN_POOL: ColumnDef = { size: 300, } -export const TVL_COLUMN: ColumnDef = { +export const TVL_COLUMN: ColumnDef = { id: 'liquidityUSD', header: 'TVL', accessorFn: (row) => row.liquidityUSD, @@ -165,22 +175,6 @@ export const TVL_COLUMN: ColumnDef = { }, } -export const APR_COLUMN_POOL: ColumnDef = { - id: 'totalApr1d', - header: 'APR', - accessorFn: (row) => row.totalApr1d, - cell: (props) => ( - - - {formatPercent(props.row.original.totalApr1d)} - - - ), - meta: { - skeleton: , - }, -} - export const VOLUME_1H_COLUMN: ColumnDef = { id: 'volume1h', header: 'Volume (1h)', @@ -271,38 +265,19 @@ export const NETWORK_COLUMN: ColumnDef = }, } -export const NAME_COLUMN_POSITION_WITH_POOL: ColumnDef< - SushiV2StakedUnstakedPosition, +export const APR_COLUMN: ColumnDef< + MaybeNestedPool>, unknown > = { - id: 'name', - header: 'Name', - cell: (props) => , - meta: { - skeleton: ( -
-
- - -
-
- -
-
- ), - }, -} - -export const APR_COLUMN: ColumnDef = { - id: 'apr', + id: 'totalApr1d', header: 'APR', - accessorFn: (row) => row.pool.totalApr1d, + accessorFn: (row) => unnestPool(row).totalApr1d, cell: (props) => ( - + - {formatPercent(props.row.original.pool.totalApr1d)} + {formatPercent(unnestPool(props.row.original).totalApr1d)} ), diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts index e8e718e52a..320df58656 100644 --- a/packages/graph-client-new/src/composite/sushi-historic-pool.ts +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -10,12 +10,7 @@ import { } from 'src/subgraphs/sushi-v3/queries/pool' import { getSushiV3PoolBuckets } from 'src/subgraphs/sushi-v3/queries/pool-with-buckets' import { isSushiSwapV2ChainId, isSushiSwapV3ChainId } from 'sushi/config' -import type { - SushiPoolHistory, - SushiPoolV2, - SushiPoolV3, - SushiPoolWithBuckets, -} from 'sushi/types' +import type { PoolHistory, PoolV2, PoolV3, PoolWithBuckets } from 'sushi/types' import { isPromiseFulfilled } from 'sushi/validate' export type GetSushiHistoricPool = Omit< @@ -23,7 +18,7 @@ export type GetSushiHistoricPool = Omit< 'block' > -type Result = SushiPoolHistory> +type Result = PoolHistory> async function fetchSushiV2Pool({ chainId, diff --git a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts index c5816dada7..59379bac52 100644 --- a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts +++ b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts @@ -12,7 +12,7 @@ import { isSushiSwapV2ChainId, } from 'sushi/config' import type { - SushiPoolV2, + PoolV2, SushiPositionStaked, SushiPositionWithPool, } from 'sushi/types' @@ -26,7 +26,7 @@ export type GetSushiV2StakedUnstakedPositions = { > export type SushiV2StakedUnstakedPosition = SushiPositionStaked< - SushiPositionWithPool + SushiPositionWithPool > /** diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts index 6f7c93bb14..1ad883950f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts @@ -8,7 +8,7 @@ import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' import { transformBucketsV2ToStd } from 'src/subgraphs/sushi-v2/transforms/bucket-v2-to-std' import { transformPoolV2ToStd } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-std' -import type { SushiPoolV2, SushiPoolWithBuckets } from 'sushi/types' +import type { PoolV2, PoolWithBuckets } from 'sushi/types' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' @@ -45,7 +45,7 @@ export type GetSushiV2PoolBuckets = Omit< > & ChainIdVariable -export type SushiV2PoolBuckets = SushiPoolWithBuckets +export type SushiV2PoolBuckets = PoolWithBuckets export async function getSushiV2PoolBuckets({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index 1907d4b03a..ddfe52a087 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -2,7 +2,7 @@ import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import type { SushiPoolV2 } from 'sushi/types' +import type { PoolV2 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' import type { ChainIdVariable } from 'src/lib/types/chainId' @@ -27,7 +27,7 @@ export type GetSushiV2Pool = VariablesOf & export async function getSushiV2Pool({ chainId, ...variables -}: GetSushiV2Pool): Promise { +}: GetSushiV2Pool): Promise { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await request(url, SushiV2PoolQuery, variables) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts index 63e2e0eb80..3647244895 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts @@ -1,6 +1,6 @@ import type { ResultOf } from 'gql.tada' import type { SushiV2PoolBucketsQuery } from 'src/subgraphs/sushi-v2/queries/pool-with-buckets' -import type { SushiPoolBucket } from 'sushi/types' +import type { PoolBucket } from 'sushi/types' type FetchedBucket = NonNullable< ResultOf['pool'] @@ -8,11 +8,11 @@ type FetchedBucket = NonNullable< export function transformBucketsV2ToStd( buckets: FetchedBucket[], -): SushiPoolBucket[] { +): PoolBucket[] { return buckets.map(transformBucketV2ToStd) } -export function transformBucketV2ToStd(bucket: FetchedBucket): SushiPoolBucket { +export function transformBucketV2ToStd(bucket: FetchedBucket): PoolBucket { return { id: bucket.id, date: Number(bucket.date), diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts index fb80c01365..2f41c00933 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-std.ts @@ -5,7 +5,7 @@ import { getIdFromChainIdAddress, withoutScientificNotation, } from 'sushi/format' -import { type SushiPoolV2, SushiSwapProtocol } from 'sushi/types' +import { type PoolV2, SushiSwapProtocol } from 'sushi/types' type ToPick = | 'id' @@ -23,7 +23,7 @@ type RequiredBase = Pick, ToPick> export function transformPoolV2ToStd( pool: T, chainId: SushiSwapV2ChainId, -): SushiPoolV2 { +): PoolV2 { return { id: getIdFromChainIdAddress(chainId, pool.id), address: pool.id, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts index 8b7c556806..61d00cb6ac 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts @@ -2,7 +2,7 @@ import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import type { SushiPoolV3, SushiPoolWithBuckets } from 'sushi/types' +import type { PoolV3, PoolWithBuckets } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' import type { ChainIdVariable } from 'src/lib/types/chainId' @@ -45,7 +45,7 @@ export type GetSushiV3PoolBuckets = VariablesOf< > & ChainIdVariable -export type SushiV3PoolBuckets = SushiPoolWithBuckets +export type SushiV3PoolBuckets = PoolWithBuckets export async function getSushiV3PoolBuckets({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 5b50c92a12..13a7963425 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -2,7 +2,7 @@ import type { VariablesOf } from 'gql.tada' import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import type { SushiPoolV3 } from 'sushi/types' +import type { PoolV3 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' import type { ChainIdVariable } from 'src/lib/types/chainId' @@ -24,7 +24,7 @@ export const SushiV3PoolQuery = graphql( export type GetSushiV3Pool = VariablesOf & ChainIdVariable -export type SushiV3Pool = SushiPoolV3 +export type SushiV3Pool = PoolV3 export async function getSushiV3Pool({ chainId, diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts index 025051d0d9..a49e14b8ec 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts @@ -1,6 +1,6 @@ import type { ResultOf } from 'gql.tada' import type { SushiV3PoolBucketsQuery } from 'src/subgraphs/sushi-v3/queries/pool-with-buckets' -import type { SushiPoolBucket } from 'sushi/types' +import type { PoolBucket } from 'sushi/types' type FetchedBucket = NonNullable< ResultOf['pool'] @@ -8,11 +8,11 @@ type FetchedBucket = NonNullable< export function transformBucketsV3ToStd( buckets: FetchedBucket[], -): SushiPoolBucket[] { +): PoolBucket[] { return buckets.map(transformBucketV3ToStd) } -export function transformBucketV3ToStd(bucket: FetchedBucket): SushiPoolBucket { +export function transformBucketV3ToStd(bucket: FetchedBucket): PoolBucket { return { id: bucket.id, date: Number(bucket.date), diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts index cecf8983c7..23055aabbf 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-std.ts @@ -2,7 +2,7 @@ import type { ResultOf } from 'gql.tada' import type { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import type { SushiSwapV3ChainId } from 'sushi/config' import { getIdFromChainIdAddress } from 'sushi/format' -import { type Address, type SushiPoolV3, SushiSwapProtocol } from 'sushi/types' +import { type Address, type PoolV3, SushiSwapProtocol } from 'sushi/types' type ToPick = | 'id' @@ -26,7 +26,7 @@ type RequiredBase = Pick, ToPick> export function transformPoolV3ToStd( pool: T, chainId: SushiSwapV3ChainId, -): SushiPoolV3 { +): PoolV3 { return { id: getIdFromChainIdAddress(chainId, pool.id as Address), address: pool.id as Address, diff --git a/packages/steer-sdk/src/index.ts b/packages/steer-sdk/src/index.ts index 8de26240e2..089ba21e18 100644 --- a/packages/steer-sdk/src/index.ts +++ b/packages/steer-sdk/src/index.ts @@ -1,3 +1,4 @@ export * from './constants.js' export * from './fetchers/index.js' export * from './utils/index.js' +export * from './types/index.js' diff --git a/packages/steer-sdk/src/types/index.ts b/packages/steer-sdk/src/types/index.ts new file mode 100644 index 0000000000..aee062f872 --- /dev/null +++ b/packages/steer-sdk/src/types/index.ts @@ -0,0 +1,5 @@ +export * from './pool-has-steer-vaults' +export * from './pool-with-steer-vaults' +export * from './steer-vault-id.js' +export * from './steer-vault-with-pool' +export * from './steer-vault.js' diff --git a/packages/steer-sdk/src/types/pool-has-steer-vaults.ts b/packages/steer-sdk/src/types/pool-has-steer-vaults.ts new file mode 100644 index 0000000000..c60b2a1c72 --- /dev/null +++ b/packages/steer-sdk/src/types/pool-has-steer-vaults.ts @@ -0,0 +1,6 @@ +import type { PoolId } from 'sushi' + +export type PoolHasSteerVaults = T & { + hasSteerVaults: boolean + hadSteerVaults: boolean +} diff --git a/packages/steer-sdk/src/types/pool-with-steer-vaults.ts b/packages/steer-sdk/src/types/pool-with-steer-vaults.ts new file mode 100644 index 0000000000..6a349f3c3e --- /dev/null +++ b/packages/steer-sdk/src/types/pool-with-steer-vaults.ts @@ -0,0 +1,10 @@ +import type { PoolId } from 'sushi/types' +import type { PoolHasSteerVaults } from './pool-has-steer-vaults' +import type { SteerVaultId } from './steer-vault-id' + +export type PoolWithSteerVaults< + Pool extends PoolId = PoolId, + Vault extends SteerVaultId = SteerVaultId, +> = PoolHasSteerVaults & { + steerVaults: Vault[] +} diff --git a/packages/steer-sdk/src/types/steer-vault-id.ts b/packages/steer-sdk/src/types/steer-vault-id.ts new file mode 100644 index 0000000000..1e0aa19b5a --- /dev/null +++ b/packages/steer-sdk/src/types/steer-vault-id.ts @@ -0,0 +1,8 @@ +import type { SushiSwapV3ChainId } from 'sushi/config' +import type { Address, ID } from 'sushi/types' + +export type SteerVaultId = { + id: ID + address: Address + chainId: SushiSwapV3ChainId +} diff --git a/packages/steer-sdk/src/types/steer-vault-with-pool.ts b/packages/steer-sdk/src/types/steer-vault-with-pool.ts new file mode 100644 index 0000000000..d4390f25e8 --- /dev/null +++ b/packages/steer-sdk/src/types/steer-vault-with-pool.ts @@ -0,0 +1,9 @@ +import type { PoolId } from 'sushi/types' +import type { SteerVaultId } from './steer-vault-id' + +export type SteerVaultWithPool< + Vault extends SteerVaultId = SteerVaultId, + Pool extends PoolId = PoolId, +> = Omit & { + pool: Pool +} diff --git a/packages/steer-sdk/src/types/steer-vault.ts b/packages/steer-sdk/src/types/steer-vault.ts new file mode 100644 index 0000000000..66ee90c854 --- /dev/null +++ b/packages/steer-sdk/src/types/steer-vault.ts @@ -0,0 +1,42 @@ +import type { SteerStrategy } from '@sushiswap/database' +import type { Token } from 'sushi/types' +import type { SteerVaultId } from './steer-vault-id' + +export type SteerVault = T & { + feeTier: number + performanceFee: number + + lastAdjustmentTimestamp: number + adjustedPerformanceFee: number + + lowerTick: bigint + upperTick: bigint + + apr: number + apr1d: number + apr1w: number + apr1m: number + apr1y: number + + reserve0: bigint + reserve0USD: number + fees0: bigint + fees0USD: number + + reserve1: bigint + reserve1USD: number + fees1: bigint + fees1USD: number + + reserveUSD: number + + token0: Token + token1: Token + + strategy: SteerStrategy + payloadHash: string + + isEnabled: boolean + wasEnabled: boolean + isDeprecated: boolean +} diff --git a/packages/sushi/src/types/sushi-pool/index.ts b/packages/sushi/src/types/sushi-pool/index.ts index 458ca746ad..30d1c323cf 100644 --- a/packages/sushi/src/types/sushi-pool/index.ts +++ b/packages/sushi/src/types/sushi-pool/index.ts @@ -1,9 +1,11 @@ export * from './protocol' -export * from './sushi-pool-base' -export * from './sushi-pool-history' -export * from './sushi-pool-if-incentivized' -export * from './sushi-pool-v2' -export * from './sushi-pool-v3' -export * from './sushi-pool-with-aprs' -export * from './sushi-pool-with-buckets' -export * from './sushi-pool-with-incentives' +export * from './maybe-nested-pool' +export * from './pool-base' +export * from './pool-history' +export * from './pool-id' +export * from './pool-if-incentivized' +export * from './pool-v2' +export * from './pool-v3' +export * from './pool-with-aprs' +export * from './pool-with-buckets' +export * from './pool-with-incentives' diff --git a/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts b/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts index ea3d912af1..0c76619082 100644 --- a/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts +++ b/packages/sushi/src/types/sushi-pool/maybe-nested-pool.ts @@ -1,12 +1,12 @@ -import type { SushiPoolBase } from 'sushi/types' +import type { PoolId } from 'sushi/types' -export type MaybeNestedPool = +export type MaybeNestedPool = | T | { pool: T } -export function unnestPool( +export function unnestPool( maybeNestedPool: MaybeNestedPool, ) { return 'pool' in maybeNestedPool ? maybeNestedPool.pool : maybeNestedPool diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts b/packages/sushi/src/types/sushi-pool/pool-base.ts similarity index 56% rename from packages/sushi/src/types/sushi-pool/sushi-pool-base.ts rename to packages/sushi/src/types/sushi-pool/pool-base.ts index 636ad8b966..b4c18f5f54 100644 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-base.ts +++ b/packages/sushi/src/types/sushi-pool/pool-base.ts @@ -1,11 +1,7 @@ -import type { ChainId } from 'sushi/chain' -import type { Address, ID, SushiSwapProtocol, Token } from 'sushi/types' +import type { PoolId, Token } from 'sushi/types' -export type SushiPoolBase = { - id: ID - address: Address +export type PoolBase = T & { name: string - chainId: ChainId token0: Token token1: Token @@ -27,6 +23,4 @@ export type SushiPoolBase = { // token1Price: bigint txCount: string - - protocol: SushiSwapProtocol } diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts b/packages/sushi/src/types/sushi-pool/pool-history.ts similarity index 73% rename from packages/sushi/src/types/sushi-pool/sushi-pool-history.ts rename to packages/sushi/src/types/sushi-pool/pool-history.ts index 60735c1756..cbe009d12c 100644 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-history.ts +++ b/packages/sushi/src/types/sushi-pool/pool-history.ts @@ -1,6 +1,6 @@ -import { SushiPoolBase } from 'sushi/types' +import { PoolId } from 'sushi/types' -export type SushiPoolHistory = T & { +export type PoolHistory = T & { liquidityUSD1dChange: number liquidityUSD1wChange: number diff --git a/packages/sushi/src/types/sushi-pool/pool-id.ts b/packages/sushi/src/types/sushi-pool/pool-id.ts new file mode 100644 index 0000000000..f8d554efa9 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-id.ts @@ -0,0 +1,10 @@ +import type { ChainId } from 'sushi/chain' +import type { Address, ID, SushiSwapProtocol } from 'sushi/types' + +export type PoolId = { + id: ID + address: Address + chainId: ChainId + + protocol: SushiSwapProtocol +} diff --git a/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts b/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts new file mode 100644 index 0000000000..8965751c15 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts @@ -0,0 +1,6 @@ +import type { PoolId } from 'sushi/types' + +export type PoolIfIncentivized = T & { + isIncentivized: boolean + wasIncentivized: boolean +} diff --git a/packages/sushi/src/types/sushi-pool/pool-v2.ts b/packages/sushi/src/types/sushi-pool/pool-v2.ts new file mode 100644 index 0000000000..75c62692b9 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-v2.ts @@ -0,0 +1,13 @@ +import type { PoolId } from 'sushi/types' +import { SushiSwapProtocol, SushiSwapV2Protocol } from 'sushi/types' +import type { SushiSwapV2ChainId } from '../../config/sushiswap-v2' + +export type PoolV2 = T & + Omit & { + chainId: SushiSwapV2ChainId + protocol: SushiSwapV2Protocol + } + +export function isPoolV2(pool: PoolId): pool is T { + return pool.protocol === SushiSwapProtocol.SUSHISWAP_V2 +} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts b/packages/sushi/src/types/sushi-pool/pool-v3.ts similarity index 57% rename from packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts rename to packages/sushi/src/types/sushi-pool/pool-v3.ts index 98c6b1a0f5..6a809761e2 100644 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-v3.ts +++ b/packages/sushi/src/types/sushi-pool/pool-v3.ts @@ -1,5 +1,5 @@ import { - type SushiPoolBase, + type PoolId, SushiSwapProtocol, type SushiSwapV3Protocol, } from 'sushi/types' @@ -13,13 +13,12 @@ type Extension = { feeGrowthGlobal1X128: bigint } -export type SushiPoolV3 = Omit & { - chainId: SushiSwapV3ChainId - protocol: SushiSwapV3Protocol -} & Extension +export type PoolV3 = T & + Omit & { + chainId: SushiSwapV3ChainId + protocol: SushiSwapV3Protocol + } & Extension -export function isSushiPoolV3( - pool: SushiPoolBase, -): pool is T { +export function isPoolV3(pool: PoolId): pool is T { return pool.protocol === SushiSwapProtocol.SUSHISWAP_V3 } diff --git a/packages/sushi/src/types/sushi-pool/pool-with-aprs.ts b/packages/sushi/src/types/sushi-pool/pool-with-aprs.ts new file mode 100644 index 0000000000..40b1ff92a7 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-with-aprs.ts @@ -0,0 +1,24 @@ +import type { PoolId } from 'sushi/types' + +export type PoolWithAprs = T & + PoolWithIncentiveApr & + PoolWithFeeAprs & + PoolWithTotalAprs + +export type PoolWithIncentiveApr = T & { + incentiveApr: number +} + +export type PoolWithFeeAprs = T & { + feeApr1h: number + feeApr1d: number + feeApr1w: number + feeApr1m: number +} + +export type PoolWithTotalAprs = T & { + totalApr1h: number + totalApr1d: number + totalApr1w: number + totalApr1m: number +} diff --git a/packages/sushi/src/types/sushi-pool/pool-with-buckets.ts b/packages/sushi/src/types/sushi-pool/pool-with-buckets.ts new file mode 100644 index 0000000000..9352d73bc6 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-with-buckets.ts @@ -0,0 +1,15 @@ +import type { PoolId } from 'sushi/types' + +export type PoolBucket = { + id: string + date: number + liquidityUSD: number + volumeUSD: number + feesUSD: number + txCount: number +} + +export type PoolWithBuckets = T & { + poolHourData: PoolBucket[] + poolDayData: PoolBucket[] +} diff --git a/packages/sushi/src/types/sushi-pool/pool-with-incentives.ts b/packages/sushi/src/types/sushi-pool/pool-with-incentives.ts new file mode 100644 index 0000000000..cf4dc53ee8 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-with-incentives.ts @@ -0,0 +1,36 @@ +import type { + Address, + PoolId, + PoolIfIncentivized, + PoolWithIncentiveApr, + Token, +} from 'sushi/types' + +export enum RewarderType { + Primary = 'Primary', + Secondary = 'Secondary', +} + +export enum ChefType { + MasterChefV1 = 'MasterChefV1', + MasterChefV2 = 'MasterChefV2', + MiniChef = 'MiniChef', + Merkl = 'Merkl', +} + +export type Incentive = { + id: string + chainId: number + rewarderAddress: Address + rewardPerDay: number + rewardToken: Token + pid: number + rewarderType: RewarderType + chefType: ChefType +} + +export type PoolWithIncentives = T & + PoolIfIncentivized & + PoolWithIncentiveApr & { + incentives: Incentive[] + } diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts deleted file mode 100644 index bc3facfa62..0000000000 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-if-incentivized.ts +++ /dev/null @@ -1,6 +0,0 @@ -import type { SushiPoolBase } from 'sushi/types' - -export type SushiPoolIfIncentivized = T & { - isIncentivized: boolean - wasIncentivized: boolean -} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts deleted file mode 100644 index 44e7918ea9..0000000000 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-v2.ts +++ /dev/null @@ -1,14 +0,0 @@ -import type { SushiPoolBase } from 'sushi/types' -import { SushiSwapProtocol, SushiSwapV2Protocol } from 'sushi/types' -import type { SushiSwapV2ChainId } from '../../config/sushiswap-v2' - -export type SushiPoolV2 = Omit & { - chainId: SushiSwapV2ChainId - protocol: SushiSwapV2Protocol -} - -export function isSushiPoolV2( - pool: SushiPoolBase, -): pool is T { - return pool.protocol === SushiSwapProtocol.SUSHISWAP_V2 -} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts deleted file mode 100644 index cc54d5a1c9..0000000000 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-with-aprs.ts +++ /dev/null @@ -1,27 +0,0 @@ -import type { SushiPoolBase } from 'sushi/types' - -export type SushiPoolWithAprs = T & - SushiPoolWithIncentiveApr & - SushiPoolWithFeeAprs & - SushiPoolWithFeeAprs - -export type SushiPoolWithIncentiveApr = - T & { - incentiveApr: number - } - -export type SushiPoolWithFeeAprs = - T & { - feeApr1h: number - feeApr1d: number - feeApr1w: number - feeApr1m: number - } - -export type SushiPoolWithTotalAprs = - T & { - totalApr1h: number - totalApr1d: number - totalApr1w: number - totalApr1m: number - } diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts deleted file mode 100644 index b1e8d76111..0000000000 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-with-buckets.ts +++ /dev/null @@ -1,15 +0,0 @@ -import type { SushiPoolBase } from 'sushi/types' - -export type SushiPoolBucket = { - id: string - date: number - liquidityUSD: number - volumeUSD: number - feesUSD: number - txCount: number -} - -export type SushiPoolWithBuckets = T & { - poolHourData: SushiPoolBucket[] - poolDayData: SushiPoolBucket[] -} diff --git a/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts b/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts deleted file mode 100644 index a6e601e25a..0000000000 --- a/packages/sushi/src/types/sushi-pool/sushi-pool-with-incentives.ts +++ /dev/null @@ -1,35 +0,0 @@ -import type { - Address, - SushiPoolBase, - SushiPoolWithIncentiveApr, - Token, -} from 'sushi/types' - -export enum SushiRewarderType { - Primary = 'Primary', - Secondary = 'Secondary', -} - -export enum SushiChefType { - MasterChefV1 = 'MasterChefV1', - MasterChefV2 = 'MasterChefV2', - MiniChef = 'MiniChef', - Merkl = 'Merkl', -} - -export type SushiIncentive = { - id: string - chainId: number - rewarderAddress: Address - rewardPerDay: number - rewardToken: Token - pid: number - rewarderType: SushiRewarderType - chefType: SushiChefType -} - -export type SushiPoolWithIncentives = - T & - SushiPoolWithIncentiveApr & { - incentives: SushiIncentive[] - } diff --git a/packages/sushi/src/types/sushi-position/sushi-position-base.ts b/packages/sushi/src/types/sushi-position/sushi-position-base.ts index 4ebf74869d..514b6c936c 100644 --- a/packages/sushi/src/types/sushi-position/sushi-position-base.ts +++ b/packages/sushi/src/types/sushi-position/sushi-position-base.ts @@ -1,7 +1,7 @@ -import type { Address, SushiPoolBase } from 'sushi/types' +import type { Address, PoolBase } from 'sushi/types' export type SushiPositionBase = { user: Address unstakedBalance: bigint - pool: Pick + pool: Pick } diff --git a/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts b/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts index ca91856f77..f0814cd705 100644 --- a/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts +++ b/packages/sushi/src/types/sushi-position/sushi-position-with-pool.ts @@ -1,8 +1,8 @@ -import type { SushiPoolBase } from 'sushi/types' +import type { PoolBase } from 'sushi/types' import { SushiPositionBase } from './sushi-position-base' export type SushiPositionWithPool< - Pool extends SushiPoolBase = SushiPoolBase, + Pool extends PoolBase = PoolBase, Position extends SushiPositionBase = SushiPositionBase, > = Omit & { pool: Pool From f5bd90caee064626250b97ea8464d3448c4fd83e Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 5 Jun 2024 23:52:04 +0000 Subject: [PATCH 052/119] feat: oh god even more types --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 17 +- apps/evm/src/lib/hooks/useTokensFromPool.ts | 76 +++---- .../hooks/master-chef/use-master-chef.ts | 9 +- apps/evm/src/ui/pool/APRHoverCard.tsx | 5 +- .../Tables/Manual/useManualPositions.ts | 4 +- .../Tables/Smart/useSteerPositions.ts | 4 +- apps/evm/src/ui/pool/MigrateTab.tsx | 12 +- apps/evm/src/ui/pool/MigrateTabContent.tsx | 3 +- apps/evm/src/ui/pool/PoolDepthChart.tsx | 22 +- apps/evm/src/ui/pool/PoolNameCell.tsx | 38 ++-- apps/evm/src/ui/pool/PoolPageV3.tsx | 28 +-- apps/evm/src/ui/pool/PoolPositionProvider.tsx | 4 +- .../ui/pool/PoolPositionRewardsProvider.tsx | 9 +- .../ui/pool/PoolPositionStakedProvider.tsx | 8 +- apps/evm/src/ui/pool/PoolsTable.tsx | 42 ++-- apps/evm/src/ui/pool/PositionCard.tsx | 16 +- .../src/ui/pool/PositionQuickHoverTooltip.tsx | 12 +- apps/evm/src/ui/pool/RewardsSection.tsx | 4 +- .../ui/pool/SelectFeeConcentratedWidget.tsx | 8 +- .../Steer/SteerAPRChart/SteerAPRChart.tsx | 5 +- .../src/ui/pool/Steer/SteerAPRHoverCard.tsx | 10 +- apps/evm/src/ui/pool/Steer/SteerCarousel.tsx | 14 +- .../SteerLiquidityDistributionWidget.tsx | 4 +- .../SteerLiquidityInRangeChip.tsx | 4 +- .../SteerTokenDistributionBar.tsx | 5 +- .../Add/SteerPositionAdd.tsx | 7 +- .../Add/SteerPositionAddProvider.tsx | 7 +- .../Add/SteerPositionAddReviewModal.tsx | 39 ++-- .../Remove/SteerPositionRemove.tsx | 34 ++- .../SteerPositionDetails.tsx | 2 +- apps/evm/src/ui/pool/Steer/SteerPoolCard.tsx | 7 +- .../ui/pool/Steer/SteerStrategies/index.ts | 10 +- .../SteerStrategyLiquidityDistribution.tsx | 4 +- apps/evm/src/ui/pool/TableFiltersNetwork.tsx | 10 +- apps/evm/src/ui/pool/columns.tsx | 70 +++---- jobs/pool/src/steer.ts | 9 +- packages/client/src/api/bonds/bonds/index.ts | 4 +- packages/client/src/api/pools/pool.ts | 3 +- packages/client/src/api/pools/pools/index.ts | 164 ++++++++++++++- packages/client/src/api/pools/pools/select.ts | 64 +----- .../client/src/api/pools/unindexedPool.ts | 198 ++++++------------ packages/client/src/api/steer-vault/vault.ts | 3 +- packages/client/src/api/steer-vault/vaults.ts | 91 +++++++- packages/client/src/pure/pools/pools/pools.ts | 2 +- .../client/src/pure/pools/pools/schema.ts | 3 +- .../src/composite/sushi-historic-pool.ts | 24 ++- .../sushi-v2-staked-unstaked-positions.ts | 3 +- .../subgraphs/master-chef-v1/schema.graphql | 30 +-- .../sushi-v2/queries/pool-with-buckets.ts | 8 +- .../src/subgraphs/sushi-v2/queries/pool.ts | 8 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 26 +-- .../{pool-v2-to-std.ts => pool-v2-to-base.ts} | 32 +-- .../sushi-v3/queries/pool-with-buckets.ts | 8 +- .../src/subgraphs/sushi-v3/queries/pool.ts | 8 +- .../sushi-v3/queries/pools-by-token-pair.ts | 51 ++--- .../{pool-v3-to-std.ts => pool-v3-to-base.ts} | 22 +- .../src/types/pool-has-steer-vaults.ts | 4 +- .../steer-sdk/src/types/steer-vault-id.ts | 4 +- packages/steer-sdk/src/types/steer-vault.ts | 6 +- .../src/utils/getSteerTokenRatios.ts | 18 +- .../sushi/src/types/sushi-pool/pool-base.ts | 8 +- .../src/types/sushi-pool/pool-history.ts | 32 ++- .../types/sushi-pool/pool-with-incentives.ts | 4 +- .../sushi-position/sushi-position-base.ts | 4 +- .../sushi-position-with-pool.ts | 4 +- 65 files changed, 765 insertions(+), 633 deletions(-) rename packages/graph-client-new/src/subgraphs/sushi-v2/transforms/{pool-v2-to-std.ts => pool-v2-to-base.ts} (69%) rename packages/graph-client-new/src/subgraphs/sushi-v3/transforms/{pool-v3-to-std.ts => pool-v3-to-base.ts} (81%) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index 796d56fb33..d761eb4ff0 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -1,18 +1,18 @@ 'use client' -import { Pool } from '@sushiswap/client' import { SushiV2Pool } from '@sushiswap/graph-client-new/sushi-v2' import { useMemo } from 'react' import { Amount } from 'sushi/currency' import useSWR from 'swr' -import { useTokensFromPool } from '../useTokensFromPool' +import type { PoolId } from 'sushi' +import { getTokensFromPool } from '../useTokensFromPool' export function getGraphPoolUrl(poolId: string) { return `/pools/api/graphPool/${poolId}` } -export const useGraphPool = (pool: Pool) => { +export const useGraphPool = (pool: PoolId) => { const { data: graphPool, isLoading, @@ -22,7 +22,16 @@ export const useGraphPool = (pool: Pool) => { fetch(url).then((data) => data.json()), ) - const { token0, token1, liquidityToken } = useTokensFromPool(pool) + const { token0, token1, liquidityToken } = useMemo(() => { + if (!graphPool) + return { + token0: undefined, + token1: undefined, + liquidityToken: undefined, + } + + return getTokensFromPool(graphPool) + }, [graphPool]) return useMemo(() => { return { diff --git a/apps/evm/src/lib/hooks/useTokensFromPool.ts b/apps/evm/src/lib/hooks/useTokensFromPool.ts index e523f1d45b..711b16e986 100644 --- a/apps/evm/src/lib/hooks/useTokensFromPool.ts +++ b/apps/evm/src/lib/hooks/useTokensFromPool.ts @@ -4,46 +4,48 @@ import { useMemo } from 'react' import type { PoolBase } from 'sushi' import { Native, Token } from 'sushi/currency' -export const useTokensFromPool = (pool: PoolBase) => { - return useMemo(() => { - const _token0 = new Token({ - address: pool.token0.address, - name: pool.token0.name, - decimals: Number(pool.token0.decimals), - symbol: pool.token0.symbol, - chainId: pool.chainId, - }) +export const getTokensFromPool = (pool: PoolBase) => { + const _token0 = new Token({ + address: pool.token0.address, + name: pool.token0.name, + decimals: Number(pool.token0.decimals), + symbol: pool.token0.symbol, + chainId: pool.chainId, + }) + + const _token1 = new Token({ + address: pool.token1.address, + name: pool.token1.name, + decimals: Number(pool.token1.decimals), + symbol: pool.token1.symbol, + chainId: pool.chainId, + }) - const _token1 = new Token({ - address: pool.token1.address, - name: pool.token1.name, - decimals: Number(pool.token1.decimals), - symbol: pool.token1.symbol, + const [token0, token1, liquidityToken] = [ + _token0.wrapped.address === Native.onChain(_token0.chainId).wrapped.address + ? Native.onChain(_token0.chainId) + : _token0, + _token1.wrapped.address === Native.onChain(_token1.chainId).wrapped.address + ? Native.onChain(_token1.chainId) + : _token1, + new Token({ + address: pool.id.includes(':') ? pool.id.split(':')[1] : pool.id, + name: 'SLP Token', + decimals: 18, + symbol: 'SLP', chainId: pool.chainId, - }) + }), + ] - const [token0, token1, liquidityToken] = [ - _token0.wrapped.address === - Native.onChain(_token0.chainId).wrapped.address - ? Native.onChain(_token0.chainId) - : _token0, - _token1.wrapped.address === - Native.onChain(_token1.chainId).wrapped.address - ? Native.onChain(_token1.chainId) - : _token1, - new Token({ - address: pool.id.includes(':') ? pool.id.split(':')[1] : pool.id, - name: 'SLP Token', - decimals: 18, - symbol: 'SLP', - chainId: pool.chainId, - }), - ] + return { + token0, + token1, + liquidityToken, + } +} - return { - token0, - token1, - liquidityToken, - } +export const useTokensFromPool = (pool: PoolBase) => { + return useMemo(() => { + return getTokensFromPool(pool) }, [pool]) } diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts index 1f204bd6a0..4a72d6f363 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef.ts @@ -38,7 +38,7 @@ interface UseMasterChefParams { chainId: ChainId chef: ChefType pid: number - token: Token + token: Token | undefined enabled?: boolean watch?: boolean } @@ -218,10 +218,9 @@ export const useMasterChef: UseMasterChef = ({ const _balance = data?.[1] ? (data?.[1] as [bigint, bigint])[0] : undefined const _pendingSushi = data?.[2] ? data?.[2] : undefined - const balance = Amount.fromRawAmount( - token, - _balance ? _balance.toString() : 0, - ) + const balance = token + ? Amount.fromRawAmount(token, _balance ? _balance.toString() : 0) + : undefined const pendingSushi = SUSHI[chainId as keyof typeof SUSHI] ? Amount.fromRawAmount( SUSHI[chainId as keyof typeof SUSHI], diff --git a/apps/evm/src/ui/pool/APRHoverCard.tsx b/apps/evm/src/ui/pool/APRHoverCard.tsx index 8135d49233..84565bc65e 100644 --- a/apps/evm/src/ui/pool/APRHoverCard.tsx +++ b/apps/evm/src/ui/pool/APRHoverCard.tsx @@ -1,5 +1,3 @@ -'use client' - import { CardDescription, Currency, @@ -12,7 +10,6 @@ import { Separator, } from '@sushiswap/ui' import { FC, ReactNode } from 'react' -import { ChainId } from 'sushi/chain' import { tryParseAmount } from 'sushi/currency' import { formatPercent } from 'sushi/format' @@ -85,7 +82,7 @@ export const APRHoverCard: FC = ({ ? pool.incentives.map((el, i) => { const amount = tryParseAmount( el.rewardPerDay.toString(), - incentiveRewardToToken(el.chainId as ChainId, el), + incentiveRewardToToken(el.chainId, el), ) if (!amount) return null diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts index fcdd1d0310..fcbe1a7f62 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts @@ -43,7 +43,9 @@ export const useManualPositions = ({ data: useMemo(() => { const _tokenSymbols = tokenSymbols?.filter((el) => el !== '') || [] return (manualPositions || []) - ?.filter((el) => chainIds.includes(el.chainId)) + ?.filter((el) => + chainIds.includes(el.chainId as (typeof chainIds)[number]), + ) .filter((el) => _tokenSymbols.length > 0 ? _tokenSymbols.some((symbol) => { diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts index e283130faa..fe14d56533 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts @@ -4,13 +4,13 @@ import { usePool, useSteerVaults } from '@sushiswap/client/hooks' import { useAllPrices } from '@sushiswap/react-query' import { useMemo } from 'react' import { useSteerAccountPositions } from 'src/lib/wagmi/hooks/steer/useSteerAccountPosition' -import { ChainId } from 'sushi/chain' +import { SushiSwapV3ChainId } from 'sushi/config' import { Amount, Token } from 'sushi/currency' import { Address } from 'viem' import { useAccount } from 'wagmi' interface UseSteerPositions { - chainId?: ChainId + chainId?: SushiSwapV3ChainId poolAddress?: Address } diff --git a/apps/evm/src/ui/pool/MigrateTab.tsx b/apps/evm/src/ui/pool/MigrateTab.tsx index 2ea85282b0..3174e7f30a 100644 --- a/apps/evm/src/ui/pool/MigrateTab.tsx +++ b/apps/evm/src/ui/pool/MigrateTab.tsx @@ -530,12 +530,12 @@ export const MigrateTab: FC<{ pool: Pool }> = withCheckerRoot(({ pool }) => { size="sm" onClick={() => setInvertPrice((prev) => !prev)} > - 1 {invertPrice ? _token1.symbol : _token0.symbol} ={' '} + 1 {invertPrice ? _token1!.symbol : _token0!.symbol} ={' '} {invertPrice ? `${v2SpotPrice?.invert()?.toSignificant(6)} ${ - _token0.symbol + _token0!.symbol }` - : `${v2SpotPrice?.toSignificant(6)} ${_token1.symbol}`} + : `${v2SpotPrice?.toSignificant(6)} ${_token1!.symbol}`}
) : ( @@ -553,12 +553,12 @@ export const MigrateTab: FC<{ pool: Pool }> = withCheckerRoot(({ pool }) => { size="sm" onClick={() => setInvertPrice((prev) => !prev)} > - 1 {invertPrice ? _token1.symbol : _token0.symbol} ={' '} + 1 {invertPrice ? _token1!.symbol : _token0!.symbol} ={' '} {invertPrice ? `${v3SpotPrice?.invert()?.toSignificant(6)} ${ - _token0.symbol + _token0!.symbol }` - : `${v3SpotPrice?.toSignificant(6)} ${_token1.symbol}`} + : `${v3SpotPrice?.toSignificant(6)} ${_token1!.symbol}`}
) : ( diff --git a/apps/evm/src/ui/pool/MigrateTabContent.tsx b/apps/evm/src/ui/pool/MigrateTabContent.tsx index 08959b5c4b..e072f41764 100644 --- a/apps/evm/src/ui/pool/MigrateTabContent.tsx +++ b/apps/evm/src/ui/pool/MigrateTabContent.tsx @@ -8,7 +8,6 @@ import { Container, } from '@sushiswap/ui' import React from 'react' -import { ChainId } from 'sushi/chain' import { isSushiSwapV3ChainId } from 'sushi/config' import { useIsMounted } from '@sushiswap/hooks' @@ -45,7 +44,7 @@ function MigrateTabContentPositions() { - isSushiSwapV3ChainId(position?.chainId as ChainId), + isSushiSwapV3ChainId(position?.pool.chainId), )} render={(position) => } className="px-2" diff --git a/apps/evm/src/ui/pool/PoolDepthChart.tsx b/apps/evm/src/ui/pool/PoolDepthChart.tsx index 1113868e60..dc9d430fd9 100644 --- a/apps/evm/src/ui/pool/PoolDepthChart.tsx +++ b/apps/evm/src/ui/pool/PoolDepthChart.tsx @@ -23,10 +23,11 @@ interface PoolDepthChartProps { } const getTvlUSD = ( - liquidity: number | string, - totalSupply: number | string, + liquidity: number | bigint | string, + totalLiquidity: number | bigint | string, liquidityUSD: number | string, -) => formatUSD((Number(liquidity) / Number(totalSupply)) * Number(liquidityUSD)) +) => + formatUSD((Number(liquidity) / Number(totalLiquidity)) * Number(liquidityUSD)) export const PoolDepthChart: FC = ({ poolStats, @@ -71,7 +72,7 @@ export const PoolDepthChart: FC = ({ if (valueNodes[0]) { valueNodes[0].innerHTML = `${getTvlUSD( value[1], - Number(poolStats.totalSupply), + Number(poolStats.liquidity), Number(poolStats.liquidityUSD), )}` } @@ -82,12 +83,7 @@ export const PoolDepthChart: FC = ({ } per ${token0.symbol}` } }, - [ - poolStats.liquidityUSD, - poolStats.totalSupply, - token0.symbol, - token1.symbol, - ], + [poolStats.liquidityUSD, poolStats.liquidity, token0.symbol, token1.symbol], ) const DEFAULT_OPTION = useMemo( @@ -110,7 +106,7 @@ export const PoolDepthChart: FC = ({ const tvlUSD = getTvlUSD( params[0].data[1], - poolStats.totalSupply, + poolStats.liquidity, poolStats.liquidityUSD, ) @@ -203,7 +199,7 @@ export const PoolDepthChart: FC = ({ current, resolvedTheme, onMouseOver, - poolStats.totalSupply, + poolStats.liquidity, poolStats.liquidityUSD, token0.symbol, token1.symbol, @@ -229,7 +225,7 @@ export const PoolDepthChart: FC = ({ {getTvlUSD( currentLiquidity, - Number(poolStats.totalSupply), + Number(poolStats.liquidity), Number(poolStats.liquidityUSD), )} diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index a5dbae77af..b3259c6d84 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -1,6 +1,5 @@ 'use client' -import { Protocol } from '@sushiswap/client' import { classNames } from '@sushiswap/ui' import { Badge } from '@sushiswap/ui/components/badge' import { Currency } from '@sushiswap/ui/components/currency' @@ -14,33 +13,34 @@ import { import { Row } from '@tanstack/react-table' import { FC } from 'react' import { useTokensFromPool } from 'src/lib/hooks' -import { ChainId } from 'sushi/chain' import { formatNumber } from 'sushi/format' +import { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { - MaybeNestedPool, - PoolBase, - PoolWithIncentives, + type MaybeNestedPool, + type PoolBase, + type PoolWithIncentives, + SushiSwapProtocol, unnestPool, } from 'sushi' -export const ProtocolBadge: Record = { - [Protocol.BENTOBOX_STABLE]: ( -
- Trident Stable -
- ), - [Protocol.BENTOBOX_CLASSIC]: ( -
- Trident Classic -
- ), - [Protocol.SUSHISWAP_V2]: ( +export const ProtocolBadge: Record = { + // [Protocol.BENTOBOX_STABLE]: ( + //
+ // Trident Stable + //
+ // ), + // [Protocol.BENTOBOX_CLASSIC]: ( + //
+ // Trident Classic + //
+ // ), + [SushiSwapProtocol.SUSHISWAP_V2]: (
V2
), - [Protocol.SUSHISWAP_V3]: ( + [SushiSwapProtocol.SUSHISWAP_V3]: (
V3
@@ -48,7 +48,7 @@ export const ProtocolBadge: Record = { } export const PoolNameCell: FC< - Row>> + Row>>> > = ({ original }) => { const pool = unnestPool(original) diff --git a/apps/evm/src/ui/pool/PoolPageV3.tsx b/apps/evm/src/ui/pool/PoolPageV3.tsx index bfd5552b90..39d65d26e9 100644 --- a/apps/evm/src/ui/pool/PoolPageV3.tsx +++ b/apps/evm/src/ui/pool/PoolPageV3.tsx @@ -15,6 +15,8 @@ import { import { Toggle } from '@sushiswap/ui/components/toggle' import React, { FC, useState } from 'react' import { useTokenAmountDollarValues } from 'src/lib/hooks' +import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' +import { useConcentratedLiquidityPoolReserves } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves' import { SushiSwapV3ChainId } from 'sushi/config' import { formatUSD } from 'sushi/format' import { Address } from 'viem' @@ -24,8 +26,6 @@ import { PoolRewardDistributionsCard } from './PoolRewardDistributionsCard' import { PoolTransactionsV3 } from './PoolTransactionsV3' import { PoolsFiltersProvider } from './PoolsFiltersProvider' import { StatisticsCharts } from './StatisticsChart' -import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' -import { useConcentratedLiquidityPoolReserves } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves' enum Granularity { Day = 0, @@ -153,16 +153,16 @@ const Pool: FC<{ pool: Awaited> }> = ({ pool }) => {
{formatUSD( granularity === Granularity.Week - ? poolStats.volume1w - : poolStats.volume1d ?? 0, + ? poolStats.volumeUSD1w + : poolStats.volumeUSD1d ?? 0, )}{' '} 0 ? 'text-green' : 'text-red', @@ -171,8 +171,8 @@ const Pool: FC<{ pool: Awaited> }> = ({ pool }) => { ( {poolStats[ granularity === Granularity.Week - ? 'volumeChange1w' - : 'volumeChange1d' + ? 'volumeUSD1wChange' + : 'volumeUSD1dChange' ].toFixed(2)} %) @@ -187,16 +187,16 @@ const Pool: FC<{ pool: Awaited> }> = ({ pool }) => {
{formatUSD( granularity === Granularity.Week - ? poolStats.fees1w - : poolStats.fees1d ?? 0, + ? poolStats.feesUSD1w + : poolStats.feesUSD1d ?? 0, )}{' '} 0 ? 'text-green' : 'text-red', @@ -205,8 +205,8 @@ const Pool: FC<{ pool: Awaited> }> = ({ pool }) => { ( {poolStats[ granularity === Granularity.Week - ? 'feesChange1w' - : 'feesChange1d' + ? 'feesUSD1wChange' + : 'feesUSD1dChange' ].toFixed(2)} %) diff --git a/apps/evm/src/ui/pool/PoolPositionProvider.tsx b/apps/evm/src/ui/pool/PoolPositionProvider.tsx index 42ffead899..808719a82e 100644 --- a/apps/evm/src/ui/pool/PoolPositionProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionProvider.tsx @@ -1,6 +1,5 @@ 'use client' -import { Pool } from '@sushiswap/client' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { useGraphPool, @@ -10,6 +9,7 @@ import { import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' import { ChainId } from 'sushi/chain' import { Amount, Type } from 'sushi/currency' +import type { PoolId } from 'sushi/types' import { useAccount } from 'wagmi' interface PoolPositionContext { @@ -25,7 +25,7 @@ interface PoolPositionContext { const Context = createContext(undefined) export const PoolPositionProvider: FC<{ - pool: Pool + pool: PoolId children: ReactNode watch?: boolean }> = ({ pool, children }) => { diff --git a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx index 3e394cb0e3..8841d94017 100644 --- a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx @@ -1,6 +1,6 @@ 'use client' -import { ChefType, Pool } from '@sushiswap/client' +import { ChefType } from '@sushiswap/client' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { incentiveRewardToToken } from 'src/lib/functions' import { useTokenAmountDollarValues, useTokensFromPool } from 'src/lib/hooks' @@ -11,6 +11,7 @@ import { } from 'src/lib/wagmi/hooks/master-chef/use-rewarder' import { ChainId } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' +import type { Incentive, PoolBase, PoolWithIncentives } from 'sushi/types' import { useAccount } from 'wagmi' interface PoolPositionRewardsContext { @@ -25,15 +26,15 @@ interface PoolPositionRewardsContext { const Context = createContext(undefined) interface PoolPositionRewardsProviderProps { - pool: Pool + pool: PoolBase farmId: number chefType: ChefType children: ReactNode - incentives: Pool['incentives'] + incentives: Incentive[] } interface PoolPositionStakedProviderProps { - pool: Pool + pool: PoolWithIncentives children: ReactNode } diff --git a/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx b/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx index 393a0451b9..8b5c4db0d0 100644 --- a/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionStakedProvider.tsx @@ -1,6 +1,6 @@ 'use client' -import { ChefType, Pool } from '@sushiswap/client' +import { ChefType } from '@sushiswap/client' import { FC, ReactNode, createContext, useContext, useMemo } from 'react' import { useGraphPool, @@ -8,6 +8,7 @@ import { useUnderlyingTokenBalanceFromPool, } from 'src/lib/hooks' import { useMasterChef } from 'src/lib/wagmi/hooks/master-chef/use-master-chef' +import type { PoolId, PoolWithIncentives } from 'sushi' import { ChainId } from 'sushi/chain' import { Amount, Currency, Token } from 'sushi/currency' @@ -26,7 +27,7 @@ interface PoolPositionStakedContext { const Context = createContext(undefined) interface PoolPositionStakedProviderProps { - pool: Pool + pool: PoolWithIncentives children: ReactNode watch?: boolean } @@ -65,7 +66,7 @@ export const PoolPositionStakedProvider: FC = } interface _PoolPositionStakedProviderProps { - pool: Pool + pool: PoolId children: ReactNode farmId: number chefType: ChefType @@ -82,6 +83,7 @@ const _PoolPositionStakedProvider: FC<_PoolPositionStakedProviderProps> = ({ const { data: { reserve0, reserve1, totalSupply, liquidityToken }, } = useGraphPool(pool) + const { balance, isLoading, isError, isWritePending, isWriteError } = useMasterChef({ chainId: pool.chainId as ChainId, diff --git a/apps/evm/src/ui/pool/PoolsTable.tsx b/apps/evm/src/ui/pool/PoolsTable.tsx index 39f78afeee..468a7311d1 100644 --- a/apps/evm/src/ui/pool/PoolsTable.tsx +++ b/apps/evm/src/ui/pool/PoolsTable.tsx @@ -11,7 +11,7 @@ import { PlusIcon, } from '@heroicons/react/24/outline' import { Slot } from '@radix-ui/react-slot' -import { GetPoolsArgs, Pool, Protocol } from '@sushiswap/client' +import { GetPoolsArgs } from '@sushiswap/client' import { Button, Card, @@ -42,7 +42,14 @@ import { Native } from 'sushi/currency' import { useSWRConfig } from 'swr' import { usePoolCount, usePoolsInfinite } from '@sushiswap/client/hooks' +import { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { isAngleEnabledChainId } from 'sushi/config' +import { + PoolBase, + PoolHistory, + PoolIfIncentivized, + unnestPool, +} from 'sushi/types' import { usePoolFilters } from './PoolsFiltersProvider' import { APR_COLUMN, @@ -51,17 +58,21 @@ import { TVL_COLUMN, VOLUME_1D_COLUMN, VOLUME_1M_COLUMN, - VOLUME_7D_COLUMN, + VOLUME_1W_COLUMN, } from './columns' +type RequiredPool = PoolHasSteerVaults< + PoolIfIncentivized> +> + const COLUMNS = [ NAME_COLUMN_POOL, TVL_COLUMN, VOLUME_1D_COLUMN, - VOLUME_7D_COLUMN, + VOLUME_1W_COLUMN, VOLUME_1M_COLUMN, - FEES_COLUMN, APR_COLUMN, + FEES_COLUMN, { id: 'actions', cell: ({ row }) => @@ -197,16 +208,6 @@ const COLUMNS = [ {row.original.token0.symbol} / {row.original.token1.symbol} - {row.original.protocol === Protocol.BENTOBOX_STABLE && ( - - Trident Stable - - )} - {row.original.protocol === Protocol.BENTOBOX_CLASSIC && ( - - Trident Classic - - )} {row.original.protocol === 'SUSHISWAP_V2' && ( SushiSwap V2 @@ -287,11 +288,11 @@ const COLUMNS = [ disableLink: true, skeleton: , }, - }, -] satisfies ColumnDef[] + } satisfies ColumnDef, +] as ColumnDef[] interface PositionsTableProps { - onRowClick?(row: Pool): void + onRowClick?(row: RequiredPool): void } export const PoolsTable: FC = ({ onRowClick }) => { @@ -325,6 +326,7 @@ export const PoolsTable: FC = ({ onRowClick }) => { shouldFetch: true, swrConfig: useSWRConfig(), }) + const data = useMemo(() => pools?.flat() || [], [pools]) const state: Partial = useMemo(() => { @@ -338,7 +340,7 @@ export const PoolsTable: FC = ({ onRowClick }) => { }, [data?.length, sorting]) const rowRenderer = useCallback( - (row: Row, rowNode: ReactNode) => { + (row: Row, rowNode: ReactNode) => { if (onRowClick) return ( = ({ onRowClick }) => { state={state} onSortingChange={setSorting} loading={!pools && isValidating} - linkFormatter={(row) => `/pool/${row.chainId}%3A${row.address}`} + linkFormatter={(row) => + `/pool/${unnestPool(row).chainId}%3A${unnestPool(row).address}` + } rowRenderer={rowRenderer} columns={COLUMNS} data={data} diff --git a/apps/evm/src/ui/pool/PositionCard.tsx b/apps/evm/src/ui/pool/PositionCard.tsx index 1a67344d11..a7fa195801 100644 --- a/apps/evm/src/ui/pool/PositionCard.tsx +++ b/apps/evm/src/ui/pool/PositionCard.tsx @@ -10,12 +10,19 @@ import { } from '@sushiswap/ui/components/tooltip' import React, { FC } from 'react' import { useTokensFromPool } from 'src/lib/hooks' -import { PositionWithPool } from 'src/types' import { Chain } from 'sushi/chain' import { formatNumber, formatUSD } from 'sushi/format' +import type { + PoolBase, + PoolWithIncentives, + SushiPositionStaked, + SushiPositionWithPool, +} from 'sushi/types' interface PositionCard { - position: PositionWithPool + position: SushiPositionStaked< + SushiPositionWithPool> + > } export const PositionCardSkeleton = () => { @@ -44,12 +51,13 @@ export const PositionCardSkeleton = () => { export const PositionCard: FC = ({ position }) => { const { token0, token1 } = useTokensFromPool(position.pool) const valueUSD = - (Number(position.balance) / Number(position.pool.totalSupply)) * + (Number(position.unstakedBalance) / Number(position.pool.liquidity)) * Number(position.pool.liquidityUSD) + return (
- {Chain.from(position.chainId)?.name} + {Chain.from(position.pool.chainId)?.name}

{token0.symbol}/{token1.symbol}{' '} diff --git a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx index b882bd9ab4..0534ae5d45 100644 --- a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx +++ b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx @@ -4,10 +4,16 @@ import { Currency } from '@sushiswap/ui/components/currency' import { LinkInternal } from '@sushiswap/ui/components/link' import { List } from '@sushiswap/ui/components/list' import React, { FC, useCallback } from 'react' -import { PositionWithPool } from 'src/types' import { formatPercent, formatUSD } from 'sushi/format' import { ZERO } from 'sushi/math' +import type { + PoolBase, + PoolWithAprs, + PoolWithIncentives, + SushiPositionStaked, + SushiPositionWithPool, +} from 'sushi' import { ChainId } from 'sushi/chain' import { useAccount, useSwitchChain } from 'wagmi' import { PoolPositionProvider, usePoolPosition } from './PoolPositionProvider' @@ -21,7 +27,9 @@ import { } from './PoolPositionStakedProvider' interface PositionQuickHoverTooltipProps { - row: PositionWithPool + row: SushiPositionStaked< + SushiPositionWithPool>> + > } export const PositionQuickHoverTooltip: FC = ({ diff --git a/apps/evm/src/ui/pool/RewardsSection.tsx b/apps/evm/src/ui/pool/RewardsSection.tsx index 49f3a26b08..0f421699ce 100644 --- a/apps/evm/src/ui/pool/RewardsSection.tsx +++ b/apps/evm/src/ui/pool/RewardsSection.tsx @@ -59,7 +59,9 @@ export const RewardsSection: FC = () => { const positions = useMemo(() => { const _tokenSymbols = tokenSymbols?.filter((el) => el !== '') || [] return (data ?? []) - .filter((el) => chainIds.includes(el.chainId)) + .filter((el) => + chainIds.includes(el.chainId as (typeof chainIds)[number]), + ) .flatMap((el) => { return Object.values(el.pools ?? {}) .filter( diff --git a/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx b/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx index 597d71ea51..8bd9fb7de8 100644 --- a/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx +++ b/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx @@ -71,19 +71,19 @@ export const SelectFeeConcentratedWidget: FC = if (!pools) return tvlDistribution const totalTvl = pools?.reduce( - (acc, pool) => acc + Number(pool.totalValueLockedUSD), + (acc, pool) => acc + Number(pool.liquidityUSD), 0, ) pools?.forEach((pool) => { if ( - !FEE_OPTIONS.find((option) => option.value === Number(pool.feeTier)) + !FEE_OPTIONS.find((option) => option.value === Number(pool.swapFee)) ) return - const tvlShare = pool.totalValueLockedUSD / totalTvl + const tvlShare = pool.liquidityUSD / totalTvl if (Number.isNaN(tvlShare)) return - tvlDistribution.set(Number(pool.feeTier), tvlShare) + tvlDistribution.set(Number(pool.swapFee), tvlShare) }) return tvlDistribution diff --git a/apps/evm/src/ui/pool/Steer/SteerAPRChart/SteerAPRChart.tsx b/apps/evm/src/ui/pool/Steer/SteerAPRChart/SteerAPRChart.tsx index 059e6cca3e..0dc338948c 100644 --- a/apps/evm/src/ui/pool/Steer/SteerAPRChart/SteerAPRChart.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerAPRChart/SteerAPRChart.tsx @@ -1,14 +1,13 @@ 'use client' -import { Pool } from '@sushiswap/client' -import { getSteerVaultAprTimeseries } from '@sushiswap/steer-sdk' +import { SteerVaultId, getSteerVaultAprTimeseries } from '@sushiswap/steer-sdk' import { useQuery } from '@tanstack/react-query' import React, { FC } from 'react' import { _SteerAPRChart } from './_SteerAPRChart' interface SteerAPRChartProps { - vault: Pool['steerVaults'][0] + vault: SteerVaultId } export const SteerAPRChart: FC = ({ vault }) => { diff --git a/apps/evm/src/ui/pool/Steer/SteerAPRHoverCard.tsx b/apps/evm/src/ui/pool/Steer/SteerAPRHoverCard.tsx index b4db218057..0efecd02f6 100644 --- a/apps/evm/src/ui/pool/Steer/SteerAPRHoverCard.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerAPRHoverCard.tsx @@ -1,6 +1,5 @@ 'use client' -import { Pool } from '@sushiswap/client' import { CardContent, CardDescription, @@ -17,16 +16,17 @@ import { ReplyContent, } from '@sushiswap/ui' import { FC, ReactNode } from 'react' -import { ChainId } from 'sushi/chain' import { tryParseAmount } from 'sushi/currency' import { formatPercent } from 'sushi/format' +import { SteerVault } from '@sushiswap/steer-sdk' +import { PoolWithIncentives } from 'sushi' import { incentiveRewardToToken } from '../../../lib/functions' interface SteerAPRHoverCardProps { children: ReactNode - pool: Pool - vault: Pool['steerVaults'][0] + pool: PoolWithIncentives + vault: SteerVault } export const SteerAPRHoverCard: FC = ({ @@ -65,7 +65,7 @@ export const SteerAPRHoverCard: FC = ({ {pool.incentives.map((el) => { const amount = tryParseAmount( el.rewardPerDay.toString(), - incentiveRewardToToken(el.chainId as ChainId, el), + incentiveRewardToToken(el.chainId, el), ) if (!amount) return null diff --git a/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx b/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx index c439b85cc3..ba174cf944 100644 --- a/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx @@ -1,13 +1,19 @@ 'use client' -import { Pool } from '@sushiswap/client' import { Carousel, SkeletonBox } from '@sushiswap/ui' import { FC, useCallback, useMemo } from 'react' +import { PoolWithSteerVaults, SteerVault } from '@sushiswap/steer-sdk' +import type { PoolWithFeeAprs, PoolWithIncentives } from 'sushi/types' import { SteerPoolCard } from './SteerPoolCard' +type RequiredPool = PoolWithSteerVaults< + PoolWithIncentives, + SteerVault +> + interface SteerCarousel { - pool?: Pool + pool?: RequiredPool isLoading?: boolean } @@ -23,7 +29,7 @@ export const SteerCarousel: FC = ({ } interface _SteerCarousel { - pool: Pool + pool: RequiredPool } const _SteerCarousel: FC<_SteerCarousel> = ({ pool }) => { @@ -33,7 +39,7 @@ const _SteerCarousel: FC<_SteerCarousel> = ({ pool }) => { ) const render = useCallback( - (vault: Pool['steerVaults'][0]) => { + (vault: SteerVault) => { return (
diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityDistributionWidget.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityDistributionWidget.tsx index e5a0f0e67d..0553558f5b 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityDistributionWidget.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityDistributionWidget.tsx @@ -1,12 +1,12 @@ -import { Pool } from '@sushiswap/client' import { CardTitle } from '@sushiswap/ui' import React, { FC } from 'react' +import { SteerVault } from '@sushiswap/steer-sdk' import { SteerLiquidityInRangeChip } from './SteerLiquidityInRangeChip' import { SteerTokenDistributionBar } from './SteerTokenDistributionBar' interface SteerLiquidityDistributionWidgetProps { - vault: Pool['steerVaults'][0] + vault: SteerVault } export const SteerLiquidityDistributionWidget: FC< diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityInRangeChip.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityInRangeChip.tsx index 602f24e2f4..f63158f9d1 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityInRangeChip.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerLiquidityInRangeChip.tsx @@ -1,6 +1,6 @@ 'use client' -import { Pool } from '@sushiswap/client' +import { SteerVault } from '@sushiswap/steer-sdk' import { Chip, SkeletonBox, classNames } from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { SushiSwapV3ChainId } from 'sushi/config' @@ -8,7 +8,7 @@ import { Token } from 'sushi/currency' import { useConcentratedActiveLiquidity } from '../../../../lib/pool/v3/use-concentrated-active-liquidity' interface SteerLiquidityInRangeChipProps { - vault: Pool['steerVaults'][0] + vault: SteerVault } export const SteerLiquidityInRangeChip: FC = ({ diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerTokenDistributionBar.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerTokenDistributionBar.tsx index 792c0ea8af..1c4e752dd7 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerTokenDistributionBar.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityDistributionWidget/SteerTokenDistributionBar.tsx @@ -1,13 +1,12 @@ 'use client' -import { Pool } from '@sushiswap/client' import { usePrices } from '@sushiswap/react-query' -import { getTokenRatios } from '@sushiswap/steer-sdk' +import { SteerVault, getTokenRatios } from '@sushiswap/steer-sdk' import { useQuery } from '@tanstack/react-query' import React from 'react' interface SteerTokenDistributionBarProps { - vault: Pool['steerVaults'][0] + vault: SteerVault } export function SteerTokenDistributionBar({ diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx index 0a8aaabd05..d0b7fa4062 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAdd.tsx @@ -1,8 +1,11 @@ 'use client' import { PlusIcon } from '@heroicons/react-v1/solid' -import { SteerVault } from '@sushiswap/client' -import { STEER_PERIPHERY_ADDRESS, SteerChainId } from '@sushiswap/steer-sdk' +import { + STEER_PERIPHERY_ADDRESS, + SteerChainId, + SteerVault, +} from '@sushiswap/steer-sdk' import { Button, DialogTrigger, classNames } from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { ChainId } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx index 62822ed501..de59723067 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddProvider.tsx @@ -1,7 +1,7 @@ 'use client' -import type { SteerVault } from '@sushiswap/client' import { useSteerVault } from '@sushiswap/client/hooks' +import type { SteerVault } from '@sushiswap/steer-sdk' import { FC, ReactNode, @@ -132,10 +132,7 @@ export function useSteerPositionAddDerivedInfo({ const [currencyA, currencyB] = useMemo(() => { if (!vault) return [] - return [ - new Token({ chainId: vault.pool.chainId, ...vault.pool.token0 }), - new Token({ chainId: vault.pool.chainId, ...vault.pool.token1 }), - ] + return [new Token(vault.token0), new Token(vault.token1)] }, [vault]) // currencies diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx index 2204d01412..4254719f75 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx @@ -1,7 +1,10 @@ 'use client' -import { SteerVault } from '@sushiswap/client' -import { STEER_PERIPHERY_ADDRESS, isSteerChainId } from '@sushiswap/steer-sdk' +import { + STEER_PERIPHERY_ADDRESS, + SteerVault, + isSteerChainId, +} from '@sushiswap/steer-sdk' import { steerPeripheryAbi } from '@sushiswap/steer-sdk/abi' import { Currency, @@ -20,7 +23,7 @@ import { Button } from '@sushiswap/ui/components/button' import { Dots } from '@sushiswap/ui/components/dots' import { List } from '@sushiswap/ui/components/list/List' import React, { FC, ReactNode, useCallback, useMemo } from 'react' -import { Chain, ChainId } from 'sushi/chain' +import { Chain } from 'sushi/chain' import { Amount } from 'sushi/currency' import { formatUSD } from 'sushi/format' import { Percent } from 'sushi/math' @@ -56,7 +59,6 @@ interface SteerPositionAddReviewModalProps { export const SteerPositionAddReviewModal: FC = ({ vault, onSuccess: _onSuccess, successLink, children }) => { - const { chainId } = vault as { chainId: ChainId } const { currencies, parsedAmounts } = useSteerPositionAddDerivedInfo({ vault, }) @@ -87,7 +89,7 @@ export const SteerPositionAddReviewModal: FC = return [token0Amount, token1Amount] }, [accountPosition, currencies]) const accountPositionValues = useTokenAmountDollarValues({ - chainId: chainId, + chainId: vault.chainId, amounts: accountPositionAmountsArray, }) const accountPositionValue = useMemo( @@ -103,7 +105,7 @@ export const SteerPositionAddReviewModal: FC = [parsedAmounts], ) const newPositionValues = useTokenAmountDollarValues({ - chainId: chainId, + chainId: vault.chainId, amounts: parsedAmountsArray, }) const newPositionValue = useMemo( @@ -132,7 +134,7 @@ export const SteerPositionAddReviewModal: FC = void createToast({ account: address, type: 'mint', - chainId: chainId, + chainId: vault.chainId, txHash: hash, promise: client.waitForTransactionReceipt({ hash }), summary: { @@ -144,7 +146,7 @@ export const SteerPositionAddReviewModal: FC = groupTimestamp: ts, }) }, - [client, currencies, address, chainId, _onSuccess], + [client, currencies, address, vault.chainId, _onSuccess], ) const onError = useCallback((e: Error) => { @@ -154,13 +156,18 @@ export const SteerPositionAddReviewModal: FC = }, []) const prepare = useMemo(() => { - if (!address || !currencies || !parsedAmounts || !isSteerChainId(chainId)) + if ( + !address || + !currencies || + !parsedAmounts || + !isSteerChainId(vault.chainId) + ) return undefined return { - address: STEER_PERIPHERY_ADDRESS[chainId], + address: STEER_PERIPHERY_ADDRESS[vault.chainId], abi: steerPeripheryAbi, - chainId, + chainId: vault.chainId, functionName: 'deposit', args: [ vault.address as Address, @@ -173,7 +180,7 @@ export const SteerPositionAddReviewModal: FC = } satisfies UseSimulateContractParameters }, [ address, - chainId, + vault.chainId, currencies, parsedAmounts, slippagePercent, @@ -183,7 +190,7 @@ export const SteerPositionAddReviewModal: FC = const { data: simulation, isError } = useSimulateContract({ ...prepare, query: { - enabled: Boolean(approved && chainId === chain?.id), + enabled: Boolean(approved && vault.chainId === chain?.id), }, }) @@ -223,7 +230,7 @@ export const SteerPositionAddReviewModal: FC = }, [writeContractAsync, simulation /*, adjustedGas*/]) const { status } = useWaitForTransactionReceipt({ - chainId: chainId, + chainId: vault.chainId, hash, }) @@ -244,7 +251,7 @@ export const SteerPositionAddReviewModal: FC = - {Chain.from(chainId)!.name} + {Chain.from(vault.chainId)!.name} @@ -321,7 +328,7 @@ export const SteerPositionAddReviewModal: FC = )} = ({ vault, }) => { - const { chainId } = vault as { chainId: ChainId } - const client = usePublicClient() const { address: account, chain } = useAccount() const [value, setValue] = useState('0') @@ -75,11 +67,11 @@ export const SteerPositionRemove: FC = ({ }) const [token0, token1] = useMemo(() => { - const token0 = new Token({ chainId: chainId, ...vault.pool.token0 }) - const token1 = new Token({ chainId: chainId, ...vault.pool.token1 }) + const token0 = new Token(vault.token0) + const token1 = new Token(vault.token1) return [token0, token1] - }, [chainId, vault]) + }, [vault]) const tokenAmountsTotal = useMemo(() => { const token0Amount = Amount.fromRawAmount( @@ -119,7 +111,7 @@ export const SteerPositionRemove: FC = ({ void createToast({ account, type: 'burn', - chainId: chainId, + chainId: vault.chainId, txHash: hash, promise: client.waitForTransactionReceipt({ hash }), summary: { @@ -131,7 +123,7 @@ export const SteerPositionRemove: FC = ({ groupTimestamp: ts, }) }, - [client, account, chainId, token0.symbol, token1.symbol], + [client, account, vault.chainId, token0.symbol, token1.symbol], ) const onError = useCallback((e: Error) => { @@ -146,13 +138,13 @@ export const SteerPositionRemove: FC = ({ !position || position?.steerTokenBalance === 0n || !tokenAmountsDiscounted || - !isSteerChainId(chainId) + !isSteerChainId(vault.chainId) ) return undefined return { - address: vault.address as Address, - chainId, + address: vault.address, + chainId: vault.chainId, abi: steerMultiPositionManager, functionName: 'withdraw', args: [ @@ -164,7 +156,7 @@ export const SteerPositionRemove: FC = ({ } satisfies UseSimulateContractParameters }, [ account, - chainId, + vault.chainId, position, slippagePercent, tokenAmountsDiscounted, @@ -174,7 +166,7 @@ export const SteerPositionRemove: FC = ({ const { data: simulation } = useSimulateContract({ ...prepare, query: { - enabled: prepare && chainId === chain?.id, + enabled: prepare && vault.chainId === chain?.id, }, }) @@ -292,7 +284,7 @@ export const SteerPositionRemove: FC = ({ fullWidth variant="outline" size="xl" - chainId={chainId} + chainId={vault.chainId} >
-
- {pool.isIncentivized && showEmissions - ? pool.incentives.map((el, i) => { - const amount = tryParseAmount( - el.rewardPerDay.toString(), - incentiveRewardToToken(el.chainId, el), - ) - if (!amount) return null - - return ( - - +{' '} - - {amount?.toSignificant(6)} {amount?.currency.symbol} per - day - - ) - }) - : null} -

diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx index 01d2852a49..d1dfa6e2d6 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/ConcentratedPositionsTable.tsx @@ -76,7 +76,11 @@ export const ConcentratedPositionsTable: FC = const _positions = useMemo(() => { const _tokenSymbols = tokenSymbols?.filter((el) => el !== '') || [] return (positions || []) - ?.filter((el) => filterChainIds.includes(el.chainId)) + ?.filter((el) => + filterChainIds.includes( + el.chainId as (typeof filterChainIds)[number], + ), + ) .filter((el) => _tokenSymbols.length > 0 ? _tokenSymbols.some((symbol) => { diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx deleted file mode 100644 index 22a94c8a6a..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/Manual.tsx +++ /dev/null @@ -1,81 +0,0 @@ -'use client' - -import { Slot } from '@radix-ui/react-slot' -import { DataTable } from '@sushiswap/ui' -import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' -import React, { FC, ReactNode, useCallback, useState } from 'react' -import { ChainId } from 'sushi/chain' - -import { Address } from 'viem' -import { - NAME_COLUMN_V3, - POSITION_SIZE_CELL, - POSITION_UNCLAIMED_CELL, - PRICE_RANGE_COLUMN, -} from '../../../columns' -import { useManualPositions } from './useManualPositions' -import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' - -const COLUMNS = [ - NAME_COLUMN_V3, - PRICE_RANGE_COLUMN, - POSITION_SIZE_CELL, - POSITION_UNCLAIMED_CELL, -] satisfies ColumnDef[] - -const tableState = { sorting: [{ id: 'positionSize', desc: true }] } - -interface Manual { - chainId?: ChainId - poolAddress?: Address - onRowClick?(row: ConcentratedLiquidityPositionWithV3Pool): void -} - -export const Manual: FC = ({ chainId, poolAddress, onRowClick }) => { - const [paginationState, setPaginationState] = useState({ - pageIndex: 0, - pageSize: 10, - }) - - const rowRenderer = useCallback( - (row: Row, rowNode: ReactNode) => { - if (onRowClick) - return ( - onRowClick?.(row.original)} - > - {rowNode} - - ) - return rowNode - }, - [onRowClick], - ) - - const { data, isInitialLoading } = useManualPositions({ - chainId, - poolAddress, - }) - - return ( - - `/pool/${row.chainId}:${ - row.address - }/positions/${row.tokenId.toString()}` - } - rowRenderer={rowRenderer} - columns={COLUMNS} - data={data} - pagination={true} - onPaginationChange={setPaginationState} - state={{ - ...tableState, - pagination: paginationState, - }} - /> - ) -} diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/index.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/index.ts deleted file mode 100644 index a7b1889fcf..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './Manual' diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts deleted file mode 100644 index fcbe1a7f62..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Manual/useManualPositions.ts +++ /dev/null @@ -1,70 +0,0 @@ -'use client' - -import { useMemo } from 'react' -import { ChainId } from 'sushi/chain' -import { - SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, - isSushiSwapV3ChainId, -} from 'sushi/config' -import { Writeable } from 'zod' - -import { useConcentratedLiquidityPositions } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions' -import { Address } from 'viem' -import { useAccount } from 'wagmi' -import { usePoolFilters } from '../../../PoolsFiltersProvider' - -interface UseManualPositions { - chainId?: ChainId - poolAddress?: Address -} - -export const useManualPositions = ({ - poolAddress, - chainId, -}: UseManualPositions) => { - const { address } = useAccount() - const { chainIds, tokenSymbols } = usePoolFilters() - - const chainIdsToQuery = useMemo(() => { - if (chainId && isSushiSwapV3ChainId(chainId)) { - return [chainId] - } - - return SUSHISWAP_V3_SUPPORTED_CHAIN_IDS - }, [chainId]) - - const { data: manualPositions, isInitialLoading } = - useConcentratedLiquidityPositions({ - account: address, - chainIds: chainIdsToQuery as Writeable, - }) - - return { - data: useMemo(() => { - const _tokenSymbols = tokenSymbols?.filter((el) => el !== '') || [] - return (manualPositions || []) - ?.filter((el) => - chainIds.includes(el.chainId as (typeof chainIds)[number]), - ) - .filter((el) => - _tokenSymbols.length > 0 - ? _tokenSymbols.some((symbol) => { - return [ - el.pool?.token0.symbol, - el.pool?.token1.symbol, - ].includes(symbol.toUpperCase()) - }) - : true, - ) - .filter((el) => { - return ( - el.liquidity !== 0n && - (poolAddress - ? el.address.toLowerCase() === poolAddress.toLowerCase() - : true) - ) - }) - }, [tokenSymbols, manualPositions, chainIds, poolAddress]), - isInitialLoading, - } -} diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/Smart.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/Smart.tsx deleted file mode 100644 index 846c326634..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/Smart.tsx +++ /dev/null @@ -1,85 +0,0 @@ -'use client' - -import { Slot } from '@radix-ui/react-slot' -import { DataTable } from '@sushiswap/ui' -import { ColumnDef, PaginationState } from '@tanstack/react-table' -import { Row } from '@tanstack/react-table' -import React, { FC, ReactNode, useCallback, useState } from 'react' -import { ChainId } from 'sushi/chain' - -import { Card, CardHeader, CardTitle } from '@sushiswap/ui' -import { Address } from 'viem' -import { - STEER_NAME_COLUMN, - STEER_POSITION_SIZE_COLUMN, - STEER_STRATEGY_COLUMN, -} from './columns' -import { SteerPosition, useSteerPositions } from './useSteerPositions' - -const COLUMNS = [ - STEER_NAME_COLUMN, - STEER_STRATEGY_COLUMN, - STEER_POSITION_SIZE_COLUMN, -] satisfies ColumnDef[] - -const tableState = { sorting: [{ id: 'positionSize', desc: true }] } - -interface Smart { - chainId?: ChainId - poolAddress?: Address - onRowClick?(row: SteerPosition): void -} - -export const Smart: FC = ({ chainId, poolAddress, onRowClick }) => { - const [paginationState, setPaginationState] = useState({ - pageIndex: 0, - pageSize: 10, - }) - - const rowRenderer = useCallback( - (row: Row, rowNode: ReactNode) => { - if (onRowClick) - return ( - onRowClick?.(row.original)} - > - {rowNode} - - ) - return rowNode - }, - [onRowClick], - ) - - const { data, isLoading } = useSteerPositions({ chainId, poolAddress }) - - return ( - - - - My Positions{' '} - - ({data?.length}) - - - - - `/pool/${row.vault.pool.id}/smart/${row.vault.id}` - } - rowRenderer={rowRenderer} - columns={COLUMNS} - data={data} - pagination={true} - onPaginationChange={setPaginationState} - state={{ - ...tableState, - pagination: paginationState, - }} - /> - - ) -} diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/columns/index.tsx b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/columns/index.tsx index 6c7cd07a1a..14a429ab11 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/columns/index.tsx +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/columns/index.tsx @@ -13,33 +13,21 @@ import { import { ColumnDef } from '@tanstack/react-table' import { formatNumber } from 'sushi/format' -import { Token, unwrapToken } from 'sushi/currency' +import { SteerAccountPositionExtended } from 'src/lib/wagmi/hooks/steer/useSteerAccountPositionsExtended' +import { unwrapToken } from 'sushi/currency' import { ProtocolBadge } from '../../../../PoolNameCell' -import { SteerPosition } from '../useSteerPositions' import { SteerStrategyCell } from './SteerStrategyCell' -export const STEER_NAME_COLUMN: ColumnDef = { +export const STEER_NAME_COLUMN: ColumnDef< + SteerAccountPositionExtended, + unknown +> = { id: 'name', header: 'Name', cell: ({ row: { original } }) => { const vault = original.vault const pool = vault.pool - const token0 = new Token({ - chainId: original.chainId, - address: pool.token0.address, - decimals: pool.token0.decimals, - symbol: pool.token0.symbol, - }) - const token1 = new Token({ - chainId: original.chainId, - address: pool.token1.address, - decimals: pool.token1.decimals, - symbol: pool.token1.symbol, - }) - - const incentives = pool.incentives.filter((i) => i.rewardPerDay > 0) - return (
@@ -51,18 +39,18 @@ export const STEER_NAME_COLUMN: ColumnDef = { } > - - + +
- {unwrapToken(token0).symbol}{' '} + {unwrapToken(original.token0).symbol}{' '} / {' '} - {unwrapToken(token1).symbol}{' '} + {unwrapToken(original.token1).symbol}{' '}
= {
- 🧑🌾{' '} - {incentives.length > 1 - ? `x ${incentives.length}` - : ''}{' '} + 🧑🌾{' '}
@@ -148,7 +133,10 @@ export const STEER_NAME_COLUMN: ColumnDef = { size: 300, } -export const STEER_STRATEGY_COLUMN: ColumnDef = { +export const STEER_STRATEGY_COLUMN: ColumnDef< + SteerAccountPositionExtended, + unknown +> = { id: 'strategy', header: 'Strategy', cell: (props) => , @@ -162,7 +150,10 @@ export const STEER_STRATEGY_COLUMN: ColumnDef = { size: 300, } -export const STEER_POSITION_SIZE_COLUMN: ColumnDef = { +export const STEER_POSITION_SIZE_COLUMN: ColumnDef< + SteerAccountPositionExtended, + unknown +> = { id: 'positionSize', header: 'Position Size', accessorFn: (row) => row.totalAmountUSD ?? 0, diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts deleted file mode 100644 index fe14d56533..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/useSteerPositions.ts +++ /dev/null @@ -1,102 +0,0 @@ -'use client' - -import { usePool, useSteerVaults } from '@sushiswap/client/hooks' -import { useAllPrices } from '@sushiswap/react-query' -import { useMemo } from 'react' -import { useSteerAccountPositions } from 'src/lib/wagmi/hooks/steer/useSteerAccountPosition' -import { SushiSwapV3ChainId } from 'sushi/config' -import { Amount, Token } from 'sushi/currency' -import { Address } from 'viem' -import { useAccount } from 'wagmi' - -interface UseSteerPositions { - chainId?: SushiSwapV3ChainId - poolAddress?: Address -} - -export const useSteerPositions = ({ - poolAddress, - chainId, -}: UseSteerPositions) => { - const { address: account } = useAccount() - - const { data: vaultsPerChain, isLoading: isPerChainLoading } = useSteerVaults( - { - args: { chainIds: chainId ? [chainId] : undefined }, - shouldFetch: account && (!poolAddress || !chainId), - }, - ) - const { data: vaultsPerPool, isLoading: isPerPoolLoading } = usePool({ - args: chainId && poolAddress ? { chainId, address: poolAddress } : '', - shouldFetch: !!account && !!poolAddress && !!chainId, - }) - - const { data: prices, isLoading: isPricesLoading } = useAllPrices() - - const isVaultsLoading = isPerChainLoading || isPerPoolLoading - const vaults = useMemo(() => { - if (vaultsPerChain) { - return vaultsPerChain - } - - if (vaultsPerPool) { - return vaultsPerPool.steerVaults.map((steerVault) => ({ - ...steerVault, - pool: vaultsPerPool, - })) - } - }, [vaultsPerChain, vaultsPerPool]) - - const vaultIds = useMemo(() => vaults?.map((el) => el.id), [vaults]) - const { data: positions, isLoading: isPositionsLoading } = - useSteerAccountPositions({ - vaultIds, - account, - }) - - return { - data: useMemo(() => { - if (!vaults || !positions || !account) return [] - - return positions.flatMap((el, i) => { - if (!el || el.steerTokenBalance === 0n) return [] - - const vault = vaults[i] - - const token0 = new Token({ chainId: vault.chainId, ...vault.token0 }) - const token1 = new Token({ chainId: vault.chainId, ...vault.token1 }) - - const token0Price = - prices?.[String(vault.chainId)]?.[token0.address] || 0 - const token1Price = - prices?.[String(vault.chainId)]?.[token1.address] || 0 - - const token0Amount = Amount.fromRawAmount(token0, el?.token0Balance) - const token1Amount = Amount.fromRawAmount(token1, el?.token1Balance) - - const token0AmountUSD = Number( - token0Amount?.multiply(token0Price).toSignificant(8), - ) - const token1AmountUSD = Number( - token1Amount?.multiply(token1Price).toSignificant(8), - ) - - return { - ...el, - vault, - token0Amount, - token1Amount, - token0AmountUSD, - token1AmountUSD, - totalAmountUSD: token0AmountUSD + token1AmountUSD, - } - }) - }, [account, positions, prices, vaults]), - isLoading: - !!account && (isVaultsLoading || isPricesLoading || isPositionsLoading), - } -} - -export type SteerPosition = NonNullable< - ReturnType['data'] ->[number] diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index b3259c6d84..e221050e12 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -10,18 +10,15 @@ import { TooltipProvider, TooltipTrigger, } from '@sushiswap/ui/components/tooltip' -import { Row } from '@tanstack/react-table' import { FC } from 'react' import { useTokensFromPool } from 'src/lib/hooks' import { formatNumber } from 'sushi/format' import { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { - type MaybeNestedPool, type PoolBase, - type PoolWithIncentives, + type PoolIfIncentivized, SushiSwapProtocol, - unnestPool, } from 'sushi' export const ProtocolBadge: Record = { @@ -47,14 +44,14 @@ export const ProtocolBadge: Record = { ), } -export const PoolNameCell: FC< - Row>>> -> = ({ original }) => { - const pool = unnestPool(original) - +export const PoolNameCell: FC<{ + pool: PoolHasSteerVaults, true> +}> = ({ pool }) => { const { token0, token1 } = useTokensFromPool(pool) - const incentives = pool.incentives?.filter((i) => i.rewardPerDay > 0) + const isIncentivized = 'isIncentivized' in pool && pool.isIncentivized + const hasEnabledVault = + 'hasEnabledSteerVault' in pool && pool.hasEnabledSteerVault return (
@@ -110,14 +107,12 @@ export const PoolNameCell: FC< - {pool.isIncentivized && ( + {isIncentivized && (
- 🧑‍🌾 {incentives.length > 1 - ? `x ${incentives.length}` - : ''}{' '} + 🧑‍🌾{' '}
@@ -126,7 +121,7 @@ export const PoolNameCell: FC<
)} - {pool.hasEnabledSteerVault && ( + {hasEnabledVault && ( diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index e5ff1c7d9f..3d5f93a42b 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -1,5 +1,5 @@ -import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import React, { FC, ReactNode } from 'react' +import type { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { useSushiV2UserPositions } from 'src/lib/hooks' import { useAccount } from 'wagmi' @@ -9,12 +9,12 @@ interface PositionCardList { positions, isLoading, }: { - positions: SushiV2StakedUnstakedPosition[] + positions: UserWithPool[] isLoading: boolean }): ReactNode } -const value = (position: SushiV2StakedUnstakedPosition) => +const value = (position: UserWithPool) => (Number(position.unstakedBalance + position.stakedBalance) / Number(position.pool.liquidity)) * Number(position.pool.liquidityUSD) diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index cb4c67a426..641b67917f 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -1,25 +1,25 @@ import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' import { Slot } from '@sushiswap/ui/components/slot' -import { ColumnDef, PaginationState, Row } from '@tanstack/react-table' +import { DisplayColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { useSushiV2UserPositions } from 'src/lib/hooks' -import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' -import type { SushiSwapV2ChainId } from 'sushi/config' +import type { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { useAccount } from 'wagmi' import { usePoolFilters } from './PoolsFiltersProvider' import { APR_COLUMN, NAME_COLUMN_POOL, VALUE_COLUMN } from './columns' +// ! Column types have to be checked manually const COLUMNS = [ NAME_COLUMN_POOL, VALUE_COLUMN, APR_COLUMN, -] satisfies ColumnDef[] +] as DisplayColumnDef[] interface PositionsTableProps { - onRowClick?(row: SushiV2StakedUnstakedPosition): void - rowLink?(row: SushiV2StakedUnstakedPosition): string + onRowClick?(row: UserWithPool): void + rowLink?(row: UserWithPool): string } const tableState = { sorting: [{ id: 'value', desc: true }] } @@ -56,14 +56,16 @@ export const PositionsTable: FC = ({ }) : true, ) + const chainFiltered = searchFiltered.filter((el) => - (chainIds as SushiSwapV2ChainId[]).includes(el.pool.chainId), + chainIds.includes(el.pool.chainId as (typeof chainIds)[number]), ) + return chainFiltered }, [positions, tokenSymbols, chainIds]) const rowRenderer = useCallback( - (row: Row, rowNode: ReactNode) => { + (row: Row, rowNode: ReactNode) => { if (onRowClick) return ( i.rewardPerDay > 0, - ) - return (
@@ -141,9 +144,6 @@ const COLUMNS = [
🧑🌾{' '} - {incentives.length > 1 - ? `x ${incentives.length}` - : ''}{' '}
@@ -244,11 +244,11 @@ const COLUMNS = [ { id: 'fees1d', header: 'Fees (24h)', - accessorFn: (row) => row.pool.fees1d, + accessorFn: (row) => row.pool.feesUSD1d, cell: (props) => - formatUSD(props.row.original.pool.fees1d).includes('NaN') + formatUSD(props.row.original.pool.feesUSD1d).includes('NaN') ? '$0.00' - : formatUSD(props.row.original.pool.fees1d), + : formatUSD(props.row.original.pool.feesUSD1d), meta: { skeleton: , }, @@ -256,17 +256,10 @@ const COLUMNS = [ { id: 'totalApr1d', header: 'APR (24h)', - accessorFn: (row) => - row.apr1d * 100 + - row.pool.incentives - .filter((el) => +el.rewardPerDay > 0) - .reduce((acc, cur) => acc + cur.apr * 100, 0), + accessorFn: (row) => (row.apr1d + row.pool.incentiveApr) * 100, cell: (props) => { const totalAPR = - props.row.original.apr1d * 100 + - props.row.original.pool.incentives - .filter((el) => +el.rewardPerDay > 0) - .reduce((acc, cur) => acc + cur.apr * 100, 0) + (props.row.original.apr1d + props.row.original.pool.incentiveApr) * 100 return (
@@ -433,16 +426,6 @@ const COLUMNS = [ {row.original.token0.symbol} / {row.original.token1.symbol} - {row.original.pool.protocol === Protocol.BENTOBOX_STABLE && ( - - Trident Stable - - )} - {row.original.pool.protocol === Protocol.BENTOBOX_CLASSIC && ( - - Trident Classic - - )} {row.original.pool.protocol === 'SUSHISWAP_V2' && ( SushiSwap V2 @@ -527,7 +510,13 @@ const COLUMNS = [ skeleton: , }, }, -] satisfies ColumnDef[] +] satisfies ColumnDef< + SteerVaultWithPool< + SteerVault, + PoolIfIncentivized>> + >, + unknown +>[] export const SmartPoolsTable = () => { const { tokenSymbols, chainIds, protocols, farmsOnly } = usePoolFilters() @@ -556,11 +545,11 @@ export const SmartPoolsTable = () => { } }, [sorting, pagination]) - const _vaults: SteerVaults = useMemo( + const _vaults = useMemo( () => vaults ? vaults - .filter((el) => (farmsOnly ? el.pool.incentives.length > 0 : true)) + .filter((el) => (farmsOnly ? el.pool.isIncentivized : true)) .filter((el) => protocols.length > 0 ? protocols.includes(el.pool.protocol) diff --git a/apps/evm/src/ui/pool/SmartPositionsTable.tsx b/apps/evm/src/ui/pool/SmartPositionsTable.tsx index f561cb6558..ccd3fd3f8a 100644 --- a/apps/evm/src/ui/pool/SmartPositionsTable.tsx +++ b/apps/evm/src/ui/pool/SmartPositionsTable.tsx @@ -12,7 +12,10 @@ import { TooltipProvider, TooltipTrigger, } from '@sushiswap/ui' -import { useSteerAccountPositionsExtended } from 'src/lib/wagmi/hooks/steer/useSteerAccountPositionsExtended' +import { + SteerAccountPositionExtended, + useSteerAccountPositionsExtended, +} from 'src/lib/wagmi/hooks/steer/useSteerAccountPositionsExtended' import { formatPercent } from 'sushi' import { useAccount } from 'wagmi' import { APRHoverCard } from './APRHoverCard' @@ -21,7 +24,6 @@ import { STEER_POSITION_SIZE_COLUMN, STEER_STRATEGY_COLUMN, } from './ConcentratedPositionsTable/Tables/Smart/columns' -import { SteerPosition } from './ConcentratedPositionsTable/Tables/Smart/useSteerPositions' import { usePoolFilters } from './PoolsFiltersProvider' const COLUMNS = [ @@ -31,17 +33,12 @@ const COLUMNS = [ { id: 'totalApr1d', header: 'APR (24h)', - accessorFn: (row) => - row.vault.apr1d * 100 + - row.vault.pool.incentives - .filter((el) => +el.rewardPerDay > 0) - .reduce((acc, cur) => acc + cur.apr * 100, 0), + accessorFn: (row) => (row.vault.apr1d + row.vault.pool.incentiveApr) * 100, cell: (props) => { const totalAPR = - props.row.original.vault.apr1d * 100 + - props.row.original.vault.pool.incentives - .filter((el) => +el.rewardPerDay > 0) - .reduce((acc, cur) => acc + cur.apr * 100, 0) + (props.row.original.vault.apr1d + + props.row.original.vault.pool.incentiveApr) * + 100 return (
@@ -72,7 +69,7 @@ const COLUMNS = [ skeleton: , }, }, -] satisfies ColumnDef[] +] satisfies ColumnDef[] const tableState = { sorting: [{ id: 'positionSize', desc: true }] } @@ -107,7 +104,7 @@ export const SmartPositionsTable = () => { `/pool/${row.vault.pool.id}/smart/${row.vault.id}` } columns={COLUMNS} - data={_positions as SteerPosition[]} + data={_positions} pagination={true} onPaginationChange={setPaginationState} state={{ diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 065a8a163b..df9aa5348c 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -28,8 +28,11 @@ import type { PoolHistory1D, PoolHistory1M, PoolHistory1W, + PoolIfIncentivized, PoolWithAprs, PoolWithIncentives, + SushiPositionStaked, + SushiPositionWithPool, } from 'sushi' import { unnestPool } from 'sushi/types' import { APRHoverCard } from './APRHoverCard' @@ -141,12 +144,13 @@ export const NETWORK_COLUMN_POOL: ColumnDef = { } export const NAME_COLUMN_POOL: ColumnDef< - MaybeNestedPool>>, + MaybeNestedPool, true>>, unknown > = { id: 'name', header: 'Name', - cell: (props) => , + + cell: (props) => , meta: { skeleton: (
@@ -168,7 +172,7 @@ export const TVL_COLUMN: ColumnDef = { header: 'TVL', accessorFn: (row) => row.liquidityUSD, sortingFn: ({ original: rowA }, { original: rowB }) => - Number(rowA.liquidityUSD) - Number(rowB.liquidityUSD), + rowA.liquidityUSD - rowB.liquidityUSD, cell: (props) => formatUSD(props.row.original.liquidityUSD).includes('NaN') ? '$0.00' @@ -183,7 +187,7 @@ export const VOLUME_1D_COLUMN: ColumnDef = { header: 'Volume (24h)', accessorFn: (row) => row.volumeUSD1d, sortingFn: ({ original: rowA }, { original: rowB }) => - Number(rowA.volumeUSD1d) - Number(rowB.volumeUSD1d), + rowA.volumeUSD1d - rowB.volumeUSD1d, cell: (props) => formatUSD(props.row.original.volumeUSD1d).includes('NaN') ? '$0.00' @@ -223,7 +227,7 @@ export const VOLUME_1M_COLUMN: ColumnDef = { }, } -export const FEES_COLUMN: ColumnDef = { +export const FEES_COLUMN = { id: 'fees1d', header: 'Fees (24h)', accessorFn: (row) => row.feesUSD1d, @@ -234,29 +238,25 @@ export const FEES_COLUMN: ColumnDef = { meta: { skeleton: , }, -} +} as const satisfies ColumnDef -export const NETWORK_COLUMN: ColumnDef = - { - id: 'network', - header: 'Network', - cell: (props) => ( - - ), - meta: { - skeleton: , - }, - } +export const NETWORK_COLUMN = { + id: 'network', + header: 'Network', + cell: (props) => ( + + ), + meta: { + skeleton: , + }, +} as const satisfies ColumnDef -export const APR_COLUMN: ColumnDef< - MaybeNestedPool>, - unknown -> = { +export const APR_COLUMN = { id: 'totalApr1d', header: 'APR', accessorFn: (row) => unnestPool(row).totalApr1d, @@ -272,9 +272,12 @@ export const APR_COLUMN: ColumnDef< meta: { skeleton: , }, -} +} as const satisfies ColumnDef< + MaybeNestedPool>, + unknown +> -export const VALUE_COLUMN: ColumnDef = { +export const VALUE_COLUMN = { id: 'value', header: 'Value', accessorFn: (row) => @@ -292,7 +295,10 @@ export const VALUE_COLUMN: ColumnDef = { meta: { skeleton: , }, -} +} as const satisfies ColumnDef< + SushiPositionWithPool, + unknown +> export const NAME_COLUMN_V3: ColumnDef< ConcentratedLiquidityPositionWithV3Pool, diff --git a/packages/client/src/api/steer-vault/vaults.ts b/packages/client/src/api/steer-vault/vaults.ts index c92b7de43d..39285277c9 100644 --- a/packages/client/src/api/steer-vault/vaults.ts +++ b/packages/client/src/api/steer-vault/vaults.ts @@ -9,11 +9,21 @@ import type { SteerVaultWithPool, } from '@sushiswap/steer-sdk' import type { SushiSwapV3ChainId } from 'sushi/config' -import type { Address, ID, PoolId, SushiSwapV3Protocol } from 'sushi/types' +import type { + Address, + ID, + PoolIfIncentivized, + PoolSwapFee, + PoolWithAprs, + SushiSwapV3Protocol, +} from 'sushi/types' import { type SteerVaultsApiSchema } from '../../pure/steer-vault/vaults/schema' import { parseSteerArgs } from './parse' -type Vaults = SteerVaultWithPool[] +type Vaults = SteerVaultWithPool< + SteerVault, + PoolWithAprs> +>[] export async function getSteerVaultsFromDB( args: typeof SteerVaultsApiSchema._output, @@ -50,6 +60,22 @@ export async function getSteerVaultsFromDB( address: true, chainId: true, protocol: true, + + swapFee: true, + + incentiveApr: true, + isIncentivized: true, + wasIncentivized: true, + + feeApr1h: true, + feeApr1d: true, + feeApr1w: true, + feeApr1m: true, + + totalApr1h: true, + totalApr1d: true, + totalApr1w: true, + totalApr1m: true, }, }, feeTier: true, @@ -125,6 +151,22 @@ export async function getSteerVaultsFromDB( address: vault.pool.address as Address, chainId: vault.pool.chainId as SushiSwapV3ChainId, protocol: vault.pool.protocol as SushiSwapV3Protocol, + + incentiveApr: vault.pool.incentiveApr, + isIncentivized: vault.pool.isIncentivized, + wasIncentivized: vault.pool.wasIncentivized, + + feeApr1h: vault.pool.feeApr1h, + feeApr1d: vault.pool.feeApr1d, + feeApr1w: vault.pool.feeApr1w, + feeApr1m: vault.pool.feeApr1m, + + totalApr1h: vault.pool.totalApr1h, + totalApr1d: vault.pool.totalApr1d, + totalApr1w: vault.pool.totalApr1w, + totalApr1m: vault.pool.totalApr1m, + + swapFee: Number(vault.pool.swapFee), }, feeTier: vault.feeTier, diff --git a/packages/graph-client-new/src/composite/chef-user-positions.ts b/packages/graph-client-new/src/composite/chef-user-positions.ts index 71fb26eca5..dc014dfaea 100644 --- a/packages/graph-client-new/src/composite/chef-user-positions.ts +++ b/packages/graph-client-new/src/composite/chef-user-positions.ts @@ -37,10 +37,8 @@ type CombinedPosition = ( )[number] export type ChefPosition = Omit & { - pool: - | (Omit & - ChainIdVariable['chainId']>) - | null + pool: Omit & + ChainIdVariable['chainId']> } export async function getChefUserPositions({ diff --git a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts index 29a40ca939..111a2df0eb 100644 --- a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts +++ b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts @@ -1,3 +1,4 @@ +import { FetchError } from 'src/lib/fetch-error' import type { ChainIdsVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' import { fetchMultichain } from 'src/multichain/fetch-multichain' @@ -5,6 +6,7 @@ import { type GetSushiV2LiquidityPositions, getSushiV2LiquidityPositions, } from 'src/subgraphs/sushi-v2' +import { ChainId } from 'sushi/chain' import { MINICHEF_SUPPORTED_CHAIN_IDS, SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, @@ -12,12 +14,14 @@ import { isSushiSwapV2ChainId, } from 'sushi/config' import type { - PoolBase, PoolV2, SushiPositionStaked, SushiPositionWithPool, } from 'sushi/types' -import type { GetChefUserPositions } from './chef-user-positions' +import { + type GetChefUserPositions, + getChefUserPositions, +} from './chef-user-positions' export type GetSushiV2StakedUnstakedPositions = { user: Hex @@ -27,7 +31,7 @@ export type GetSushiV2StakedUnstakedPositions = { > export type SushiV2StakedUnstakedPosition = SushiPositionStaked< - SushiPositionWithPool> + SushiPositionWithPool > /** @@ -41,7 +45,10 @@ export async function getSushiV2StakedUnstakedPositions({ ]), ], user, -}: GetSushiV2StakedUnstakedPositions) { +}: GetSushiV2StakedUnstakedPositions): Promise<{ + data: SushiV2StakedUnstakedPosition[] + errors: FetchError[] +}> { const sushiSwapChainIds = chainIds.filter(isSushiSwapV2ChainId) const { data: sushiSwapV2LiquidityPositions, @@ -58,16 +65,16 @@ export async function getSushiV2StakedUnstakedPositions({ }, }) - const miniChefChainIds = chainIds.filter(isMiniChefChainId) + const chefChainIds = [ + ...chainIds.filter(isMiniChefChainId), + ...(chainIds.includes(ChainId.ETHEREUM) ? [ChainId.ETHEREUM] : []), + ] const { data: chefUserPositions, errors: chefUserPositionErrors } = - await fetchMultichain({ - chainIds: miniChefChainIds, - fetch: getSushiV2LiquidityPositions, - variables: { - first: 1000, - where: { - user, - }, + await getChefUserPositions({ + chainIds: chefChainIds, + where: { + address: user, + amount_gt: '0', }, }) @@ -88,7 +95,9 @@ export async function getSushiV2StakedUnstakedPositions({ ) const pool = sushiSwapPosition?.pool ?? chefPosition?.pool + if (!pool) return null + return { user, unstakedBalance: BigInt(sushiSwapPosition?.balance ?? '0'), @@ -96,7 +105,7 @@ export async function getSushiV2StakedUnstakedPositions({ pool, } }) - .filter((p) => p !== null) as SushiV2StakedUnstakedPosition[] + .filter((p): p is NonNullable => p !== null) const errors = [ ...sushiSwapV2LiquidityPositionErrors, diff --git a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts index bbf062971a..38cf55cdf9 100644 --- a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts +++ b/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts @@ -1,8 +1,8 @@ import type { ChainId } from 'sushi/chain' +import type { ID } from 'sushi/types' type ReturnType = Omit & { - id: `${string}:${string}` - // id: `${T['chainId']}:${string}` + id: ID } export function convertIdToMultichainId< diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts index a7d364aa92..67df634761 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts @@ -6,6 +6,7 @@ import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import { ChainId } from 'sushi/chain' import { MASTERCHEF_V1_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { SushiSwapProtocol } from 'sushi/types' import { graphql } from '../graphql' export const MasterChefV1UserPositionsQuery = graphql( @@ -14,7 +15,7 @@ export const MasterChefV1UserPositionsQuery = graphql( positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id address - amount + balance: amount pool { id: pair } @@ -39,19 +40,22 @@ export async function getMasterChefV1UserPositions({ variables, }) - return result.positions.map((position) => { - let pool = null + return result.positions.flatMap((position) => { + if (!position.pool) { + return [] + } - if (position.pool) { - pool = convertIdToMultichainId( + const pool = { + ...convertIdToMultichainId( copyIdToAddress(addChainId(ChainId.ETHEREUM, position.pool)), - ) + ), + protocol: SushiSwapProtocol.SUSHISWAP_V2, } return { id: position.id, address: position.address, - amount: position.amount, + balance: position.balance, pool, } }) diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts index 8fecd16c39..17fe00c159 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts @@ -6,6 +6,7 @@ import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' +import { SushiSwapProtocol } from 'sushi' import { graphql } from '../graphql' export const MasterChefV2UserPositionsQuery = graphql( @@ -14,7 +15,7 @@ export const MasterChefV2UserPositionsQuery = graphql( positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id address - amount + balance: amount pool { id: pair } @@ -39,19 +40,22 @@ export async function getMasterChefV2UserPositions({ variables, }) - return result.positions.map((position) => { - let pool = null + return result.positions.flatMap((position) => { + if (!position.pool) { + return [] + } - if (position.pool) { - pool = convertIdToMultichainId( + const pool = { + ...convertIdToMultichainId( copyIdToAddress(addChainId(ChainId.ETHEREUM, position.pool)), - ) + ), + protocol: SushiSwapProtocol.SUSHISWAP_V2, } return { id: position.id, address: position.address, - amount: position.amount, + balance: position.balance, pool, } }) diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts index 237c5a8308..e350be57ba 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts @@ -7,6 +7,7 @@ import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { MiniChefChainId } from 'sushi/config' import { MINICHEF_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { SushiSwapProtocol } from 'sushi/types' import { graphql } from '../graphql' export const MiniChefUserPositionsQuery = graphql( @@ -15,7 +16,7 @@ export const MiniChefUserPositionsQuery = graphql( positions: users(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { id address - amount + balance: amount pool { id: pair } @@ -42,19 +43,22 @@ export async function getMiniChefUserPositions({ variables, }) - return result.positions.map((position) => { - let pool = null + return result.positions.flatMap((position) => { + if (!position.pool) { + return [] + } - if (position.pool) { - pool = convertIdToMultichainId( + const pool = { + ...convertIdToMultichainId( copyIdToAddress(addChainId(chainId, position.pool)), - ) + ), + protocol: SushiSwapProtocol.SUSHISWAP_V2, } return { id: position.id, address: position.address, - amount: position.amount, + balance: position.balance, pool, } }) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index dd01dd965b..22b58cd0d5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -10,6 +10,7 @@ import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multich import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' +import { SushiSwapProtocol } from 'sushi/types' import { graphql } from '../graphql' export const SushiV2LiquidityPositionsQuery = graphql(` @@ -47,9 +48,12 @@ export async function getSushiV2LiquidityPositions({ }) const transformed = result.liquidityPositions.map((position) => { - const pool = convertIdToMultichainId( - copyIdToAddress(addChainId(chainId, position.pair)), - ) + const pool = { + ...convertIdToMultichainId( + copyIdToAddress(addChainId(chainId, position.pair)), + ), + protocol: SushiSwapProtocol.SUSHISWAP_V2, + } return { id: position.id, diff --git a/packages/steer-sdk/src/types/pool-has-steer-vaults.ts b/packages/steer-sdk/src/types/pool-has-steer-vaults.ts index f6791bf83a..e4b9a2012b 100644 --- a/packages/steer-sdk/src/types/pool-has-steer-vaults.ts +++ b/packages/steer-sdk/src/types/pool-has-steer-vaults.ts @@ -1,6 +1,21 @@ import type { PoolId } from 'sushi' -export type PoolHasSteerVaults = T & { +type PoolHasSteerVaultsRequired = { hasEnabledSteerVault: boolean hadEnabledSteerVault: boolean } + +type PoolHasSteerVaultsOptional = + | PoolHasSteerVaultsRequired + | { + hasEnabledSteerVault?: undefined + hadEnabledSteerVault?: undefined + } + +export type PoolHasSteerVaults< + T extends PoolId = PoolId, + Optional extends boolean = false, +> = T & + (Optional extends true + ? PoolHasSteerVaultsOptional + : PoolHasSteerVaultsRequired) diff --git a/packages/sushi/src/types/sushi-pool/index.ts b/packages/sushi/src/types/sushi-pool/index.ts index 30d1c323cf..360b0bedd4 100644 --- a/packages/sushi/src/types/sushi-pool/index.ts +++ b/packages/sushi/src/types/sushi-pool/index.ts @@ -4,6 +4,7 @@ export * from './pool-base' export * from './pool-history' export * from './pool-id' export * from './pool-if-incentivized' +export * from './pool-swap-fee' export * from './pool-v2' export * from './pool-v3' export * from './pool-with-aprs' diff --git a/packages/sushi/src/types/sushi-pool/pool-base.ts b/packages/sushi/src/types/sushi-pool/pool-base.ts index 4327825dd0..7311c0c125 100644 --- a/packages/sushi/src/types/sushi-pool/pool-base.ts +++ b/packages/sushi/src/types/sushi-pool/pool-base.ts @@ -1,12 +1,11 @@ -import type { PoolId, Token } from 'sushi/types' +import type { PoolId, PoolSwapFee, Token } from 'sushi/types' -export type PoolBase = T & { +export type PoolBase = PoolSwapFee & { name: string token0: Token token1: Token - swapFee: number // twapEnabled: boolean reserve0: bigint diff --git a/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts b/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts index 8965751c15..407e935900 100644 --- a/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts +++ b/packages/sushi/src/types/sushi-pool/pool-if-incentivized.ts @@ -1,6 +1,21 @@ import type { PoolId } from 'sushi/types' -export type PoolIfIncentivized = T & { +type PoolIfIncentivizedRequired = { isIncentivized: boolean wasIncentivized: boolean } + +type PoolIfIncentivizedOptional = + | PoolIfIncentivizedRequired + | { + isIncentivized?: undefined + wasIncentivized?: undefined + } + +export type PoolIfIncentivized< + T extends PoolId = PoolId, + Optional extends boolean = false, +> = T & + (Optional extends true + ? PoolIfIncentivizedOptional + : PoolIfIncentivizedRequired) diff --git a/packages/sushi/src/types/sushi-pool/pool-swap-fee.ts b/packages/sushi/src/types/sushi-pool/pool-swap-fee.ts new file mode 100644 index 0000000000..2e3ab8a670 --- /dev/null +++ b/packages/sushi/src/types/sushi-pool/pool-swap-fee.ts @@ -0,0 +1,5 @@ +import type { PoolId } from 'sushi/types' + +export type PoolSwapFee = T & { + swapFee: number +} From 76d5c37ae3cbfea1ad6d58fdfe7e9abf381dcc4e Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Fri, 7 Jun 2024 11:12:14 +0200 Subject: [PATCH 060/119] feat: new queries, update pool job, add token0/1price to pools --- jobs/pool/src/pools.ts | 1632 ++++++++--------- jobs/pool/src/server.ts | 4 + packages/client/src/api/pools/pools/index.ts | 2 + packages/client/src/api/pools/pools/select.ts | 2 + .../client/src/api/pools/unindexedPool.ts | 2 + packages/graph-client-new/scripts/t.ts | 6 +- .../graph-client-new/src/lib/request-paged.ts | 16 +- .../blocks/queries/block-historic.ts | 5 +- .../sushi-v2/fragments/pool-fields.ts | 4 +- .../src/subgraphs/sushi-v2/queries/pools.ts | 4 +- .../sushi-v2/transforms/pool-v2-to-base.ts | 7 +- .../src/subgraphs/sushi-v3/index.ts | 1 + .../src/subgraphs/sushi-v3/queries/pools.ts | 46 + .../sushi-v3/transforms/pool-v3-to-base.ts | 7 +- .../graph-client/resolvers/pairs/pairById.ts | 2 +- .../sushi/src/types/sushi-pool/pool-base.ts | 4 +- 16 files changed, 882 insertions(+), 862 deletions(-) create mode 100644 packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 4af7ae908e..14b2f5713e 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -1,31 +1,27 @@ import { Prisma, Protocol } from '@sushiswap/database' import { performance } from 'perf_hooks' -import { ChainId } from 'sushi/chain' +import { ChainId, chainShortName } from 'sushi/chain' import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + SushiSwapV2ChainId, + SushiSwapV3ChainId, } from 'sushi/config' + +import { getBlockHistoric } from '@sushiswap/graph-client-new/blocks' +import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' import { - MAX_FIRST, - SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, -} from 'sushi/config/subgraph' + SushiV2Pools, + getSushiV2Pools, +} from '@sushiswap/graph-client-new/sushi-v2' import { - PairsQuery, - Sdk, - V3PoolsQuery, - getBuiltGraphSDK, -} from '../.graphclient/index.js' + SushiV3Pools, + getSushiV3Pools, +} from '@sushiswap/graph-client-new/sushi-v3' import { upsertPools } from './etl/pool/index.js' import { createTokens } from './etl/token/load.js' -interface SubgraphConfig { - chainId: ChainId - url: string - protocol: Protocol -} - interface Blocks { oneHour: number | undefined twoHour: number | undefined @@ -38,26 +34,26 @@ interface Blocks { } type V2Data = { - currentPools: PairsQuery[] - pools1h: PairsQuery[] - pools2h: PairsQuery[] - pools1d: PairsQuery[] - pools2d: PairsQuery[] - pools1w: PairsQuery[] - pools2w: PairsQuery[] - pools1m: PairsQuery[] - pools2m: PairsQuery[] + currentPools: SushiV2Pools + pools1h: SushiV2Pools + pools2h: SushiV2Pools + pools1d: SushiV2Pools + pools2d: SushiV2Pools + pools1w: SushiV2Pools + pools2w: SushiV2Pools + pools1m: SushiV2Pools + pools2m: SushiV2Pools } type V3Data = { - currentPools: V3PoolsQuery[] - pools1h: V3PoolsQuery[] - pools2h: V3PoolsQuery[] - pools1d: V3PoolsQuery[] - pools2d: V3PoolsQuery[] - pools1w: V3PoolsQuery[] - pools2w: V3PoolsQuery[] - pools1m: V3PoolsQuery[] - pools2m: V3PoolsQuery[] + currentPools: SushiV3Pools + pools1h: SushiV3Pools + pools2h: SushiV3Pools + pools1d: SushiV3Pools + pools2d: SushiV3Pools + pools1w: SushiV3Pools + pools2w: SushiV3Pools + pools1m: SushiV3Pools + pools2m: SushiV3Pools } enum AprTimeRange { @@ -67,96 +63,80 @@ enum AprTimeRange { ONE_MONTH = 'ONE_MONTH', } -const SWAP_SUPPORTED_CHAIN_IDS = Array.from( - new Set([ - ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, - ...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, - ]), -) - export async function execute(protocol: Protocol) { try { const startTime = performance.now() - console.log('Preparing to load pools/tokens') - + console.log(`${protocol}: Preparing to load pools/tokens`) + if ( + protocol !== Protocol.SUSHISWAP_V2 && + protocol !== Protocol.SUSHISWAP_V3 + ) { + throw new Error('Unsupported protocol') + } // EXTRACT const exchanges = await extract(protocol) console.log( - `EXTRACT - Pairs extracted from ${exchanges.length} different subgraphs`, + `EXTRACT - ${protocol} - Pairs extracted from ${exchanges.length} different subgraphs`, ) // TRANSFORM - const { tokens, pools } = transform(exchanges) + const { tokens, pools } = transform(protocol, exchanges) - // LOAD - const batchSize = 250 + // TODO: enable code below, commented out while testing + // // LOAD + // const batchSize = 250 - for (let i = 0; i < tokens.length; i += batchSize) { - const batch = tokens.slice(i, i + batchSize) - await createTokens(batch) - } - const concurrentBatches = 10 - for (let i = 0; i < pools.length; i += batchSize * concurrentBatches) { - const batches = [] - for (let j = i; j < i + concurrentBatches * batchSize; j += batchSize) { - if (j > pools.length) { - break - } - batches.push(upsertPools(pools.slice(j, j + batchSize))) - } - const batchStartTime = performance.now() - await Promise.all(batches) - const batchEndTime = performance.now() - console.log( - `Batch completed in ${((batchEndTime - batchStartTime) / 1000).toFixed( - 1, - )} seconds. `, - ) - } + // for (let i = 0; i < tokens.length; i += batchSize) { + // const batch = tokens.slice(i, i + batchSize) + // await createTokens(batch) + // } + // const concurrentBatches = 10 + // for (let i = 0; i < pools.length; i += batchSize * concurrentBatches) { + // const batches = [] + // for (let j = i; j < i + concurrentBatches * batchSize; j += batchSize) { + // if (j > pools.length) { + // break + // } + // batches.push(upsertPools(pools.slice(j, j + batchSize))) + // } + // const batchStartTime = performance.now() + // await Promise.all(batches) + // const batchEndTime = performance.now() + // console.log( + // `LOAD: ${protocol} - Batch completed in ${((batchEndTime - batchStartTime) / 1000).toFixed( + // 1, + // )} seconds. `, + // ) + // } const endTime = performance.now() console.log( - `COMPLETE - Script ran for ${((endTime - startTime) / 1000).toFixed( - 1, - )} seconds. `, + `LOAD: ${protocol} - COMPLETE - Script ran for ${( + (endTime - startTime) / + 1000 + ).toFixed(1)} seconds. `, ) } catch (e) { console.error(e) } } -function createSubgraphConfig(protocol: Protocol) { - if (protocol === Protocol.SUSHISWAP_V2) { - return SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.map((chainId) => { - return { - chainId, - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - protocol: Protocol.SUSHISWAP_V2, - } - }) - } else if (protocol === Protocol.SUSHISWAP_V3) { - return SUSHISWAP_V3_SUPPORTED_CHAIN_IDS.map((chainId) => ({ - chainId, - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - protocol: Protocol.SUSHISWAP_V3, - })) - } - - throw new Error('Protocol not supported') -} - -async function extract(protocol: Protocol) { +async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { const result: { chainId: ChainId; data: V2Data | V3Data }[] = [] - const subgraphs = createSubgraphConfig(protocol) - const chains = Array.from( - new Set(subgraphs.map((subgraph) => subgraph.chainId.toString())), - ) + + const chainIds = + protocol === Protocol.SUSHISWAP_V2 ? [ChainId.BASE] : [ChainId.BASE] // leaving this here for testing, will remove later + // TODO: enable code below, commented out while testing + // const chainIds = + // protocol === Protocol.SUSHISWAP_V2 + // ? SUSHISWAP_V2_SUPPORTED_CHAIN_IDS + // : SUSHISWAP_V3_SUPPORTED_CHAIN_IDS + console.log( - `EXTRACT - Extracting from ${chains.length} different chains, ${chains.join( - ', ', - )}`, + `EXTRACT - ${protocol} - Extracting from ${ + chainIds.length + } different chains, ${chainIds.join(', ')}`, ) - const sdk = getBuiltGraphSDK() const [ oneHourBlocks, twoHourBlocks, @@ -167,301 +147,338 @@ async function extract(protocol: Protocol) { oneMonthBlocks, twoMonthBlocks, ] = await Promise.all([ - sdk.OneHourBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.TwoHourBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.OneDayBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.TwoDayBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.OneWeekBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.TwoWeekBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.OneMonthBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), - sdk.TwoMonthBlocks({ chainIds: SWAP_SUPPORTED_CHAIN_IDS }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + hoursAgo: 1, + }, + }), + + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + hoursAgo: 2, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + daysAgo: 1, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + daysAgo: 2, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + weeksAgo: 1, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + weeksAgo: 2, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + monthsAgo: 1, + }, + }), + fetchMultichain({ + chainIds, + fetch: getBlockHistoric, + variables: { + monthsAgo: 2, + }, + }), ]) await Promise.allSettled( - subgraphs.map(async (subgraph) => { - const sdk = getBuiltGraphSDK({ - chainId: subgraph.chainId, - api: subgraph.url, - }) + chainIds.map(async (chainId) => { const blocks: Blocks = { - oneHour: - Number( - oneHourBlocks.oneHourBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - twoHour: - Number( - twoHourBlocks.twoHourBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - oneDay: - Number( - oneDayBlocks.oneDayBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - twoDay: - Number( - twoDayBlocks.twoDayBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - oneWeek: - Number( - oneWeekBlocks.oneWeekBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - twoWeek: - Number( - twoWeekBlocks.twoWeekBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - oneMonth: - Number( - oneMonthBlocks.oneMonthBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, - twoMonth: - Number( - twoMonthBlocks.twoMonthBlocks.find( - (block) => block.chainId === subgraph.chainId, - )?.number, - ) ?? undefined, + oneHour: oneHourBlocks.data.find((b) => b.chainId === chainId)?.number, + twoHour: twoHourBlocks.data.find((b) => b.chainId === chainId)?.number, + oneDay: oneDayBlocks.data.find((b) => b.chainId === chainId)?.number, + twoDay: twoDayBlocks.data.find((b) => b.chainId === chainId)?.number, + oneWeek: oneWeekBlocks.data.find((b) => b.chainId === chainId)?.number, + twoWeek: twoWeekBlocks.data.find((b) => b.chainId === chainId)?.number, + oneMonth: oneMonthBlocks.data.find((b) => b.chainId === chainId) + ?.number, + twoMonth: twoMonthBlocks.data.find((b) => b.chainId === chainId) + ?.number, } + const pairs = await fetchPairs(chainId, protocol, blocks) - const pairs = await fetchPairs(sdk, subgraph, blocks) if (pairs === undefined) { - console.warn('No pairs found, skipping') + console.warn( + `No pairs found, skipping ${protocol} - ${chainShortName[chainId]}`, + ) return } - console.log(`${subgraph.url}, batches: ${pairs.currentPools.length}`) - result.push({ chainId: subgraph.chainId, data: pairs }) + console.log( + `EXTRACT: ${protocol} - ${chainShortName[chainId]}, batches: ${pairs.currentPools.length}`, + ) + result.push({ chainId, data: pairs }) }), ) return result } -async function fetchPairs(sdk: Sdk, config: SubgraphConfig, blocks: Blocks) { - if ( - config.protocol === Protocol.SUSHISWAP_V2 || - config.protocol === Protocol.BENTOBOX_CLASSIC - ) { - const [ - currentPools, - pools1h, - pools2h, - pools1d, - pools2d, - pools1w, - pools2w, - pools1m, - pools2m, - ] = await Promise.all([ - fetchV2Pairs(sdk, config), - blocks.oneHour - ? fetchV2Pairs(sdk, config, blocks.oneHour) - : ([] as PairsQuery[]), - blocks.twoHour - ? fetchV2Pairs(sdk, config, blocks.twoHour) - : ([] as PairsQuery[]), - blocks.oneDay - ? fetchV2Pairs(sdk, config, blocks.oneDay) - : ([] as PairsQuery[]), - blocks.twoDay - ? fetchV2Pairs(sdk, config, blocks.twoDay) - : ([] as PairsQuery[]), - blocks.oneWeek - ? fetchV2Pairs(sdk, config, blocks.oneWeek) - : ([] as PairsQuery[]), - blocks.twoWeek - ? fetchV2Pairs(sdk, config, blocks.twoWeek) - : ([] as PairsQuery[]), - blocks.oneMonth - ? fetchV2Pairs(sdk, config, blocks.oneMonth) - : ([] as PairsQuery[]), - blocks.twoMonth - ? fetchV2Pairs(sdk, config, blocks.twoMonth) - : ([] as PairsQuery[]), - ]) - - console.log( - `${config.url} results by timeframe - * current: ${currentPools - .map((p) => p.pairs.length) - .reduce((a, b) => a + b, 0)} - * 1h: ${pools1h.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 2h: ${pools2h.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 1d: ${pools1d.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 2d: ${pools2d.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 1w: ${pools1w.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 2w: ${pools2w.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 1m: ${pools1m.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)} - * 2m: ${pools2m.map((p) => p.pairs.length).reduce((a, b) => a + b, 0)}`, - ) - return { - currentPools, - pools1h, - pools2h, - pools1d, - pools2d, - pools1w, - pools2w, - pools1m, - pools2m, - } - } else if (config.protocol === Protocol.SUSHISWAP_V3) { - const [ - currentPools, - pools1h, - pools2h, - pools1d, - pools2d, - pools1w, - pools2w, - pools1m, - pools2m, - ] = await Promise.all([ - fetchV3Pools(sdk, config), - blocks.oneHour - ? fetchV3Pools(sdk, config, blocks.oneHour) - : ([] as V3PoolsQuery[]), - blocks.twoHour - ? fetchV3Pools(sdk, config, blocks.twoHour) - : ([] as V3PoolsQuery[]), - blocks.oneDay - ? fetchV3Pools(sdk, config, blocks.oneDay) - : ([] as V3PoolsQuery[]), - blocks.twoDay - ? fetchV3Pools(sdk, config, blocks.twoDay) - : ([] as V3PoolsQuery[]), - blocks.oneWeek - ? fetchV3Pools(sdk, config, blocks.oneWeek) - : ([] as V3PoolsQuery[]), - blocks.twoWeek - ? fetchV3Pools(sdk, config, blocks.twoWeek) - : ([] as V3PoolsQuery[]), - blocks.oneMonth - ? fetchV3Pools(sdk, config, blocks.oneMonth) - : ([] as V3PoolsQuery[]), - blocks.twoMonth - ? fetchV3Pools(sdk, config, blocks.twoMonth) - : ([] as V3PoolsQuery[]), - ]) - - console.log( - `${config.url} results by timeframe - * current: ${currentPools - .map((p) => p.pools.length) - .reduce((a, b) => a + b, 0)} - 1h: ${pools1h.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 2h: ${pools2h.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 1d: ${pools1d.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 2d: ${pools2d.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 1w: ${pools1w.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 2w: ${pools2w.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 1m: ${pools1m.map((p) => p.pools.length).reduce((a, b) => a + b, 0)} - 2m: ${pools2m.map((p) => p.pools.length).reduce((a, b) => a + b, 0)}`, - ) - return { - currentPools, - pools1h, - pools2h, - pools1d, - pools2d, - pools1w, - pools2w, - pools1m, - pools2m, - } - } else { - console.warn('fetchPairs: config.version is not LEGACY or V3, skipping') - } -} - -async function fetchV2Pairs( - sdk: Sdk, - config: SubgraphConfig, - blockNumber?: number, -) { - console.log(`Loading data from ${config.url}`) - let cursor = '' - const data: PairsQuery[] = [] - let count = 0 - do { - const where = cursor !== '' ? { id_gt: cursor } : {} - const block = blockNumber ? { number: blockNumber } : null - const request = await sdk - .Pairs({ - first: MAX_FIRST[config.chainId], - where, - block, - }) - .catch((e: unknown) => { - if (e instanceof Error) { - console.error(e.message) - } - return undefined - }) - const newCursor = - request?.pairs.length === MAX_FIRST[config.chainId] - ? request?.pairs[request.pairs.length - 1]?.id - : '' - cursor = newCursor - count += request?.pairs.length || 0 - if (request) { - data.push(request) - } - } while (cursor !== '') - console.log(`EXTRACT: ${config.url} - ${count} pairs found.`) - return data -} - -async function fetchV3Pools( - sdk: Sdk, - config: SubgraphConfig, - blockNumber?: number, +async function fetchPairs( + chainId: SushiSwapV2ChainId | SushiSwapV3ChainId, + protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3', + blocks: Blocks, ) { - console.log(`Loading data from ${config.url}`) - let cursor = '' - const data: V3PoolsQuery[] = [] - let count = 0 + try { + if (protocol === Protocol.SUSHISWAP_V2) { + const [ + currentPools, + pools1h, + pools2h, + pools1d, + pools2d, + pools1w, + pools2w, + pools1m, + pools2m, + ] = await Promise.all([ + getSushiV2Pools({ + chainId, + }), + blocks.oneHour + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.oneHour, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.twoHour + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.twoHour, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.oneDay + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.oneDay, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.twoDay + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.twoDay, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.oneWeek + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.oneWeek, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.twoWeek + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.twoWeek, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.oneMonth + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.oneMonth, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + blocks.twoMonth + ? getSushiV2Pools({ + chainId, + block: { + number: blocks.twoMonth, + }, + first: Infinity, + }) + : ([] as SushiV2Pools), + ]) - do { - const where = cursor !== '' ? { id_gt: cursor } : null - const block = blockNumber ? { number: blockNumber } : null + console.log( + `V2-${chainShortName[chainId]} results by timeframe + * current: ${currentPools.length} + 1h: ${pools1h.length} + 2h: ${pools2h.length} + 1d: ${pools1d.length} + 2d: ${pools2d.length} + 1w: ${pools1w.length} + 2w: ${pools2w.length} + 1m: ${pools1m.length} + 2m: ${pools2m.length}`, + ) + return { + currentPools, + pools1h, + pools2h, + pools1d, + pools2d, + pools1w, + pools2w, + pools1m, + pools2m, + } + } else if (protocol === Protocol.SUSHISWAP_V3) { + const [ + currentPools, + pools1h, + pools2h, + pools1d, + pools2d, + pools1w, + pools2w, + pools1m, + pools2m, + ] = await Promise.all([ + getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + first: Infinity, + }), + blocks.oneHour + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneHour, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.twoHour + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoHour, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.oneDay + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneDay, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.twoDay + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoDay, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.oneWeek + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneWeek, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.twoWeek + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoWeek, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.oneMonth + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneMonth, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + blocks.twoMonth + ? getSushiV3Pools({ + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoMonth, + }, + first: Infinity, + }) + : ([] as SushiV3Pools), + ]) - const request = await sdk - .V3Pools({ - first: MAX_FIRST[config.chainId], - where, - block, - }) - .catch((e: unknown) => { - if (e instanceof Error) { - console.error(e.message) - } - return undefined - }) - const newCursor = - request?.pools.length === MAX_FIRST[config.chainId] - ? request?.pools[request.pools.length - 1]?.id - : '' - cursor = newCursor - count += request?.pools.length || 0 - if (request) { - data.push(request) + console.log( + `V3-${chainShortName[chainId]} results by timeframe + * current: ${currentPools.length} + 1h: ${pools1h.length} + 2h: ${pools2h.length} + 1d: ${pools1d.length} + 2d: ${pools2d.length} + 1w: ${pools1w.length} + 2w: ${pools2w.length} + 1m: ${pools1m.length} + 2m: ${pools2m.length}`, + ) + return { + currentPools, + pools1h, + pools2h, + pools1d, + pools2d, + pools1w, + pools2w, + pools1m, + pools2m, + } + } else { + throw new Error('EXTRACT: fetchPairs: V2 or V3, skipping') } - } while (cursor !== '') - console.log(`EXTRACT: ${config.url} - ${count} pairs found.`) - return data + } catch (error) { + console.error(`Error in fetchPairs for chainId ${chainId}:`, error) + return undefined + } } function transform( + protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3', queryResults: { chainId: ChainId; data: V2Data | V3Data }[], ) { const tokens: Map = new Map() @@ -469,10 +486,10 @@ function transform( for (const result of queryResults) { const { chainId, data } = result - if (isV2Query(data)) { + if (protocol === Protocol.SUSHISWAP_V2) { const { pools: v2Pools, tokens: v2Tokens } = transformV2({ chainId, - data, + data: data as V2Data, }) pools.push(...v2Pools) @@ -482,10 +499,10 @@ function transform( tokens.set(token.id, token) } }) - } else if (isV3Query(data)) { + } else if (protocol === Protocol.SUSHISWAP_V3) { const { pools: v3Pools, tokens: v3Tokens } = transformV3({ chainId, - data, + data: data as V3Data, }) pools.push(...v3Pools) @@ -496,442 +513,106 @@ function transform( } }) } else { - console.warn('Unknown query type, skipping') + console.warn('Unknown protocol') } } const dedupedTokens = [...new Set(Array.from(tokens.values()))] - console.log(`${pools.length} pools, ${dedupedTokens.length} tokens`) + console.log( + `${protocol}: ${pools.length} pools, ${dedupedTokens.length} tokens`, + ) return { pools: pools, tokens: dedupedTokens } } -export const isV2Query = (data: V2Data | V3Data): data is V2Data => - data.currentPools.some((d) => (d as PairsQuery)?.pairs !== undefined) - -export const isV3Query = (data: V2Data | V3Data): data is V3Data => - data.currentPools.some((d) => (d as V3PoolsQuery)?.pools !== undefined) - function transformV2(queryResult: { chainId: ChainId data: V2Data }) { const oneHourData = new Map( - queryResult.data.pools1h - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools1h.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const twoHourData = new Map( - queryResult.data.pools2h - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools2h.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const oneDayData = new Map( - queryResult.data.pools1d - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools1d.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const twoDayData = new Map( - queryResult.data.pools2d - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools2d.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const oneWeekData = new Map( - queryResult.data.pools1w - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools1w.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const twoWeekData = new Map( - queryResult.data.pools2w - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools2w.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const oneMonthData = new Map( - queryResult.data.pools1m - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools1m.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const twoMonthData = new Map( - queryResult.data.pools2m - .flatMap((page) => page.pairs) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.volumeUSD * 0.003), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.liquidityUSD), - }, - ]), + queryResult.data.pools2m.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.volumeUSD * 0.003), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), ) const tokens: Prisma.TokenCreateManyInput[] = [] return { - pools: queryResult.data.currentPools.flatMap((batch) => { - if (!batch?.pairs) return [] - return batch?.pairs.flatMap((pair) => { - tokens.push( - Prisma.validator()({ - id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token0.id), - address: pair.token0.id, - chainId: queryResult.chainId, - name: pair.token0.name, - symbol: pair.token0.symbol, - decimals: Number(pair.token0.decimals), - }), - ) - tokens.push( - Prisma.validator()({ - id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token1.id), - address: pair.token1.id, - chainId: queryResult.chainId, - name: pair.token1.name, - symbol: pair.token1.symbol, - decimals: Number(pair.token1.decimals), - }), - ) - - const regex = /([^\w ]|_|-)/g - const name = pair.token0.symbol - .replace(regex, '') - .slice(0, 15) - .concat('-') - .concat(pair.token1.symbol.replace(regex, '').slice(0, 15)) - const protocol = Protocol.SUSHISWAP_V2 - - const currentVolumeUSD = Number(pair.volumeUSD) - const currentLiquidityUSD = Number(pair.liquidityUSD) - const currentFeesUSD = Number(pair.volumeUSD * 0.003) - - const feeApr1h = calculateFeeApr( - AprTimeRange.ONE_HOUR, - oneHourData.get(pair.id)?.feesUSD ?? currentFeesUSD, - currentFeesUSD, - pair.liquidityUSD, - ) - const feeApr1d = calculateFeeApr( - AprTimeRange.ONE_DAY, - oneDayData.get(pair.id)?.feesUSD ?? currentFeesUSD, - currentFeesUSD, - pair.liquidityUSD, - ) - const feeApr1w = calculateFeeApr( - AprTimeRange.ONE_WEEK, - oneWeekData.get(pair.id)?.feesUSD ?? currentFeesUSD, - currentFeesUSD, - pair.liquidityUSD, - ) - const feeApr1m = calculateFeeApr( - AprTimeRange.ONE_MONTH, - oneMonthData.get(pair.id)?.feesUSD ?? currentFeesUSD, - currentFeesUSD, - pair.liquidityUSD, - ) - - const fees1h = oneHourData.has(pair.id) - ? currentFeesUSD - oneHourData.get(pair.id)!.feesUSD - : currentFeesUSD - const fees1d = oneDayData.has(pair.id) - ? currentFeesUSD - oneDayData.get(pair.id)!.feesUSD - : currentFeesUSD - const fees1w = oneWeekData.has(pair.id) - ? currentFeesUSD - oneWeekData.get(pair.id)!.feesUSD - : currentFeesUSD - const fees1m = oneMonthData.has(pair.id) - ? currentFeesUSD - oneMonthData.get(pair.id)!.feesUSD - : currentFeesUSD - const feesChange1h = calculatePercentageChange( - currentFeesUSD, - oneHourData.get(pair.id)?.feesUSD ?? 0, - twoHourData.get(pair.id)?.feesUSD ?? 0, - ) - const feesChange1d = calculatePercentageChange( - currentFeesUSD, - oneDayData.get(pair.id)?.feesUSD ?? 0, - twoDayData.get(pair.id)?.feesUSD ?? 0, - ) - const feesChange1w = calculatePercentageChange( - currentFeesUSD, - oneWeekData.get(pair.id)?.feesUSD ?? 0, - twoWeekData.get(pair.id)?.feesUSD ?? 0, - ) - const feesChange1m = calculatePercentageChange( - currentFeesUSD, - oneMonthData.get(pair.id)?.feesUSD ?? 0, - twoMonthData.get(pair.id)?.feesUSD ?? 0, - ) - const volume1h = oneHourData.has(pair.id) - ? currentVolumeUSD - oneHourData.get(pair.id)!.volumeUSD - : currentVolumeUSD - const volume1d = oneDayData.has(pair.id) - ? currentVolumeUSD - oneDayData.get(pair.id)!.volumeUSD - : currentVolumeUSD - const volume1w = oneWeekData.has(pair.id) - ? currentVolumeUSD - oneWeekData.get(pair.id)!.volumeUSD - : currentVolumeUSD - const volume1m = oneMonthData.has(pair.id) - ? currentVolumeUSD - oneMonthData.get(pair.id)!.volumeUSD - : currentVolumeUSD - const volumeChange1h = calculatePercentageChange( - currentVolumeUSD, - oneHourData.get(pair.id)?.volumeUSD ?? 0, - twoHourData.get(pair.id)?.volumeUSD ?? 0, - ) - const volumeChange1d = calculatePercentageChange( - currentVolumeUSD, - oneDayData.get(pair.id)?.volumeUSD ?? 0, - twoDayData.get(pair.id)?.volumeUSD ?? 0, - ) - const volumeChange1w = calculatePercentageChange( - currentVolumeUSD, - oneWeekData.get(pair.id)?.volumeUSD ?? 0, - twoWeekData.get(pair.id)?.volumeUSD ?? 0, - ) - const volumeChange1m = calculatePercentageChange( - currentVolumeUSD, - oneMonthData.get(pair.id)?.volumeUSD ?? 0, - twoMonthData.get(pair.id)?.volumeUSD ?? 0, - ) - const liquidityUSDChange1h = oneHourData.get(pair.id)?.liquidityUSD - ? currentLiquidityUSD / oneHourData.get(pair.id)!.liquidityUSD - 1 - : 0 - const liquidityUSDChange1d = oneDayData.get(pair.id)?.liquidityUSD - ? currentLiquidityUSD / oneDayData.get(pair.id)!.liquidityUSD - 1 - : 0 - - const liquidityUSDChange1w = oneWeekData.get(pair.id)?.liquidityUSD - ? currentLiquidityUSD / oneWeekData.get(pair.id)!.liquidityUSD - 1 - : 0 - - const liquidityUSDChange1m = oneMonthData.get(pair.id)?.liquidityUSD - ? currentLiquidityUSD / oneMonthData.get(pair.id)!.liquidityUSD - 1 - : 0 - - return { - id: queryResult.chainId.toString().concat(':').concat(pair.id), - address: pair.id, - name: name, - protocol, - chainId: queryResult.chainId, - swapFee: 0.003, - twapEnabled: true, - token0Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token0.id.toLowerCase()), - token1Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token1.id.toLowerCase()), - reserve0: pair.reserve0, - reserve1: pair.reserve1, - totalSupply: pair.liquidity, - liquidityUSD: currentLiquidityUSD, - liquidityNative: pair.liquidityNative, - volumeUSD: currentVolumeUSD, - feesUSD: currentFeesUSD, - volumeNative: 0, // DOES NOT EXIST IN V2 anymore - token0Price: pair.token0Price, - token1Price: pair.token1Price, - ...(oneHourData.get(pair.id)?.feesUSD && { fees1h }), - ...(oneDayData.get(pair.id)?.feesUSD && { fees1d }), - ...(oneWeekData.get(pair.id)?.feesUSD && { fees1w }), - ...(oneMonthData.get(pair.id)?.feesUSD && { fees1m }), - ...(oneHourData.get(pair.id)?.feesUSD && { feesChange1h }), - ...(oneDayData.get(pair.id)?.feesUSD && { feesChange1d }), - ...(oneWeekData.get(pair.id)?.feesUSD && { feesChange1w }), - ...(oneMonthData.get(pair.id)?.feesUSD && { feesChange1m }), - ...(oneHourData.get(pair.id)?.volumeUSD && { volume1h }), - ...(oneDayData.get(pair.id)?.volumeUSD && { volume1d }), - ...(oneWeekData.get(pair.id)?.volumeUSD && { volume1w }), - ...(oneMonthData.get(pair.id)?.volumeUSD && { volume1m }), - ...(oneHourData.get(pair.id)?.volumeUSD && { volumeChange1h }), - ...(oneDayData.get(pair.id)?.volumeUSD && { volumeChange1d }), - ...(oneWeekData.get(pair.id)?.volumeUSD && { volumeChange1w }), - ...(oneMonthData.get(pair.id)?.volumeUSD && { volumeChange1m }), - ...(oneHourData.get(pair.id)?.liquidityUSD && { - liquidityUSDChange1h, - }), - ...(oneDayData.get(pair.id)?.liquidityUSD && { - liquidityUSDChange1d, - }), - ...(oneWeekData.get(pair.id)?.liquidityUSD && { - liquidityUSDChange1w, - }), - ...(oneMonthData.get(pair.id)?.liquidityUSD && { - liquidityUSDChange1m, - }), - ...(oneHourData.get(pair.id)?.feesUSD && { feeApr1h }), - ...(oneDayData.get(pair.id)?.feesUSD && { feeApr1d }), - ...(oneWeekData.get(pair.id)?.feesUSD && { feeApr1w }), - ...(oneMonthData.get(pair.id)?.feesUSD && { feeApr1m }), - ...(oneHourData.get(pair.id)?.feesUSD && { totalApr1h: feeApr1h }), - ...(oneDayData.get(pair.id)?.feesUSD && { totalApr1d: feeApr1d }), - ...(oneWeekData.get(pair.id)?.feesUSD && { totalApr1w: feeApr1w }), - ...(oneMonthData.get(pair.id)?.feesUSD && { totalApr1m: feeApr1m }), - createdAtBlockNumber: BigInt(pair.createdAtBlock), - } satisfies Prisma.SushiPoolCreateManyInput - }) - }), - tokens, - } -} - -function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { - const oneHourData = new Map( - queryResult.data.pools1h - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const twoHourData = new Map( - queryResult.data.pools2h - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const oneDayData = new Map( - queryResult.data.pools1d - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const twoDayData = new Map( - queryResult.data.pools2d - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const oneWeekData = new Map( - queryResult.data.pools1w - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const twoWeekData = new Map( - queryResult.data.pools2w - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const oneMonthData = new Map( - queryResult.data.pools1m - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const twoMonthData = new Map( - queryResult.data.pools2m - .flatMap((page) => page.pools) - .map((pool) => [ - pool.id, - { - feesUSD: Number(pool.feesUSD), - volumeUSD: Number(pool.volumeUSD), - liquidityUSD: Number(pool.totalValueLockedUSD), - }, - ]), - ) - const tokens: Prisma.TokenCreateManyInput[] = [] - const poolsTransformed = queryResult.data.currentPools.flatMap((batch) => { - if (!batch?.pools) return [] - return batch?.pools.flatMap((pair) => { + pools: queryResult.data.currentPools.map((pair) => { tokens.push( Prisma.validator()({ id: queryResult.chainId.toString().concat(':').concat(pair.token0.id), @@ -952,41 +633,42 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { decimals: Number(pair.token1.decimals), }), ) + const regex = /([^\w ]|_|-)/g const name = pair.token0.symbol .replace(regex, '') .slice(0, 15) .concat('-') .concat(pair.token1.symbol.replace(regex, '').slice(0, 15)) - const swapFee = Number(pair.feeTier) / 1_000_000 + const protocol = Protocol.SUSHISWAP_V2 const currentVolumeUSD = Number(pair.volumeUSD) - const currentLiquidityUSD = Number(pair.totalValueLockedUSD) - const currentFeesUSD = Number(pair.feesUSD) + const currentLiquidityUSD = Number(pair.liquidityUSD) + const currentFeesUSD = Number(pair.volumeUSD * 0.003) const feeApr1h = calculateFeeApr( AprTimeRange.ONE_HOUR, oneHourData.get(pair.id)?.feesUSD ?? currentFeesUSD, - pair.feesUSD, - pair.totalValueLockedUSD, + currentFeesUSD, + pair.liquidityUSD, ) const feeApr1d = calculateFeeApr( AprTimeRange.ONE_DAY, oneDayData.get(pair.id)?.feesUSD ?? currentFeesUSD, - pair.feesUSD, - pair.totalValueLockedUSD, + currentFeesUSD, + pair.liquidityUSD, ) const feeApr1w = calculateFeeApr( AprTimeRange.ONE_WEEK, oneWeekData.get(pair.id)?.feesUSD ?? currentFeesUSD, - pair.feesUSD, - pair.totalValueLockedUSD, + currentFeesUSD, + pair.liquidityUSD, ) const feeApr1m = calculateFeeApr( AprTimeRange.ONE_MONTH, oneMonthData.get(pair.id)?.feesUSD ?? currentFeesUSD, - pair.feesUSD, - pair.totalValueLockedUSD, + currentFeesUSD, + pair.liquidityUSD, ) const fees1h = oneHourData.has(pair.id) @@ -1072,9 +754,9 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { id: queryResult.chainId.toString().concat(':').concat(pair.id), address: pair.id, name: name, - protocol: Protocol.SUSHISWAP_V3, + protocol, chainId: queryResult.chainId, - swapFee, + swapFee: 0.003, twapEnabled: true, token0Id: queryResult.chainId .toString() @@ -1084,32 +766,41 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { .toString() .concat(':') .concat(pair.token1.id.toLowerCase()), - reserve0: (pair.totalValueLockedToken0 ** pair.token0.decimals) - .toFixed(0) - .toString(), - reserve1: (pair.totalValueLockedToken1 ** pair.token1.decimals) - .toFixed(0) - .toString(), - totalSupply: pair.liquidity, - fees1h, - fees1d, - fees1w, - fees1m, + reserve0: pair.reserve0.toString(), + reserve1: pair.reserve1.toString(), + totalSupply: pair.liquidity.toString(), + liquidityUSD: currentLiquidityUSD, + liquidityNative: 0, + volumeUSD: currentVolumeUSD, + feesUSD: currentFeesUSD, + volumeNative: 0, // DOES NOT EXIST IN V2 anymore + token0Price: pair.token0Price.toString(), + token1Price: pair.token0Price.toString(), + ...(oneHourData.get(pair.id)?.feesUSD && { fees1h }), + ...(oneDayData.get(pair.id)?.feesUSD && { fees1d }), + ...(oneWeekData.get(pair.id)?.feesUSD && { fees1w }), + ...(oneMonthData.get(pair.id)?.feesUSD && { fees1m }), ...(oneHourData.get(pair.id)?.feesUSD && { feesChange1h }), ...(oneDayData.get(pair.id)?.feesUSD && { feesChange1d }), ...(oneWeekData.get(pair.id)?.feesUSD && { feesChange1w }), ...(oneMonthData.get(pair.id)?.feesUSD && { feesChange1m }), - volume1h, - volume1d, - volume1w, - volume1m, + ...(oneHourData.get(pair.id)?.volumeUSD && { volume1h }), + ...(oneDayData.get(pair.id)?.volumeUSD && { volume1d }), + ...(oneWeekData.get(pair.id)?.volumeUSD && { volume1w }), + ...(oneMonthData.get(pair.id)?.volumeUSD && { volume1m }), ...(oneHourData.get(pair.id)?.volumeUSD && { volumeChange1h }), ...(oneDayData.get(pair.id)?.volumeUSD && { volumeChange1d }), ...(oneWeekData.get(pair.id)?.volumeUSD && { volumeChange1w }), ...(oneMonthData.get(pair.id)?.volumeUSD && { volumeChange1m }), - ...(oneHourData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1h }), - ...(oneDayData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1d }), - ...(oneWeekData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1w }), + ...(oneHourData.get(pair.id)?.liquidityUSD && { + liquidityUSDChange1h, + }), + ...(oneDayData.get(pair.id)?.liquidityUSD && { + liquidityUSDChange1d, + }), + ...(oneWeekData.get(pair.id)?.liquidityUSD && { + liquidityUSDChange1w, + }), ...(oneMonthData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1m, }), @@ -1117,21 +808,295 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { ...(oneDayData.get(pair.id)?.feesUSD && { feeApr1d }), ...(oneWeekData.get(pair.id)?.feesUSD && { feeApr1w }), ...(oneMonthData.get(pair.id)?.feesUSD && { feeApr1m }), - ...((oneDayData.get(pair.id)?.feesUSD && { feeApr1d }) || - (oneHourData.get(pair.id)?.feesUSD && { feeApr1d: feeApr1h })), + ...(oneHourData.get(pair.id)?.feesUSD && { totalApr1h: feeApr1h }), ...(oneDayData.get(pair.id)?.feesUSD && { totalApr1d: feeApr1d }), ...(oneWeekData.get(pair.id)?.feesUSD && { totalApr1w: feeApr1w }), ...(oneMonthData.get(pair.id)?.feesUSD && { totalApr1m: feeApr1m }), - liquidityUSD: currentLiquidityUSD, - liquidityNative: pair.totalValueLockedETH, - volumeUSD: currentVolumeUSD, - feesUSD: currentFeesUSD, - volumeNative: 0, // DOES NOT EXIST IN V3 subgraph - token0Price: pair.token0Price, - token1Price: pair.token1Price, - createdAtBlockNumber: BigInt(pair.createdAtBlockNumber), + createdAtBlockNumber: 0, } satisfies Prisma.SushiPoolCreateManyInput - }) + }), + tokens, + } +} + +function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { + const oneHourData = new Map( + queryResult.data.pools1h.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const twoHourData = new Map( + queryResult.data.pools2h.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const oneDayData = new Map( + queryResult.data.pools1d.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const twoDayData = new Map( + queryResult.data.pools2d.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const oneWeekData = new Map( + queryResult.data.pools1w.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const twoWeekData = new Map( + queryResult.data.pools2w.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const oneMonthData = new Map( + queryResult.data.pools1m.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const twoMonthData = new Map( + queryResult.data.pools2m.map((pool) => [ + pool.id, + { + feesUSD: Number(pool.feesUSD), + volumeUSD: Number(pool.volumeUSD), + liquidityUSD: Number(pool.liquidityUSD), + }, + ]), + ) + const tokens: Prisma.TokenCreateManyInput[] = [] + const poolsTransformed = queryResult.data.currentPools.map((pair) => { + tokens.push( + Prisma.validator()({ + id: queryResult.chainId.toString().concat(':').concat(pair.token0.id), + address: pair.token0.id, + chainId: queryResult.chainId, + name: pair.token0.name, + symbol: pair.token0.symbol, + decimals: Number(pair.token0.decimals), + }), + ) + tokens.push( + Prisma.validator()({ + id: queryResult.chainId.toString().concat(':').concat(pair.token1.id), + address: pair.token1.id, + chainId: queryResult.chainId, + name: pair.token1.name, + symbol: pair.token1.symbol, + decimals: Number(pair.token1.decimals), + }), + ) + const regex = /([^\w ]|_|-)/g + const name = pair.token0.symbol + .replace(regex, '') + .slice(0, 15) + .concat('-') + .concat(pair.token1.symbol.replace(regex, '').slice(0, 15)) + const swapFee = pair.swapFee + + const currentVolumeUSD = Number(pair.volumeUSD) + const currentLiquidityUSD = Number(pair.liquidityUSD) + const currentFeesUSD = Number(pair.feesUSD) + + const feeApr1h = calculateFeeApr( + AprTimeRange.ONE_HOUR, + oneHourData.get(pair.id)?.feesUSD ?? currentFeesUSD, + pair.feesUSD, + pair.liquidityUSD, + ) + const feeApr1d = calculateFeeApr( + AprTimeRange.ONE_DAY, + oneDayData.get(pair.id)?.feesUSD ?? currentFeesUSD, + pair.feesUSD, + pair.liquidityUSD, + ) + const feeApr1w = calculateFeeApr( + AprTimeRange.ONE_WEEK, + oneWeekData.get(pair.id)?.feesUSD ?? currentFeesUSD, + pair.feesUSD, + pair.liquidityUSD, + ) + const feeApr1m = calculateFeeApr( + AprTimeRange.ONE_MONTH, + oneMonthData.get(pair.id)?.feesUSD ?? currentFeesUSD, + pair.feesUSD, + pair.liquidityUSD, + ) + + const fees1h = oneHourData.has(pair.id) + ? currentFeesUSD - oneHourData.get(pair.id)!.feesUSD + : currentFeesUSD + const fees1d = oneDayData.has(pair.id) + ? currentFeesUSD - oneDayData.get(pair.id)!.feesUSD + : currentFeesUSD + const fees1w = oneWeekData.has(pair.id) + ? currentFeesUSD - oneWeekData.get(pair.id)!.feesUSD + : currentFeesUSD + const fees1m = oneMonthData.has(pair.id) + ? currentFeesUSD - oneMonthData.get(pair.id)!.feesUSD + : currentFeesUSD + const feesChange1h = calculatePercentageChange( + currentFeesUSD, + oneHourData.get(pair.id)?.feesUSD ?? 0, + twoHourData.get(pair.id)?.feesUSD ?? 0, + ) + const feesChange1d = calculatePercentageChange( + currentFeesUSD, + oneDayData.get(pair.id)?.feesUSD ?? 0, + twoDayData.get(pair.id)?.feesUSD ?? 0, + ) + const feesChange1w = calculatePercentageChange( + currentFeesUSD, + oneWeekData.get(pair.id)?.feesUSD ?? 0, + twoWeekData.get(pair.id)?.feesUSD ?? 0, + ) + const feesChange1m = calculatePercentageChange( + currentFeesUSD, + oneMonthData.get(pair.id)?.feesUSD ?? 0, + twoMonthData.get(pair.id)?.feesUSD ?? 0, + ) + const volume1h = oneHourData.has(pair.id) + ? currentVolumeUSD - oneHourData.get(pair.id)!.volumeUSD + : currentVolumeUSD + const volume1d = oneDayData.has(pair.id) + ? currentVolumeUSD - oneDayData.get(pair.id)!.volumeUSD + : currentVolumeUSD + const volume1w = oneWeekData.has(pair.id) + ? currentVolumeUSD - oneWeekData.get(pair.id)!.volumeUSD + : currentVolumeUSD + const volume1m = oneMonthData.has(pair.id) + ? currentVolumeUSD - oneMonthData.get(pair.id)!.volumeUSD + : currentVolumeUSD + const volumeChange1h = calculatePercentageChange( + currentVolumeUSD, + oneHourData.get(pair.id)?.volumeUSD ?? 0, + twoHourData.get(pair.id)?.volumeUSD ?? 0, + ) + const volumeChange1d = calculatePercentageChange( + currentVolumeUSD, + oneDayData.get(pair.id)?.volumeUSD ?? 0, + twoDayData.get(pair.id)?.volumeUSD ?? 0, + ) + const volumeChange1w = calculatePercentageChange( + currentVolumeUSD, + oneWeekData.get(pair.id)?.volumeUSD ?? 0, + twoWeekData.get(pair.id)?.volumeUSD ?? 0, + ) + const volumeChange1m = calculatePercentageChange( + currentVolumeUSD, + oneMonthData.get(pair.id)?.volumeUSD ?? 0, + twoMonthData.get(pair.id)?.volumeUSD ?? 0, + ) + const liquidityUSDChange1h = oneHourData.get(pair.id)?.liquidityUSD + ? currentLiquidityUSD / oneHourData.get(pair.id)!.liquidityUSD - 1 + : 0 + const liquidityUSDChange1d = oneDayData.get(pair.id)?.liquidityUSD + ? currentLiquidityUSD / oneDayData.get(pair.id)!.liquidityUSD - 1 + : 0 + + const liquidityUSDChange1w = oneWeekData.get(pair.id)?.liquidityUSD + ? currentLiquidityUSD / oneWeekData.get(pair.id)!.liquidityUSD - 1 + : 0 + + const liquidityUSDChange1m = oneMonthData.get(pair.id)?.liquidityUSD + ? currentLiquidityUSD / oneMonthData.get(pair.id)!.liquidityUSD - 1 + : 0 + + return { + id: queryResult.chainId.toString().concat(':').concat(pair.id), + address: pair.id, + name: name, + protocol: Protocol.SUSHISWAP_V3, + chainId: queryResult.chainId, + swapFee, + twapEnabled: true, + token0Id: queryResult.chainId + .toString() + .concat(':') + .concat(pair.token0.id.toLowerCase()), + token1Id: queryResult.chainId + .toString() + .concat(':') + .concat(pair.token1.id.toLowerCase()), + reserve0: pair.reserve0.toString(), + reserve1: pair.reserve1.toString(), + totalSupply: pair.liquidity.toString(), + fees1h, + fees1d, + fees1w, + fees1m, + ...(oneHourData.get(pair.id)?.feesUSD && { feesChange1h }), + ...(oneDayData.get(pair.id)?.feesUSD && { feesChange1d }), + ...(oneWeekData.get(pair.id)?.feesUSD && { feesChange1w }), + ...(oneMonthData.get(pair.id)?.feesUSD && { feesChange1m }), + volume1h, + volume1d, + volume1w, + volume1m, + ...(oneHourData.get(pair.id)?.volumeUSD && { volumeChange1h }), + ...(oneDayData.get(pair.id)?.volumeUSD && { volumeChange1d }), + ...(oneWeekData.get(pair.id)?.volumeUSD && { volumeChange1w }), + ...(oneMonthData.get(pair.id)?.volumeUSD && { volumeChange1m }), + ...(oneHourData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1h }), + ...(oneDayData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1d }), + ...(oneWeekData.get(pair.id)?.liquidityUSD && { liquidityUSDChange1w }), + ...(oneMonthData.get(pair.id)?.liquidityUSD && { + liquidityUSDChange1m, + }), + ...(oneHourData.get(pair.id)?.feesUSD && { feeApr1h }), + ...(oneDayData.get(pair.id)?.feesUSD && { feeApr1d }), + ...(oneWeekData.get(pair.id)?.feesUSD && { feeApr1w }), + ...(oneMonthData.get(pair.id)?.feesUSD && { feeApr1m }), + ...((oneDayData.get(pair.id)?.feesUSD && { feeApr1d }) || + (oneHourData.get(pair.id)?.feesUSD && { feeApr1d: feeApr1h })), + ...(oneDayData.get(pair.id)?.feesUSD && { totalApr1d: feeApr1d }), + ...(oneWeekData.get(pair.id)?.feesUSD && { totalApr1w: feeApr1w }), + ...(oneMonthData.get(pair.id)?.feesUSD && { totalApr1m: feeApr1m }), + liquidityUSD: currentLiquidityUSD, + liquidityNative: 0, // TODO: add this back? + volumeUSD: currentVolumeUSD, + feesUSD: currentFeesUSD, + volumeNative: 0, // DOES NOT EXIST IN V3 subgraph + token0Price: pair.token0Price.toString(), + token1Price: pair.token1Price.toString(), + createdAtBlockNumber: 0, + } satisfies Prisma.SushiPoolCreateManyInput }) return { pools: poolsTransformed, tokens } @@ -1168,18 +1133,3 @@ const calculatePercentageChange = ( if (change2 === 0) return 0 // avoid division by 0 return previous !== 0 && previous2 !== 0 ? change1 / change2 - 1 : 0 } - -// const calculateHistoricalBlock = ( -// chainId: ChainId, -// currentBlock: number, -// seconds: number, -// ): number | undefined => { -// if (currentBlock === 0) return undefined -// if (seconds <= 0) return undefined -// const secondsBetweenBlocks = SECONDS_BETWEEN_BLOCKS[chainId] -// if (!secondsBetweenBlocks) { -// console.debug(`No secondsBetweenBlocks for chain ${chainId}`) -// return undefined -// } -// return currentBlock - Math.floor(seconds / secondsBetweenBlocks) -// } diff --git a/jobs/pool/src/server.ts b/jobs/pool/src/server.ts index 54f8130d69..f6ca057473 100644 --- a/jobs/pool/src/server.ts +++ b/jobs/pool/src/server.ts @@ -10,6 +10,10 @@ import { execute as merklIncentives } from './merkl-incentives.js' import { execute as pools } from './pools.js' import { steer } from './steer.js' +if (!process.env.SUSHI_GRAPH_KEY) { + throw new Error('SUSHI_GRAPH_KEY not set') +} + const app = express() const protocolSchema = z.object({ diff --git a/packages/client/src/api/pools/pools/index.ts b/packages/client/src/api/pools/pools/index.ts index fde897bb0b..17a971c1fc 100644 --- a/packages/client/src/api/pools/pools/index.ts +++ b/packages/client/src/api/pools/pools/index.ts @@ -188,6 +188,8 @@ export async function getPoolsFromDB( totalApr1d: pool.totalApr1d, totalApr1w: pool.totalApr1w, totalApr1m: pool.totalApr1m, + token0Price: Number(pool.token0Price), + token1Price: Number(pool.token1Price) })) if (args.ids && args.ids.length > poolsTransformed.length) { diff --git a/packages/client/src/api/pools/pools/select.ts b/packages/client/src/api/pools/pools/select.ts index 89f48be7c7..86c05b6989 100644 --- a/packages/client/src/api/pools/pools/select.ts +++ b/packages/client/src/api/pools/pools/select.ts @@ -11,6 +11,8 @@ export const SushiPoolSelect = { liquidityUSD: true, reserve0: true, reserve1: true, + token0Price: true, + token1Price: true, volumeUSD: true, feeApr1h: true, feeApr1d: true, diff --git a/packages/client/src/api/pools/unindexedPool.ts b/packages/client/src/api/pools/unindexedPool.ts index 43101049b1..a820db4550 100644 --- a/packages/client/src/api/pools/unindexedPool.ts +++ b/packages/client/src/api/pools/unindexedPool.ts @@ -250,5 +250,7 @@ export async function getUnindexedPool( totalApr1d: 0, totalApr1w: 0, totalApr1m: 0, + token0Price: 0, + token1Price: 0 } as Awaited> } diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client-new/scripts/t.ts index 03a68fbb0f..3de4492da2 100644 --- a/packages/graph-client-new/scripts/t.ts +++ b/packages/graph-client-new/scripts/t.ts @@ -1,5 +1,5 @@ -import { getSushiV3Transactions } from '../src/subgraphs/sushi-v3/queries/transactions' +import { getSushiV3Pools } from '../src/subgraphs/sushi-v3/queries/pools' -const a = await getSushiV3Transactions({ chainId: 1, first: 2001 }) +const a = await getSushiV3Pools({ chainId: 8453, first: Infinity }) -console.log(a[0]) +console.log("v3 pools:", a.length) diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client-new/src/lib/request-paged.ts index 0107089672..3d77bc0b52 100644 --- a/packages/graph-client-new/src/lib/request-paged.ts +++ b/packages/graph-client-new/src/lib/request-paged.ts @@ -68,13 +68,15 @@ export async function requestPaged({ } // We need the id value to paginate - if ( - !querySelection.selectionSet.selections.find((s: any) => { - return s.name.value === 'id' - }) - ) { - throw new FetchError(chainId, 'Id not found in query selection') - } + + // TODO: this is wrong, this is always throwing with first: Infinity variable. + // if ( + // !querySelection.selectionSet.selections.find((s: any) => { + // return s.name.value === 'id' + // }) + // ) { + // throw new FetchError(chainId, 'Id not found in query selection') + // } const key = querySelection?.name?.value as keyof ResultOf if (!key) { diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts index ce5108a2fd..67497582d1 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts @@ -50,5 +50,8 @@ export async function getBlockHistoric({ throw new Error('Block not found') } - return block + return { + chainId, + ...block, + } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts index 15237d4653..ffc4a3e18f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts @@ -22,8 +22,8 @@ export const PoolFieldsFragment = graphql(` totalSupply liquidityUSD: reserveUSD liquidityNative: reserveETH - # token0Price - # token1Price + token0Price + token1Price volumeUSD txCount } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index af8563b10c..add9a0734f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -13,7 +13,7 @@ import { graphql } from '../graphql' export const SushiV2PoolsQuery = graphql( ` query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pair_orderBy, $orderDirection: OrderDirection, $where: Pair_filter) { - pools: pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + pairs(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { ...PoolFields } } @@ -40,7 +40,7 @@ export async function getSushiV2Pools({ }) if (result) { - return result.pools.map((pool) => transformPoolV2ToBase(pool, chainId)) + return result.pairs.map((pool) => transformPoolV2ToBase(pool, chainId)) } throw new FetchError(chainId, 'Failed to fetch pools') diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts index dad1bfa07b..54b8867ac0 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts @@ -17,6 +17,8 @@ type ToPick = | 'liquidityUSD' | 'volumeUSD' | 'txCount' + | 'token0Price' + | 'token1Price' type RequiredBase = Pick, ToPick> @@ -74,7 +76,8 @@ export function transformPoolV2ToBase( name: pool.token1.name, symbol: pool.token1.symbol, }, - - txCount: Number(pool.txCount), + token0Price: Number(pool.token0Price), + token1Price: Number(pool.token1Price), + txCount: Number(pool.txCount) } } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts index ca6c838f06..01ca79084e 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts @@ -5,6 +5,7 @@ export * from './queries/factory' export * from './queries/mints' export * from './queries/pool-with-buckets' export * from './queries/pool' +export * from './queries/pools' export * from './queries/pools-by-token-pair' export * from './queries/swaps' export * from './queries/transactions' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts new file mode 100644 index 0000000000..a0881f78d8 --- /dev/null +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts @@ -0,0 +1,46 @@ +import type { VariablesOf } from 'gql.tada' +import type { SushiSwapV3ChainId } from 'sushi/config' +import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' + +import { FetchError } from 'src/lib/fetch-error' +import { requestPaged } from 'src/lib/request-paged' +import type { ChainIdVariable } from 'src/lib/types/chainId' +import { transformPoolV3ToBase } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-base' +import { PoolFieldsFragment } from '../fragments/pool-fields' +import { graphql } from '../graphql' + +export const SushiV3PoolsQuery = graphql( + ` + query Pools($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Pool_orderBy, $orderDirection: OrderDirection, $where: Pool_filter) { + pools(first: $first, skip: $skip, block: $block, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { + ...PoolFields + } + } +`, + [PoolFieldsFragment], +) + +export type GetSushiV3Pools = VariablesOf & + ChainIdVariable + +export async function getSushiV3Pools({ + chainId, + ...variables +}: GetSushiV3Pools) { + const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` + + const result = await requestPaged({ + chainId, + url, + query: SushiV3PoolsQuery, + variables, + }) + + if (result) { + return result.pools.map((pool) => transformPoolV3ToBase(pool, chainId)) + } + + throw new FetchError(chainId, 'Failed to fetch pools') +} + +export type SushiV3Pools = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts index 7c6eacc91d..ae78ae6316 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts @@ -28,6 +28,8 @@ type ToPick = | 'observationIndex' | 'sqrtPrice' | 'tick' + | 'token0Price' + | 'token1Price' type RequiredBase = Pick, ToPick> @@ -48,7 +50,7 @@ export function transformPoolV3ToBase( feeGrowthGlobal1X128: BigInt(pool.feeGrowthGlobal1X128), observationIndex: BigInt(pool.observationIndex), sqrtPrice: BigInt(pool.sqrtPrice), - tick: BigInt(pool.tick), + tick: BigInt(pool.tick ?? 0), protocol: SushiSwapProtocol.SUSHISWAP_V3, @@ -85,6 +87,9 @@ export function transformPoolV3ToBase( symbol: pool.token1.symbol, }, + token0Price: Number(pool.token0Price), + token1Price: Number(pool.token1Price), + txCount: Number(pool.txCount), } } diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts index f4c48d9815..da59a2b868 100644 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ b/packages/graph-client/resolvers/pairs/pairById.ts @@ -69,7 +69,7 @@ const transformV3PoolToPair = ( reserveETH: pool.totalValueLockedETH, reserveUSD: pool.totalValueLockedUSD, createdAtTimestamp: pool.createdAtTimestamp, - createdAtBlockNumber: pool.createdAtBlockNumber, + createdAtBlockNumber: 0, hourSnapshots: pool.poolHourData.map((hourData) => ({ id: hourData.id, date: hourData.periodStartUnix, diff --git a/packages/sushi/src/types/sushi-pool/pool-base.ts b/packages/sushi/src/types/sushi-pool/pool-base.ts index 4327825dd0..a90fc20ce3 100644 --- a/packages/sushi/src/types/sushi-pool/pool-base.ts +++ b/packages/sushi/src/types/sushi-pool/pool-base.ts @@ -19,8 +19,8 @@ export type PoolBase = T & { feesUSD: number - // token0Price: bigint - // token1Price: bigint + token0Price: number + token1Price: number txCount: number } From d84ce20917286fde3a814d1a2637445b21f5492e Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 7 Jun 2024 15:15:48 +0000 Subject: [PATCH 061/119] feat(crabrave): graph client is gone --- apps/evm/package.json | 1 - .../analytics/vault/use-bentobox-tokens.ts | 15 +- apps/evm/src/app/internal/tokens/page.tsx | 4 +- .../app/pool/[id]/smart/(overview)/page.tsx | 17 +- .../app/pool/[id]/smart/[vaultId]/page.tsx | 10 +- .../master-chef/use-master-chef-contract.ts | 2 +- .../master-chef/use-master-chef-deposit.ts | 4 +- .../evm/src/ui/analytics/furo-token-table.tsx | 3 +- apps/evm/src/ui/pool/AddSectionStake.tsx | 2 +- .../evm/src/ui/pool/AddSectionStakeWidget.tsx | 2 +- .../Tables/Smart/index.ts | 1 - .../Tables/index.ts | 2 - .../pool/ConcentratedPositionsTable/index.ts | 1 - apps/evm/src/ui/pool/PositionCard.tsx | 14 +- apps/evm/src/ui/pool/SmartPoolsTable.tsx | 17 +- apps/evm/src/ui/pool/Steer/SteerCarousel.tsx | 20 +- .../ui/pool/Steer/SteerStrategies/index.ts | 9 +- packages/client/package.json | 2 +- packages/client/src/api/bonds/bonds/index.ts | 47 +- .../client/src/api/bonds/positions/index.ts | 47 +- packages/client/src/api/steer-vault/parse.ts | 8 + packages/client/src/api/steer-vault/vaults.ts | 49 +- .../src/pure/steer-vault/vaults/schema.ts | 7 + .../src/pure/steer-vault/vaults/vaults.ts | 4 +- packages/graph-client/.gitignore | 4 - packages/graph-client/.graphclientrc.yml | 558 ------------------ packages/graph-client/CHANGELOG.md | 61 -- packages/graph-client/README.md | 7 - .../graph-client/__tests__/blocks.test.ts | 14 - .../__tests__/furo-tokens.test.ts | 14 - packages/graph-client/__tests__/pairs.test.ts | 18 - .../graph-client/__tests__/tokens.test.ts | 41 -- packages/graph-client/lib/block.ts | 87 --- packages/graph-client/lib/incentives.ts | 35 -- packages/graph-client/lib/page.ts | 16 - packages/graph-client/lib/pools.ts | 108 ---- packages/graph-client/lib/wagmi.ts | 74 --- packages/graph-client/package.json | 94 --- .../graph-client/queries/bentobox.graphql | 85 --- packages/graph-client/queries/blocks.graphql | 88 --- packages/graph-client/queries/bonds.graphql | 58 -- packages/graph-client/queries/bundles.graphql | 7 - .../graph-client/queries/factories.graphql | 44 -- packages/graph-client/queries/furo.graphql | 28 - .../graph-client/queries/graphnode.graphql | 49 -- .../queries/liquidity-positions.graphql | 35 -- .../graph-client/queries/masterchef.graphql | 28 - packages/graph-client/queries/pairs.graphql | 269 --------- .../graph-client/queries/sushiswap-v3.graphql | 268 --------- packages/graph-client/queries/tokens.graphql | 34 -- packages/graph-client/queries/user.graphql | 14 - packages/graph-client/queries/xsushi.graphql | 43 -- .../bentobox/crossChainBentoBoxKpis.ts | 42 -- .../bentobox/crossChainStrategyKpis.ts | 35 -- .../graph-client/resolvers/bentobox/index.ts | 22 - .../resolvers/bentobox/rebasesByChainIds.ts | 45 -- .../resolvers/blocks/blocksByChainIds.ts | 55 -- .../graph-client/resolvers/blocks/index.ts | 109 ---- .../resolvers/bundles/bundlesByChainIds.ts | 37 -- .../graph-client/resolvers/bundles/index.ts | 12 - .../resolvers/depreciated/crossChainToken.ts | 96 --- .../resolvers/depreciated/index.ts | 8 - .../factories/factoriesByChainIds.ts | 54 -- .../factoryDaySnapshotsByChainIds.ts | 107 ---- .../graph-client/resolvers/factories/index.ts | 13 - packages/graph-client/resolvers/furo/index.ts | 8 - .../resolvers/furo/tokensByChainIds.ts | 57 -- .../graph-client/resolvers/graphnode/index.ts | 8 - .../resolvers/graphnode/subgraphs.ts | 61 -- packages/graph-client/resolvers/index.ts | 33 -- .../resolvers/liquidity-positions/index.ts | 12 - .../liquidityPositionsByChainIds.ts | 71 --- .../resolvers/masterchef/index.ts | 119 ---- .../graph-client/resolvers/pairs/index.ts | 19 - .../graph-client/resolvers/pairs/pairById.ts | 303 ---------- .../resolvers/pairs/pairsByChainId.ts | 32 - .../resolvers/pairs/pairsByChainIds.ts | 87 --- .../resolvers/pairs/pairsByIds.ts | 10 - .../graph-client/resolvers/tokens/index.ts | 18 - .../resolvers/tokens/tokensByChainId.ts | 32 - .../resolvers/tokens/tokensByChainIds.ts | 101 ---- .../resolvers/tokens/tokensByIds.ts | 10 - .../resolvers/user/crossChainUserPositions.ts | 69 --- packages/graph-client/resolvers/user/index.ts | 8 - packages/graph-client/resolvers/v3/index.ts | 11 - .../resolvers/v3/poolsByTokenPair.ts | 51 -- .../resolvers/v3/v3factoriesByChainIds.ts | 54 -- packages/graph-client/transformers/index.ts | 3 - .../graph-client/transformers/transformApr.ts | 7 - .../transformers/transformIncentives.ts | 18 - .../transformers/transformPair.ts | 95 --- .../transformers/transformToken.ts | 5 - packages/graph-client/tsconfig.json | 29 - packages/graph-client/turbo.json | 19 - packages/steer-sdk/src/types/steer-vault.ts | 5 +- pnpm-lock.yaml | 7 +- 96 files changed, 167 insertions(+), 4299 deletions(-) delete mode 100644 apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/index.ts delete mode 100644 apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/index.ts delete mode 100644 packages/graph-client/.gitignore delete mode 100644 packages/graph-client/.graphclientrc.yml delete mode 100644 packages/graph-client/CHANGELOG.md delete mode 100644 packages/graph-client/README.md delete mode 100644 packages/graph-client/__tests__/blocks.test.ts delete mode 100644 packages/graph-client/__tests__/furo-tokens.test.ts delete mode 100644 packages/graph-client/__tests__/pairs.test.ts delete mode 100644 packages/graph-client/__tests__/tokens.test.ts delete mode 100644 packages/graph-client/lib/block.ts delete mode 100644 packages/graph-client/lib/incentives.ts delete mode 100644 packages/graph-client/lib/page.ts delete mode 100644 packages/graph-client/lib/pools.ts delete mode 100644 packages/graph-client/lib/wagmi.ts delete mode 100644 packages/graph-client/package.json delete mode 100644 packages/graph-client/queries/bentobox.graphql delete mode 100644 packages/graph-client/queries/blocks.graphql delete mode 100644 packages/graph-client/queries/bonds.graphql delete mode 100644 packages/graph-client/queries/bundles.graphql delete mode 100644 packages/graph-client/queries/factories.graphql delete mode 100644 packages/graph-client/queries/furo.graphql delete mode 100644 packages/graph-client/queries/graphnode.graphql delete mode 100644 packages/graph-client/queries/liquidity-positions.graphql delete mode 100644 packages/graph-client/queries/masterchef.graphql delete mode 100644 packages/graph-client/queries/pairs.graphql delete mode 100644 packages/graph-client/queries/sushiswap-v3.graphql delete mode 100644 packages/graph-client/queries/tokens.graphql delete mode 100644 packages/graph-client/queries/user.graphql delete mode 100644 packages/graph-client/queries/xsushi.graphql delete mode 100644 packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts delete mode 100644 packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts delete mode 100644 packages/graph-client/resolvers/bentobox/index.ts delete mode 100644 packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts delete mode 100644 packages/graph-client/resolvers/blocks/blocksByChainIds.ts delete mode 100644 packages/graph-client/resolvers/blocks/index.ts delete mode 100644 packages/graph-client/resolvers/bundles/bundlesByChainIds.ts delete mode 100644 packages/graph-client/resolvers/bundles/index.ts delete mode 100644 packages/graph-client/resolvers/depreciated/crossChainToken.ts delete mode 100644 packages/graph-client/resolvers/depreciated/index.ts delete mode 100644 packages/graph-client/resolvers/factories/factoriesByChainIds.ts delete mode 100644 packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts delete mode 100644 packages/graph-client/resolvers/factories/index.ts delete mode 100644 packages/graph-client/resolvers/furo/index.ts delete mode 100644 packages/graph-client/resolvers/furo/tokensByChainIds.ts delete mode 100644 packages/graph-client/resolvers/graphnode/index.ts delete mode 100644 packages/graph-client/resolvers/graphnode/subgraphs.ts delete mode 100644 packages/graph-client/resolvers/index.ts delete mode 100644 packages/graph-client/resolvers/liquidity-positions/index.ts delete mode 100644 packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts delete mode 100644 packages/graph-client/resolvers/masterchef/index.ts delete mode 100644 packages/graph-client/resolvers/pairs/index.ts delete mode 100644 packages/graph-client/resolvers/pairs/pairById.ts delete mode 100644 packages/graph-client/resolvers/pairs/pairsByChainId.ts delete mode 100644 packages/graph-client/resolvers/pairs/pairsByChainIds.ts delete mode 100644 packages/graph-client/resolvers/pairs/pairsByIds.ts delete mode 100644 packages/graph-client/resolvers/tokens/index.ts delete mode 100644 packages/graph-client/resolvers/tokens/tokensByChainId.ts delete mode 100644 packages/graph-client/resolvers/tokens/tokensByChainIds.ts delete mode 100644 packages/graph-client/resolvers/tokens/tokensByIds.ts delete mode 100644 packages/graph-client/resolvers/user/crossChainUserPositions.ts delete mode 100644 packages/graph-client/resolvers/user/index.ts delete mode 100644 packages/graph-client/resolvers/v3/index.ts delete mode 100644 packages/graph-client/resolvers/v3/poolsByTokenPair.ts delete mode 100644 packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts delete mode 100644 packages/graph-client/transformers/index.ts delete mode 100644 packages/graph-client/transformers/transformApr.ts delete mode 100644 packages/graph-client/transformers/transformIncentives.ts delete mode 100644 packages/graph-client/transformers/transformPair.ts delete mode 100644 packages/graph-client/transformers/transformToken.ts delete mode 100644 packages/graph-client/tsconfig.json delete mode 100644 packages/graph-client/turbo.json diff --git a/apps/evm/package.json b/apps/evm/package.json index 979686a249..9b75458d6c 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -29,7 +29,6 @@ "@sushiswap/client": "workspace:*", "@sushiswap/database": "workspace:*", "@sushiswap/dexie": "workspace:*", - "@sushiswap/graph-client": "workspace:*", "@sushiswap/graph-client-new": "workspace:*", "@sushiswap/hooks": "workspace:*", "@sushiswap/nextjs-config": "workspace:*", diff --git a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts index c3931e9159..eb4824c7d5 100644 --- a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts +++ b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts @@ -1,12 +1,12 @@ 'use client' import { GetApiInputFromOutput, parseArgs } from '@sushiswap/client' -import { Rebase } from '@sushiswap/graph-client' +import type { BentoBoxRebases } from '@sushiswap/graph-client-new/bentobox' import { useAllPrices } from '@sushiswap/react-query' import { useMemo } from 'react' import { Amount, Token } from 'sushi/currency' -import useSWR from 'swr' +import { useQuery } from '@tanstack/react-query' import { bentoBoxTokensSchema } from '../../../lib/schema' export type GetBentoBoxTokenArgs = GetApiInputFromOutput< @@ -22,10 +22,11 @@ export const getBentoBoxTokensUrl = (args: GetBentoBoxTokenArgs) => `/analytics/api/bentobox${parseArgs(args)}` function useBentoBoxTokens(args: GetBentoBoxTokenArgs) { - const { data: rebases, isValidating } = useSWR( - getBentoBoxTokensUrl(args), - (url) => fetch(url).then((data) => data.json()), - ) + const { data: rebases, isInitialLoading } = useQuery({ + queryKey: [getBentoBoxTokensUrl(args)], + queryFn: () => + fetch(getBentoBoxTokensUrl(args)).then((data) => data.json()), + }) const { data: prices, isLoading } = useAllPrices() @@ -63,7 +64,7 @@ function useBentoBoxTokens(args: GetBentoBoxTokenArgs) { }), [rebases, prices], ), - isLoading: isLoading || isValidating, + isLoading: isLoading || isInitialLoading, } } diff --git a/apps/evm/src/app/internal/tokens/page.tsx b/apps/evm/src/app/internal/tokens/page.tsx index d3f087e5d1..0e5b86b339 100644 --- a/apps/evm/src/app/internal/tokens/page.tsx +++ b/apps/evm/src/app/internal/tokens/page.tsx @@ -18,7 +18,9 @@ import { Token, getTokens } from './lib' const TokensPage: FC = () => { const [filter, setFilter] = useState('') - const [chainId, setChainId] = useState(ChainId.ETHEREUM) + const [chainId, setChainId] = useState< + (typeof TOKENS_SUPPORTED_CHAIN_IDS)[number] + >(ChainId.ETHEREUM) const debouncedFilter = useDebounce(filter, 400) const { data: tokens } = useSWR( diff --git a/apps/evm/src/app/pool/[id]/smart/(overview)/page.tsx b/apps/evm/src/app/pool/[id]/smart/(overview)/page.tsx index f5a50bebf5..83b45b4190 100644 --- a/apps/evm/src/app/pool/[id]/smart/(overview)/page.tsx +++ b/apps/evm/src/app/pool/[id]/smart/(overview)/page.tsx @@ -1,22 +1,29 @@ -import { getPool } from '@sushiswap/client' +import { getPool, getSteerVaults } from '@sushiswap/client' import { unstable_cache } from 'next/cache' import notFound from 'src/app/pool/not-found' import { SteerCarousel } from 'src/ui/pool/Steer/SteerCarousel' +import type { ID } from 'sushi' import { unsanitize } from 'sushi/format' export default async function VaultOverviewPage({ params, }: { params: { id: string } }) { - const poolId = unsanitize(params.id) - const pool = await unstable_cache( - async () => getPool(poolId), + const poolId = unsanitize(params.id) as ID + const poolP = unstable_cache(async () => getPool(poolId), ['pool', poolId], { + revalidate: 60 * 15, + })() + + const vaultsP = unstable_cache( + async () => getSteerVaults({ poolId }), ['pool', poolId], { revalidate: 60 * 15, }, )() - if (!pool) { + const [pool, vaults] = await Promise.all([poolP, vaultsP]) + + if (!pool || !vaults) { notFound() } diff --git a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx index 1045560c6e..f281b31c4e 100644 --- a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx +++ b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx @@ -23,14 +23,8 @@ import { function getPriceExtremes( vault: SteerVault, ): SteerStrategyGeneric['priceExtremes'] { - const token0 = new Token({ - chainId: vault.pool.chainId, - ...vault.pool.token0, - }) - const token1 = new Token({ - chainId: vault.pool.chainId, - ...vault.pool.token1, - }) + const token0 = new Token(vault.token0) + const token1 = new Token(vault.token1) let lowerPrice = tickToPrice(token0, token1, vault.lowerTick).toSignificant(7) let upperPrice = tickToPrice(token0, token1, vault.upperTick).toSignificant(7) diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts index 9dae02bc49..0c3ac42e5f 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-contract.ts @@ -86,7 +86,7 @@ export const getMasterChefContractConfig = ( } export function useMasterChefContract( - chainId: ChainId, + chainId: ChainId | undefined, chef: Omit, ) { return useMemo(() => { diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts index 4cc5918cc0..03fbf19013 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-master-chef-deposit.ts @@ -19,7 +19,7 @@ import { ChainId } from 'sushi' import { useMasterChefContract } from './use-master-chef-contract' interface UseMasterChefDepositParams { - chainId: ChainId + chainId: ChainId | undefined chef: ChefType pid: number amount?: Amount @@ -45,7 +45,7 @@ export const useMasterChefDeposit = ({ const onSuccess = useCallback( (data: SendTransactionReturnType) => { - if (!amount) return + if (!amount || !chainId) return try { const ts = new Date().getTime() diff --git a/apps/evm/src/ui/analytics/furo-token-table.tsx b/apps/evm/src/ui/analytics/furo-token-table.tsx index 5db697243e..06f9089488 100644 --- a/apps/evm/src/ui/analytics/furo-token-table.tsx +++ b/apps/evm/src/ui/analytics/furo-token-table.tsx @@ -15,6 +15,7 @@ import { ColumnDef, PaginationState, SortingState } from '@tanstack/react-table' import React, { FC, useMemo, useState } from 'react' import { formatNumber, formatUSD } from 'sushi/format' +import { isFuroChainId } from 'sushi/config' import { FuroToken, GetFuroTokenArgs, @@ -94,7 +95,7 @@ export const FuroTokenTable: FC = () => { const args = useMemo( () => ({ - chainIds, + chainIds: chainIds.filter(isFuroChainId), tokenSymbols, }), [chainIds, tokenSymbols], diff --git a/apps/evm/src/ui/pool/AddSectionStake.tsx b/apps/evm/src/ui/pool/AddSectionStake.tsx index bd9fc4373b..a8da81a714 100644 --- a/apps/evm/src/ui/pool/AddSectionStake.tsx +++ b/apps/evm/src/ui/pool/AddSectionStake.tsx @@ -65,7 +65,7 @@ const _AddSectionStake: FC = withCheckerRoot( const { write, isLoading: isWritePending } = useMasterChefDeposit({ amount: amounts[0], - chainId: liquidityToken.chainId, + chainId: liquidityToken?.chainId, chef: chefType, pid: farmId, enabled: Boolean( diff --git a/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx b/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx index 44635cfc11..14fcea73c0 100644 --- a/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx +++ b/apps/evm/src/ui/pool/AddSectionStakeWidget.tsx @@ -27,7 +27,7 @@ interface AddSectionStakeWidgetProps { setValue(value: string): void reserve0: Amount | null reserve1: Amount | null - liquidityToken: Token + liquidityToken: Token | undefined children: ReactNode isFarm?: boolean isIncentivized?: boolean diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/index.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/index.ts deleted file mode 100644 index 4f41f158dd..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/Smart/index.ts +++ /dev/null @@ -1 +0,0 @@ -export * from './Smart' diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/index.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/index.ts deleted file mode 100644 index 754f36527f..0000000000 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/Tables/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './Manual' -export * from './Smart' diff --git a/apps/evm/src/ui/pool/ConcentratedPositionsTable/index.ts b/apps/evm/src/ui/pool/ConcentratedPositionsTable/index.ts index 3c61e534a2..64a7ee3edb 100644 --- a/apps/evm/src/ui/pool/ConcentratedPositionsTable/index.ts +++ b/apps/evm/src/ui/pool/ConcentratedPositionsTable/index.ts @@ -1,2 +1 @@ export * from './ConcentratedPositionsTable' -export * from './Tables' diff --git a/apps/evm/src/ui/pool/PositionCard.tsx b/apps/evm/src/ui/pool/PositionCard.tsx index a7fa195801..24c11ae308 100644 --- a/apps/evm/src/ui/pool/PositionCard.tsx +++ b/apps/evm/src/ui/pool/PositionCard.tsx @@ -9,20 +9,13 @@ import { TooltipTrigger, } from '@sushiswap/ui/components/tooltip' import React, { FC } from 'react' +import { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { useTokensFromPool } from 'src/lib/hooks' import { Chain } from 'sushi/chain' import { formatNumber, formatUSD } from 'sushi/format' -import type { - PoolBase, - PoolWithIncentives, - SushiPositionStaked, - SushiPositionWithPool, -} from 'sushi/types' interface PositionCard { - position: SushiPositionStaked< - SushiPositionWithPool> - > + position: UserWithPool } export const PositionCardSkeleton = () => { @@ -84,9 +77,6 @@ export const PositionCard: FC = ({ position }) => {
🧑‍🌾{' '} - {position.pool.incentives.length > 1 - ? `x ${position.pool.incentives.length}` - : ''}{' '}
diff --git a/apps/evm/src/ui/pool/SmartPoolsTable.tsx b/apps/evm/src/ui/pool/SmartPoolsTable.tsx index 7eb0f5db7e..64e56667b1 100644 --- a/apps/evm/src/ui/pool/SmartPoolsTable.tsx +++ b/apps/evm/src/ui/pool/SmartPoolsTable.tsx @@ -10,7 +10,7 @@ import { MinusIcon, PlusIcon, } from '@heroicons/react/24/outline' -import { SteerVault, SteerVaults } from '@sushiswap/client' +import { SteerVaults } from '@sushiswap/client' import { Badge, Button, @@ -51,13 +51,6 @@ import { Native, Token, unwrapToken } from 'sushi/currency' import { formatNumber, formatPercent, formatUSD } from 'sushi/format' import { useSteerVaults } from '@sushiswap/client/hooks' -import { SteerVaultWithPool } from '@sushiswap/steer-sdk' -import { - PoolBase, - PoolHistory1D, - PoolIfIncentivized, - PoolWithAprs, -} from 'sushi' import { isAngleEnabledChainId } from 'sushi/config' import { APRHoverCard } from './APRHoverCard' import { ProtocolBadge } from './PoolNameCell' @@ -510,13 +503,7 @@ const COLUMNS = [ skeleton: , }, }, -] satisfies ColumnDef< - SteerVaultWithPool< - SteerVault, - PoolIfIncentivized>> - >, - unknown ->[] +] satisfies ColumnDef[] export const SmartPoolsTable = () => { const { tokenSymbols, chainIds, protocols, farmsOnly } = usePoolFilters() diff --git a/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx b/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx index ba174cf944..1be088d5d8 100644 --- a/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerCarousel.tsx @@ -3,39 +3,39 @@ import { Carousel, SkeletonBox } from '@sushiswap/ui' import { FC, useCallback, useMemo } from 'react' -import { PoolWithSteerVaults, SteerVault } from '@sushiswap/steer-sdk' +import { SteerVault } from '@sushiswap/steer-sdk' import type { PoolWithFeeAprs, PoolWithIncentives } from 'sushi/types' import { SteerPoolCard } from './SteerPoolCard' -type RequiredPool = PoolWithSteerVaults< - PoolWithIncentives, - SteerVault -> +type RequiredPool = PoolWithIncentives interface SteerCarousel { pool?: RequiredPool + vaults?: SteerVault[] isLoading?: boolean } export const SteerCarousel: FC = ({ pool, + vaults, isLoading = false, }) => { - if (isLoading || !pool) { + if (isLoading || !pool || !vaults) { return <_SteerCarouselLoading /> } - return <_SteerCarousel pool={pool} /> + return <_SteerCarousel pool={pool} vaults={vaults} /> } interface _SteerCarousel { pool: RequiredPool + vaults: SteerVault[] } -const _SteerCarousel: FC<_SteerCarousel> = ({ pool }) => { +const _SteerCarousel: FC<_SteerCarousel> = ({ pool, vaults }) => { const enabledVaults = useMemo( - () => pool.steerVaults.filter((vault) => vault.isEnabled), - [pool], + () => vaults.filter((vault) => vault.isEnabled), + [vaults], ) const render = useCallback( diff --git a/apps/evm/src/ui/pool/Steer/SteerStrategies/index.ts b/apps/evm/src/ui/pool/Steer/SteerStrategies/index.ts index dee44c6b1f..1901bfa13f 100644 --- a/apps/evm/src/ui/pool/Steer/SteerStrategies/index.ts +++ b/apps/evm/src/ui/pool/Steer/SteerStrategies/index.ts @@ -2,7 +2,12 @@ import { SteerStrategy } from '@sushiswap/database' import { FC } from 'react' import { SteerVault, SteerVaultWithPool } from '@sushiswap/steer-sdk' -import type { PoolBase, PoolWithFeeAprs, PoolWithIncentives } from 'sushi/types' +import type { + PoolIfIncentivized, + PoolSwapFee, + PoolWithFeeAprs, + PoolWithIncentiveApr, +} from 'sushi/types' import { SteerBaseStrategy } from './SteerBaseStrategy' export interface SteerStrategyGeneric { @@ -28,7 +33,7 @@ export interface SteerStrategyGeneric { export type SteerStrategyComponent = FC<{ vault: SteerVaultWithPool< SteerVault, - PoolWithIncentives> + PoolIfIncentivized>> > generic: SteerStrategyGeneric }> diff --git a/packages/client/package.json b/packages/client/package.json index 6900ed38ae..4ce26b27d7 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -67,7 +67,7 @@ "dependencies": { "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/database": "workspace:*", - "@sushiswap/graph-client": "workspace:*", + "@sushiswap/graph-client-new": "workspace:*", "@sushiswap/steer-sdk": "workspace:*", "@whatwg-node/fetch": "0.8.4", "deepmerge-ts": "^4.3.0", diff --git a/packages/client/src/api/bonds/bonds/index.ts b/packages/client/src/api/bonds/bonds/index.ts index ff465484f2..816f1c2967 100644 --- a/packages/client/src/api/bonds/bonds/index.ts +++ b/packages/client/src/api/bonds/bonds/index.ts @@ -1,5 +1,4 @@ import { - BONDS_SUBGRAPH_URL, type BondChainId, getBondDiscount, getMarketIdFromChainIdAuctioneerMarket, @@ -7,9 +6,9 @@ import { } from '@sushiswap/bonds-sdk' import { createClient } from '@sushiswap/database' import { - type BondMarketsQueryVariables, - getBuiltGraphSDK, -} from '@sushiswap/graph-client' + type GetBondMarkets, + getBondMarkets, +} from '@sushiswap/graph-client-new/bonds' import { getTotalSupply, getVaultReserves } from '@sushiswap/steer-sdk' import { getChainIdAddressFromId, @@ -155,23 +154,25 @@ export async function getBondsFromSubgraph( const auctioneers = args.ids?.map(({ auctioneerAddress }) => auctioneerAddress) || null const marketIdFilter = - args.ids?.map(({ marketNumber }) => Number(marketNumber)) || null + args.ids?.map(({ marketNumber }) => String(marketNumber)) || null const auctionTypes = convertAuctionTypes(args.auctionTypes) - const query = { - first: args.take, - where: { - auctioneer_in: auctioneers, - marketId_in: marketIdFilter, - hasClosed: args.onlyOpen ? false : null, - type_in: auctionTypes, - }, - } satisfies BondMarketsQueryVariables + const where: GetBondMarkets['where'] = { + type_in: auctionTypes, + } - Object.entries(query.where).map(([key, value]) => { - if (value === null) delete query.where[key as keyof typeof query.where] - }) + if (auctioneers) { + where.auctioneer_in = auctioneers + } + + if (marketIdFilter) { + where.marketId_in = marketIdFilter + } + + if (args.onlyOpen) { + where.hasClosed = false + } const client = await createClient() const issuersP = client.bondIssuer @@ -210,10 +211,12 @@ export async function getBondsFromSubgraph( const bonds = await Promise.allSettled( args.chainIds.map(async (chainId) => { - const sdk = getBuiltGraphSDK({ url: BONDS_SUBGRAPH_URL[chainId] }) - - const [{ bonds }, prices, issuers, bondDescriptions] = await Promise.all([ - sdk.BondMarkets(query), + const [bonds, prices, issuers, bondDescriptions] = await Promise.all([ + getBondMarkets({ + chainId, + first: args.take, + where, + }), getTokenPricesChainV2({ chainId }), issuersP, bondDescriptionsP, @@ -253,7 +256,7 @@ export async function getBondsFromSubgraph( if ( marketIdFilter && - !marketIdFilter?.includes(Number(bond.marketId)) + !marketIdFilter?.includes(String(bond.marketId)) ) { return false } diff --git a/packages/client/src/api/bonds/positions/index.ts b/packages/client/src/api/bonds/positions/index.ts index 145a85d51d..80a9d1f5ea 100644 --- a/packages/client/src/api/bonds/positions/index.ts +++ b/packages/client/src/api/bonds/positions/index.ts @@ -1,12 +1,8 @@ +import { type BondChainId, isBondChainId } from '@sushiswap/bonds-sdk' import { - BONDS_SUBGRAPH_URL, - type BondChainId, - isBondChainId, -} from '@sushiswap/bonds-sdk' -import { - type BondPositionsQueryVariables, - getBuiltGraphSDK, -} from '@sushiswap/graph-client' + type GetBondUserPositions, + getBondUserPositions, +} from '@sushiswap/graph-client-new/bonds' import { getChainIdAddressFromId, isPromiseFulfilled } from 'sushi' import { getAddress } from 'viem' import { type BondsPositionsApiSchema } from '../../../pure/bonds/positions/schema' @@ -26,27 +22,30 @@ export async function getBondPositionsFromSubgraph( payoutTokenAddress = address } - const query = { - where: { - balance_gt: args.onlyUnclaimedBonds ? 0 : null, - bondToken_: payoutTokenAddress - ? { - underlying_contains_nocase: payoutTokenAddress, - } - : null, - owner_contains_nocase: args.userAddress, - }, - } satisfies BondPositionsQueryVariables + const where: GetBondUserPositions['where'] = { + owner_contains_nocase: args.userAddress, + } + + if (args.onlyUnclaimedBonds) { + where.balance_gt = '0' + } - Object.entries(query.where).map(([key, value]) => { - if (value === null) delete query.where[key as keyof typeof query.where] + if (payoutTokenAddress) { + where.bondToken_ = { + underlying_contains_nocase: payoutTokenAddress, + } + } + + Object.entries(where!).map(([key, value]) => { + if (value === null) delete where[key as keyof typeof where] }) const positions = await Promise.allSettled( chainIds.map(async (chainId) => { - const sdk = getBuiltGraphSDK({ url: BONDS_SUBGRAPH_URL[chainId] }) - - const { positions } = await sdk.BondPositions(query) + const positions = await getBondUserPositions({ + chainId, + where, + }) const prices = await getTokenPricesChainV2({ chainId }) const positionsParsed = positions diff --git a/packages/client/src/api/steer-vault/parse.ts b/packages/client/src/api/steer-vault/parse.ts index 01ebf2c100..d8181e735c 100644 --- a/packages/client/src/api/steer-vault/parse.ts +++ b/packages/client/src/api/steer-vault/parse.ts @@ -64,5 +64,13 @@ export function parseSteerArgs( } } + if ('poolId' in args && args.poolId !== undefined) { + addFilter({ + pool: { + id: args.poolId, + }, + }) + } + return where } diff --git a/packages/client/src/api/steer-vault/vaults.ts b/packages/client/src/api/steer-vault/vaults.ts index 39285277c9..7da0aaef86 100644 --- a/packages/client/src/api/steer-vault/vaults.ts +++ b/packages/client/src/api/steer-vault/vaults.ts @@ -12,6 +12,9 @@ import type { SushiSwapV3ChainId } from 'sushi/config' import type { Address, ID, + PoolBase, + PoolHistory1D, + PoolId, PoolIfIncentivized, PoolSwapFee, PoolWithAprs, @@ -22,22 +25,33 @@ import { parseSteerArgs } from './parse' type Vaults = SteerVaultWithPool< SteerVault, - PoolWithAprs> + PoolWithAprs< + PoolHistory1D< + PoolSwapFee>> + > + > >[] export async function getSteerVaultsFromDB( args: typeof SteerVaultsApiSchema._output, ): Promise { - const take = args.take - const orderBy: Prisma.SteerVaultOrderByWithRelationInput = { - [args.orderBy]: args.orderDir, + let take = 9999 + if ('take' in args) { + take = args.take } + + let orderBy: Prisma.SteerVaultOrderByWithRelationInput = {} + + if ('orderBy' in args) { + orderBy = { [args.orderBy]: args.orderDir } + } + const where: Prisma.SteerVaultWhereInput = parseSteerArgs(args) let skip = 0 let cursor: { cursor: Prisma.SteerVaultWhereUniqueInput } | object = {} - if (args.cursor) { + if ('cursor' in args) { skip = 1 cursor = { cursor: { id: args.cursor } } } @@ -63,6 +77,14 @@ export async function getSteerVaultsFromDB( swapFee: true, + liquidityUSD: true, + + liquidityUSDChange1d: true, + volume1d: true, + volumeChange1d: true, + fees1d: true, + feesChange1d: true, + incentiveApr: true, isIncentivized: true, wasIncentivized: true, @@ -152,6 +174,19 @@ export async function getSteerVaultsFromDB( chainId: vault.pool.chainId as SushiSwapV3ChainId, protocol: vault.pool.protocol as SushiSwapV3Protocol, + liquidityUSD: Number(vault.pool.liquidityUSD), + + liquidityUSD1dChange: vault.pool.liquidityUSDChange1d, + + volumeUSD1d: Number(vault.pool.volume1d), + volumeUSD1dChange: vault.pool.volumeChange1d, + + feesUSD1d: Number(vault.pool.fees1d), + feesUSD1dChange: vault.pool.feesChange1d, + + txCount1d: 0, + txCount1dChange: 0, + incentiveApr: vault.pool.incentiveApr, isIncentivized: vault.pool.isIncentivized, wasIncentivized: vault.pool.wasIncentivized, @@ -213,8 +248,8 @@ export async function getSteerVaultsFromDB( performanceFee: vault.performanceFee, - lowerTick: BigInt(vault.lowerTick), - upperTick: BigInt(vault.upperTick), + lowerTick: vault.lowerTick, + upperTick: vault.upperTick, adjustmentFrequency: vault.adjustmentFrequency, lastAdjustmentTimestamp: vault.lastAdjustmentTimestamp, diff --git a/packages/client/src/pure/steer-vault/vaults/schema.ts b/packages/client/src/pure/steer-vault/vaults/schema.ts index 43bbfb8580..d779b6ddc6 100644 --- a/packages/client/src/pure/steer-vault/vaults/schema.ts +++ b/packages/client/src/pure/steer-vault/vaults/schema.ts @@ -1,3 +1,5 @@ +import { getChainIdAddressFromId } from 'sushi/format' +import type { ID } from 'sushi/types' import { z } from 'zod' export const SteerVaultsApiSchema = z.object({ @@ -30,6 +32,11 @@ export const SteerVaultsApiSchema = z.object({ message: 'Can only use up to 3 tokenSymbols.', }) .optional(), + poolId: z + .string() + .refine(getChainIdAddressFromId) + .transform((id) => id.toLowerCase() as ID) + .optional(), cursor: z.string().optional(), orderBy: z.string().default('reserveUSD'), orderDir: z.enum(['asc', 'desc']).default('desc'), diff --git a/packages/client/src/pure/steer-vault/vaults/vaults.ts b/packages/client/src/pure/steer-vault/vaults/vaults.ts index 3c564c0b72..58b0fe1c5d 100644 --- a/packages/client/src/pure/steer-vault/vaults/vaults.ts +++ b/packages/client/src/pure/steer-vault/vaults/vaults.ts @@ -14,7 +14,9 @@ export type GetSteerVaultsArgs = | undefined export const getSteerVaultsUrl = (args: GetSteerVaultsArgs) => { - return `${EVM_APP_BASE_URL}/pool/api/steer-vault${parseArgs(args)}` + return `${EVM_APP_BASE_URL}/pool/api/steer-vault${parseArgs( + args, + )}` } export const getSteerVaults = async ( diff --git a/packages/graph-client/.gitignore b/packages/graph-client/.gitignore deleted file mode 100644 index cf14b7df31..0000000000 --- a/packages/graph-client/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -*.js -*.js.map -*.d.ts -*.d.ts.map \ No newline at end of file diff --git a/packages/graph-client/.graphclientrc.yml b/packages/graph-client/.graphclientrc.yml deleted file mode 100644 index 3626ca426e..0000000000 --- a/packages/graph-client/.graphclientrc.yml +++ /dev/null @@ -1,558 +0,0 @@ -sources: - - name: xSUSHI - handler: - graphql: - endpoint: https://api.studio.thegraph.com/query/32073/xsushi/v0.0.1 - retry: 3 - # transforms: - - - name: BentoBox - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/bentobox-ethereum/v0.0.1} - retry: 3 - # transforms: - - - name: Blocks - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/72545/ethereum-blocks/version/latest} - retry: 3 - # transforms: - - - name: FuroStream - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/furo-ethereum/v0.0.1} - transforms: - - autoPagination: - validateSchema: true - - - - name: SushiSwapV2 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/v2-arbitrum/version/latest} - retry: 3 - transforms: - - rename: - renames: - - from: - type: Query - field: swaps - to: - type: Query - field: v2Swaps - - from: - type: Swap - to: - type: V2Swap - - from: - type: Query - field: burns - to: - type: Query - field: v2Burns - - from: - type: Burn - to: - type: V2Burn - - from: - type: Query - field: mints - to: - type: Query - field: v2Mints - - from: - type: Mint - to: - type: V2Mint - - from: - type: Query - field: transactions - to: - type: Query - field: v2Transactions - - from: - type: Transaction - to: - type: V2Transaction - # - addSourceName: true - # - autoPagination: - # validateSchema: true - # transforms: - # Rename type names and field names to let stitching merger merges them - # - rename: - # renames: - # - from: - # type: PairWithIncentives - # to: - # type: Pair - # - from: - # type: Query - # field: pairWithIncentives - # to: - # type: Query - # field: pair - # - from: - # type: Query - # field: pairsWithIncentives - # to: - # type: Query - # field: pairs - # - typeMerging: - # queryFields: - # - queryFieldName: incentives - # keyField: id - # - queryFieldName: pairs - # keyField: id - - - name: MasterChefV1 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/masterchef/version/latest} - retry: 3 - transforms: - - addSourceName: true - - autoPagination: - validateSchema: true - - prefix: - value: MASTERCHEF_V1_ - includeRootOperations: true - includeTypes: false - ignore: - - _SubgraphErrorPolicy_ - - rename: - mode: wrap - renames: - - from: - type: Pool - field: owner - to: - type: Pool - field: masterChef - - from: - type: Pool - field: balance - to: - type: Pool - field: slpBalance - - - name: MasterChefV2 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/master-chefv2/version/latest} - retry: 3 - transforms: - - addSourceName: true - - autoPagination: - validateSchema: true - - prefix: - value: MASTERCHEF_V2_ - includeRootOperations: true - includeTypes: false - ignore: - - _SubgraphErrorPolicy_ - - - name: GraphNode - handler: - graphql: - endpoint: https://{context.node:api.thegraph.com/index-node/graphql} - - - name: SushiSwapV3 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/v3-ethereum/version/latest} - retry: 3 - transforms: - - prefix: - value: SUSHISWAP_V3_ - includeRootOperations: true - includeTypes: true - ignore: - - _SubgraphErrorPolicy_ - - - name: Bonds - handler: - graphql: - endpoint: https://{context.url:api.thegraph.com/subgraphs/name/bond-protocol/bond-protocol-mainnet} - retry: 3 - transforms: - - prefix: - value: Bonds_ - includeRootOperations: true - includeTypes: true - ignore: - - _SubgraphErrorPolicy_ - -# Had to disable global transforms since we have a jsonSchema handler in here now... -transforms: - # - autoPagination: - # validateSchema: false - - autoTypeMerging: true - - addSourceName: true - -additionalTypeDefs: | - # Custom types - type BucketData { - id: ID! - date: BigInt! - volumeUSD: BigDecimal! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - transactionCount: BigInt! - } - type UserPosition { - id: ID! - pool: String! - chainId: BigInt! - balance: BigInt! - unstakedBalance: BigInt! - stakedBalance: BigInt! - } - type Furo_token { - id: ID! - liquidityShares: BigInt! - symbol: String! - name: String! - decimals: Int! - chainId: Int! - rebase: Rebase! - } - type ChefUserPool { - id: BigInt! - pair: String! - } - type ChefUser { - id: ID! - chainId: BigInt! - address: String! - amount: BigInt! - pool: ChefUserPool - } - type RewardToken { - address: String! - symbol: String! - decimals: Int! - } - type Incentive { - chainId: BigInt! - poolId: String! - pid: Int! - type: String! - apr: BigDecimal! - rewardPerDay: BigDecimal! - rewardToken: RewardToken! - rewarderAddress: String! - rewarderType: String! - } - type Farm { - id: ID! - incentives: [Incentive!]! - chefType: String! - poolType: String! - } - # Input - input Pagination { - pageIndex: Int! = 0 - pageSize: Int! = 20 - } - # Type Extensions - extend type Block { - chainId: BigInt! - } - extend type Bundle { - chainId: BigInt! - } - extend type SUSHISWAP_V3_Factory { - chainId: Int! - } - extend type Rebase { - chainId: BigInt! - } - extend type Token { - chainId: BigInt! - source: String! - } - extend type UniswapFactory { - chainId: BigInt! - } - extend type UniswapDayData { - chainId: BigInt! - } - extend type Pair { - chainId: BigInt! - swapFee: BigInt! - address: String! - name: String! - liquidity: BigInt! - liquidityNative: BigDecimal! - liquidityUSD: BigDecimal! - liquidity1dChange: BigDecimal - liquidity1wChange: BigDecimal - volume1d: BigDecimal - volume1dChange: BigDecimal - volume1w: BigDecimal - feesUSD: BigDecimal! - fees1d: BigDecimal - fees1w: BigDecimal - fees1dChange: BigDecimal - utilisation1d: BigDecimal - utilisation2d: BigDecimal - utilisation1dChange: BigDecimal - txCount1d: BigDecimal - txCount1dChange: BigDecimal - txCount1w: BigDecimal - feeApr: BigDecimal - daySnapshots: [BucketData]! - hourSnapshots: [BucketData]! - } - extend type LiquidityPosition { - chainId: BigInt! - } - - extend type BentoBoxKpi { - chainId: BigInt - } - extend type StrategyKpi { - chainId: BigInt - } - - enum SubgraphType { - Current - Pending - } - enum SubgraphStatus { - Synced - Syncing - Failed - } - type Subgraph { - subgraphName: String - subgraphId: String - type: SubgraphType - status: SubgraphStatus - startBlock: BigInt - lastSyncedBlock: BigInt - chainHeadBlock: BigInt - hasFailed: Boolean - nonFatalErrorCount: BigInt - entityCount: BigInt - } - input SubgraphWithNode { - subgraphName: String! - nodeUrl: String! - } - - # Query Extensions - extend type Query { - # Internal app - - subgraphs(subgraphs: [SubgraphWithNode!]!, type: SubgraphType!): [Subgraph!]! - - crossChainBentoBoxKpis( - first: Int! - chainIds: [BigInt!]! - ): [BentoBoxKpi!]! - crossChainStrategyKpis( - skip: Int = 0 - first: Int = 100 - where: StrategyKpi_filter - orderBy: StrategyKpi_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - ): [StrategyKpi!]! - - # / Internal app - furoTokensByChainIds( - skip: Int = 0 - chainIds: [BigInt!]! - orderBy: Token_orderBy - orderDirection: OrderDirection - first: Int = 100 - where: Token_filter - ): [Furo_token!]! - bundlesByChainIds( - chainIds: [BigInt!]! - ): [Bundle!]! - blocksByChainIds( - skip: Int = 0 - first: Int = 100 - where: Block_filter - orderBy: Block_orderBy - orderDirection: OrderDirection - chainIds: [BigInt!]! - ): [Block!]! - factoriesByChainIds( - chainIds: [BigInt!]! - ): [UniswapFactory!]! - v3factoriesByChainIds( - chainIds: [BigInt!]! - ): [SUSHISWAP_V3_Factory!]! - liquidityPositionsByChainIds( - skip: Int = 0 - first: Int = 100 - where: LiquidityPosition_filter - orderBy: LiquidityPosition_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - ): [LiquidityPosition!]! - # pairsByIds( - # skip: Int = 0 - # first: Int = 100 - # where: Pair_filter - # orderBy: Pair_orderBy - # orderDirection: OrderDirection - # block: Block_height - # ids: [String!]! - # ): [Pair!]! - pairsWithIncentives( - skip: Int = 0 - first: Int = 100 - where: Pair_filter - orderBy: Pair_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - farmsOnly: Boolean - pagination: Pagination - ): [Pair!]! - pairsByChainId( - skip: Int = 0 - first: Int = 100 - where: Pair_filter - orderBy: Pair_orderBy - orderDirection: OrderDirection - block: Block_height - chainId: BigInt! - ): [Pair!]! - pairsByChainIds( - skip: Int = 0 - first: Int = 100 - where: Pair_filter - orderBy: Pair_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - blocks: [Block_height!] - ): [Pair!]! - pairById( - id: ID! - block: Block_height - ): Pair - pairsByIds( - ids: [ID!]! - block: Block_height - ): [Pair!]! - rebasesByChainIds( - skip: Int = 0 - first: Int = 100 - where: Rebase_filter - chainIds: [BigInt!]! - ): [Rebase!]! - tokensByChainIds( - skip: Int = 0 - first: Int = 100 - where: Token_filter - orderBy: Token_orderBy - orderDirection: OrderDirection - block: Block_height - pagination: Pagination - chainIds: [BigInt!]! - ): [Token!]! - tokensByChainId( - skip: Int = 0 - first: Int = 100 - where: Token_filter - orderBy: Token_orderBy - orderDirection: OrderDirection - block: Block_height - chainId: BigInt! - ): [Token!]! - tokenById( - id: ID! - block: Block_height - ): Token! - tokensByIds( - ids: [ID!]! - block: Block_height - ): [Token!]! - - poolsByTokenPair( - tokenId0: String! - tokenId1: String! - ): [SUSHISWAP_V3_Pool!]! - crossChainChefUser( - skip: Int = 0 - first: Int = 100 - where: User_filter - orderBy: User_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - ): [ChefUser!]! - crossChainUserPositions( - id: ID! - chainIds: [BigInt!]! - ): [UserPosition!]! - factoryDaySnapshotsByChainIds( - first: Int - skip: Int - where: UniswapDayData_filter - orderBy: UniswapDayData_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - ): [UniswapDayData!]! - crossChainToken(id: ID! now: Int! chainId: BigInt!): Token! - crossChainStats( - first: Int - skip: Int - where: Pair_filter - orderBy: Pair_orderBy - orderDirection: OrderDirection - block: Block_height - chainIds: [BigInt!]! - now: Int! - ): [Pair!]! - oneDayBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [BigInt!]! - ): [Block!]! - twoDayBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [BigInt!]! - ): [Block!]! - oneWeekBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [BigInt!]! - ): [Block!]! - customBlocks( - skip: Int = 0 - first: Int = 100 - timestamp: Int! - chainIds: [BigInt!]! - ): [Block!]! - } - -additionalResolvers: - - ./resolvers/index.js - -documents: - - ./queries/*.graphql - -serve: - endpoint: /api/graphql - playground: true - -codegen: - contextType: 'MeshContext & { chainId: string; subgraphName: string; subgraphHost: string }' - -# cache: -# redis: -# url: '${env.REDIS_URL}' diff --git a/packages/graph-client/CHANGELOG.md b/packages/graph-client/CHANGELOG.md deleted file mode 100644 index 66e5a387a6..0000000000 --- a/packages/graph-client/CHANGELOG.md +++ /dev/null @@ -1,61 +0,0 @@ -# @sushiswap/graph-client - -## 1.0.0 - -### Patch Changes - -- Updated dependencies [[`83d813fb3`](https://github.com/sushiswap/sushiswap/commit/83d813fb338eb5488cbd47513fd525342fbcf81b)]: - - sushi@3.0.0 - -## 0.2.3 - -### Patch Changes - -- 06a133ae: @sushiswap/graph-client rewrite - - @sushiswap/cli revenue action - -- Updated dependencies [06a133ae] - - @sushiswap/graph-config@0.1.1 - -## 0.2.2 - -### Patch Changes - -- 624d7fc2: ethers in deps - -## 0.2.1 - -### Patch Changes - -- 19cbeef0: move dependencies - -## 0.2.0 - -### Minor Changes - -- 0ec96030: working dist - -## 0.1.3 - -### Patch Changes - -- 12704de8: only include cli dist and generate js for graph client - -## 0.1.2 - -### Patch Changes - -- 8b4fca0d: use correct main in package json - -## 0.1.1 - -### Patch Changes - -- 8220f0ca: missing build script - -## 0.1.0 - -### Minor Changes - -- 9a829011: initial release diff --git a/packages/graph-client/README.md b/packages/graph-client/README.md deleted file mode 100644 index a550141023..0000000000 --- a/packages/graph-client/README.md +++ /dev/null @@ -1,7 +0,0 @@ -# Graph Client - -Graph Client library - -## SDK - -pairsOnChainIds diff --git a/packages/graph-client/__tests__/blocks.test.ts b/packages/graph-client/__tests__/blocks.test.ts deleted file mode 100644 index a9ea2faed9..0000000000 --- a/packages/graph-client/__tests__/blocks.test.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { getBuiltGraphSDK } from '../.graphclient/index.js' - -describe('Blocks', () => { - const sdk = getBuiltGraphSDK() - const chainIds = [1, 137] - it.skip('should return blocks for multiple chain ids', async () => { - const { blocks } = await sdk.BlocksByChainIds({ chainIds }) - expect( - chainIds.every((chainId) => - blocks.find((block) => chainId === block.chainId), - ), - ).toBe(true) - }) -}) diff --git a/packages/graph-client/__tests__/furo-tokens.test.ts b/packages/graph-client/__tests__/furo-tokens.test.ts deleted file mode 100644 index 51535a0b2a..0000000000 --- a/packages/graph-client/__tests__/furo-tokens.test.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { getBuiltGraphSDK } from '../.graphclient/index.js' -import { FURO_SUPPORTED_CHAIN_IDS } from 'sushi/config' - -describe('Furo Tokens', () => { - const sdk = getBuiltGraphSDK() - - it.skip('should return some tokens with liquidity', async () => { - const { tokens } = await sdk.furoTokensByChainIds({ - chainIds: FURO_SUPPORTED_CHAIN_IDS, - where: { liquidityShares_gt: 0 }, - }) - expect(tokens.length).toBeGreaterThanOrEqual(1) - }) -}) diff --git a/packages/graph-client/__tests__/pairs.test.ts b/packages/graph-client/__tests__/pairs.test.ts deleted file mode 100644 index ab3f076bb4..0000000000 --- a/packages/graph-client/__tests__/pairs.test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { getBuiltGraphSDK } from '../.graphclient/index.js' - -describe('Pairs', () => { - const sdk = getBuiltGraphSDK() - const chainIds = [1, 137] - it.skip('should return pairs for multiple chain ids', async () => { - const { pairs } = await sdk.PairsByChainIds({ chainIds }) - expect( - chainIds.every((chainId) => - pairs.find((token) => chainId === token.chainId), - ), - ).toBe(true) - }) - it.skip('should return 2000 tokens for multiple chain ids', async () => { - const { pairs } = await sdk.PairsByChainIds({ chainIds, first: 1000 }) - expect(pairs.length).toBe(2000) - }) -}) diff --git a/packages/graph-client/__tests__/tokens.test.ts b/packages/graph-client/__tests__/tokens.test.ts deleted file mode 100644 index ca896d7899..0000000000 --- a/packages/graph-client/__tests__/tokens.test.ts +++ /dev/null @@ -1,41 +0,0 @@ -import { getBuiltGraphSDK } from '../.graphclient/index.js' - -// TOKENS BY CHAIN IDS -// ;(async () => { -// const chainIds = [1, 137] -// const { tokens } = await sdk.TokensByChainIds({ chainIds: [1, 137] }) -// console.log(`Tokens by chainIds ${chainIds.join(', ')}`, tokens) -// })() - -// // TOKEN BY CHAIN ID -// ;(async () => { -// const chainId = 1 -// const { tokens } = await sdk.TokensByChainId({ chainId }) -// console.log(`Tokens by chainId ${chainId}`, tokens) -// })() - -// // TOKEN BY ID (chainId:address) -// ;(async () => { -// // ETHEREUM-WETH -// const id = '1:0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2' -// const { token } = await sdk.TokenById({ id }) -// console.log(`Token by id ${id}`, token) -// })() - -describe('Tokens', () => { - const sdk = getBuiltGraphSDK() - const chainIds = [1, 137] - it.skip('should return tokens for multiple chain ids', async () => { - const { tokens } = await sdk.TokensByChainIds({ chainIds }) - expect( - chainIds.every((chainId) => - tokens.find((token) => chainId === token.chainId), - ), - ).toBe(true) - }) - it.skip('should return 2000 tokens for multiple chain ids', async () => { - const { tokens } = await sdk.TokensByChainIds({ chainIds, first: 1000 }) - // console.log({ tokens }) - expect(tokens.length).toBe(2000) - }) -}) diff --git a/packages/graph-client/lib/block.ts b/packages/graph-client/lib/block.ts deleted file mode 100644 index 04d02e2d4c..0000000000 --- a/packages/graph-client/lib/block.ts +++ /dev/null @@ -1,87 +0,0 @@ -import { - addSeconds, - getUnixTime, - startOfHour, - startOfMinute, - startOfSecond, - subDays, -} from 'date-fns' - -import { getBuiltGraphSDK } from '../.graphclient/index.js' - -const sdk = getBuiltGraphSDK() - -export const getOneDayBlocks = async (chainIds: number[]) => { - const date = startOfSecond(startOfMinute(startOfHour(subDays(Date.now(), 1)))) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return sdk - .BlocksByChainIds({ - first: 1, - skip: 0, - where: { timestamp_gt: start, timestamp_lt: end }, - orderBy: 'timestamp', - orderDirection: 'desc', - chainIds, - }) - .then(({ blocks }) => - blocks.map((block) => ({ number: Number(block?.number ?? 0) })), - ) -} - -export const getTwoDayBlocks = async (chainIds: number[]) => { - const date = startOfSecond(startOfMinute(startOfHour(subDays(Date.now(), 2)))) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return sdk - .BlocksByChainIds({ - first: 1, - skip: 0, - where: { timestamp_gt: start, timestamp_lt: end }, - orderBy: 'timestamp', - orderDirection: 'desc', - chainIds, - }) - .then(({ blocks }) => - blocks.map((block) => ({ number: Number(block?.number ?? 0) })), - ) -} - -export const getOneWeekBlocks = async (chainIds: number[]) => { - const date = startOfSecond(startOfMinute(startOfHour(subDays(Date.now(), 7)))) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return sdk - .BlocksByChainIds({ - first: 1, - skip: 0, - where: { timestamp_gt: start, timestamp_lt: end }, - orderBy: 'timestamp', - orderDirection: 'desc', - chainIds, - }) - .then(({ blocks }) => - blocks.map((block) => ({ number: Number(block?.number ?? 0) })), - ) -} - -export const getCustomBlocks = async ( - chainIds: number[], - timestamp: number, -) => { - const start = timestamp - const end = timestamp + 600 - - return sdk - .BlocksByChainIds({ - first: 1, - skip: 0, - where: { timestamp_gt: start, timestamp_lt: end }, - orderBy: 'timestamp', - orderDirection: 'desc', - chainIds, - }) - .then(({ blocks }) => - blocks.map((block) => ({ number: Number(block?.number ?? 0) })), - ) -} diff --git a/packages/graph-client/lib/incentives.ts b/packages/graph-client/lib/incentives.ts deleted file mode 100644 index 398bb8fd42..0000000000 --- a/packages/graph-client/lib/incentives.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { ChainId } from 'sushi/chain' - -export interface Incentive { - poolId: string - type: 'MasterChefV1' | 'MasterChefV2' | 'MiniChef' - pid: number - chainId: ChainId - apr: string - rewardPerDay: string - rewardToken: { - address: string - decimals: number - symbol: string - } - rewarderAddress: string - rewarderType: 'Primary' | 'Secondary' -} - -export const getIncentives = async (): Promise => - fetch('https://incentives.sushi.com/v0').then((data: any) => data.json()) - -export const getIncentivesByPoolIds = async ( - poolIds: string[], -): Promise => - fetch(`https://incentives.sushi.com/v0?poolIds=${poolIds.join(',')}`).then( - (data: any) => data.json(), - ) - -export const getIncentivesByPoolId = async ( - chainId: ChainId, - address: string, -): Promise => - fetch(`https://incentives.sushi.com/v0/${chainId}/${address}`).then( - (data: any) => data.json(), - ) diff --git a/packages/graph-client/lib/page.ts b/packages/graph-client/lib/page.ts deleted file mode 100644 index 4f6eff0148..0000000000 --- a/packages/graph-client/lib/page.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { InputMaybe, Pagination } from '../.graphclient/index.js' - -export const page = ( - data: T, - pagination: InputMaybe, -): T => { - if ( - !pagination || - pagination.pageIndex === undefined || - pagination.pageSize === undefined - ) - return data - const start = pagination.pageIndex * pagination.pageSize - const end = (pagination.pageIndex + 1) * pagination.pageSize - return data.slice(start, end) as T -} diff --git a/packages/graph-client/lib/pools.ts b/packages/graph-client/lib/pools.ts deleted file mode 100644 index 6009234b91..0000000000 --- a/packages/graph-client/lib/pools.ts +++ /dev/null @@ -1,108 +0,0 @@ -enum PoolType { - CONSTANT_PRODUCT_POOL = 'CONSTANT_PRODUCT_POOL', - STABLE_POOL = 'STABLE_POOL', - CONCENTRATED_LIQUIDITY_POOL = 'CONCENTRATED_LIQUIDITY_POOL', -} - -enum PoolVersion { - LEGACY = 'LEGACY', - TRIDENT = 'TRIDENT', -} - -enum RewarderType { - Primary = 'Primary', - Secondary = 'Secondary', -} - -type PartialWithUndefined = Partial<{ - [K in keyof T]: T[K] | undefined -}> - -export type GetPoolsArgs = PartialWithUndefined<{ - take: number - ids: string[] - chainIds: number[] - poolTypes: PoolType[] - isIncentivized: boolean - isWhitelisted: boolean - cursor: string - orderBy: string - orderDir: 'asc' | 'desc' - count: boolean -}> - -interface Token { - address: string - decimals: number - id: string - name: string - symbol: string -} - -export interface Pool { - address: string - feeApr: number - incentiveApr: number - chainId: number - fees1d: string - fees1w: string - id: string - incentives: { - apr: number - chainId: number - id: string - pid: number - rewarderAddress: string - rewarderType: RewarderType - rewardPerDay: number - rewardToken: Token - chefType: string - }[] - isBlacklisted: boolean - isIncentivized: boolean - liquidityUSD: string - totalSupply: string - name: string - swapFee: number - token0: Token - token1: Token - totalApr: number - twapEnabled: boolean - type: PoolType - version: PoolVersion - volume1d: string - volume1w: string - volumeUSD: string -} - -export const EVM_APP_BASE_URL = - process.env['POOLS_API_V0_BASE_URL'] || - process.env['NEXT_PUBLIC_POOLS_API_V0_BASE_URL'] || - 'https://pools.sushi.com' - -export function parseArgs(args?: Partial) { - if (!args) return '' - - return Object.entries(args).reduce((acc, [key, value]) => { - if (value === undefined) return acc - - return `${acc}&${key}=${Array.isArray(value) ? value.join(',') : value}` - }, '?') -} - -export const getPool = async (poolId: string): Promise => { - return fetch(`${EVM_APP_BASE_URL}/api/v0?ids=${poolId}`) - .then((data: any) => data.json()) - .then((data: any) => data[0]) -} - -export const getPools = async (args?: GetPoolsArgs): Promise => { - return fetch(`${EVM_APP_BASE_URL}/api/v0${parseArgs(args)}`).then( - (data: any) => data.json(), - ) -} - -export const getPoolCount = async (args?: GetPoolsArgs): Promise => - fetch(`${EVM_APP_BASE_URL}/api/v0/count${parseArgs(args)}`) - .then((data: any) => data.json()) - .then((data: any) => data.count) diff --git a/packages/graph-client/lib/wagmi.ts b/packages/graph-client/lib/wagmi.ts deleted file mode 100644 index d3a0e0a8a0..0000000000 --- a/packages/graph-client/lib/wagmi.ts +++ /dev/null @@ -1,74 +0,0 @@ -import { createConfig, readContract } from '@wagmi/core' -import { isPromiseFulfilled } from 'sushi/validate' -import { publicWagmiConfig } from '@sushiswap/wagmi-config' - -const config = createConfig(publicWagmiConfig) - -export async function fetchBalances( - args: { token: string; user: string; chainId: number }[], -): Promise> { - // const _balances = await readContracts({ - // allowFailure: true, - // contracts: args.map( - // ({ token, user, chainId }) => - // ({ - // address: token as Address, - // functionName: 'balanceOf', - // args: [user as Address], - // chainId, - // abi: erc20ABI, - // } as const) - // ), - // }) - - const balances = await Promise.allSettled( - args.map(({ token, user, chainId }) => - readContract(config, { - address: token as `0x${string}`, - functionName: 'balanceOf', - args: [user as `0x${string}`], - chainId: chainId as any, - abi: [ - { - inputs: [ - { - name: '_owner', - type: 'address', - }, - ], - name: 'balanceOf', - outputs: [ - { - name: 'balance', - type: 'uint256', - }, - ], - payable: false, - stateMutability: 'view', - type: 'function', - }, - ] as const, - } as const), - ), - ).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.error('balance readContract failed') - return [] - } - return promiseSettledResults.map((promiseSettledResult, i) => { - return { - ...args[i], - value: isPromiseFulfilled(promiseSettledResult) - ? promiseSettledResult.value - : 0n, - } - }) - }) - - return Object.fromEntries( - balances.map((balance) => [ - `${balance.chainId}:${balance.token}`, - balance.value.toString(), - ]), - ) -} diff --git a/packages/graph-client/package.json b/packages/graph-client/package.json deleted file mode 100644 index 1505b4cc1a..0000000000 --- a/packages/graph-client/package.json +++ /dev/null @@ -1,94 +0,0 @@ -{ - "name": "@sushiswap/graph-client", - "version": "1.0.0", - "description": "Sushi Graph Client", - "keywords": [ - "sushi", - "graph", - "client" - ], - "repository": { - "type": "git", - "url": "https://github.com/sushiswap/sushiswap.git", - "directory": "packages/graph-client" - }, - "license": "MIT", - "author": "Matthew Lilley ", - "sideEffects": true, - "type": "module", - "exports": { - ".": { - "types": "./.graphclient/index.d.ts", - "default": "./.graphclient/index.js" - }, - "./package.json": "./package.json" - }, - "main": ".graphclient/index.js", - "types": ".graphclient/index.d.ts", - "files": [ - ".graphclient" - ], - "scripts": { - "build": "graphclient build --fileType js --throwOnInvalidConfig && rm -f .graphclient/package.json && tsc", - "check": "tsc --pretty --noEmit", - "clean": "rm -rf .turbo .graphclient node_modules", - "dev": "graphclient serve-dev", - "prepublishOnly": "pnpm build", - "start": "graphclient serve-prod", - "validate": "graphclient validate" - }, - "jest": { - "preset": "@sushiswap/jest-config" - }, - "dependencies": { - "@graphprotocol/client-add-source-name": "2.0.0", - "@graphprotocol/client-auto-pagination": "2.0.0", - "@graphprotocol/client-auto-type-merging": "2.0.0", - "@graphprotocol/client-cli": "3.0.0", - "@graphql-mesh/cache-localforage": "0.94.1", - "@graphql-mesh/cross-helpers": "0.4.0", - "@graphql-mesh/graphql": "0.94.2", - "@graphql-mesh/http": "0.94.4", - "@graphql-mesh/merger-stitching": "0.94.1", - "@graphql-mesh/runtime": "0.94.1", - "@graphql-mesh/store": "0.94.1", - "@graphql-mesh/transform-filter-schema": "0.96.6", - "@graphql-mesh/transform-prefix": "0.96.6", - "@graphql-mesh/transform-prune": "0.96.6", - "@graphql-mesh/transform-rename": "0.96.7", - "@graphql-mesh/transform-type-merging": "0.96.6", - "@graphql-mesh/utils": "0.94.1", - "@graphql-tools/merge": "9.0.3", - "@sushiswap/wagmi-config": "workspace:*", - "@whatwg-node/fetch": "0.8.4", - "date-fns": "2.30.0" - }, - "devDependencies": { - "@sushiswap/jest-config": "workspace:*", - "@sushiswap/typescript-config": "workspace:*", - "@types/jest": "29.5.5", - "@types/node": "20", - "@wagmi/core": "2.10.2", - "graphql": "16.6.0", - "jest": "29.7.0", - "sushi": "workspace:*", - "ts-jest": "29.1.1", - "typescript": "5.2.2" - }, - "peerDependencies": { - "@wagmi/core": "*", - "graphql": "*", - "sushi": "*" - }, - "peerDependenciesMeta": { - "@wagmi/core": { - "optional": false - }, - "graphql": { - "optional": false - }, - "sushi": { - "optional": false - } - } -} diff --git a/packages/graph-client/queries/bentobox.graphql b/packages/graph-client/queries/bentobox.graphql deleted file mode 100644 index 5ee720c61e..0000000000 --- a/packages/graph-client/queries/bentobox.graphql +++ /dev/null @@ -1,85 +0,0 @@ -query CrossChainBentoBoxKpis($chainIds: [BigInt!]!) { - crossChainBentoBoxKpis(first: 1000, chainIds: $chainIds) { - chainId - depositCount - withdrawCount - transferCount - protocolCount - userCount - tokenCount - masterContractCount - cloneCount - flashloanCount - transactionCount - strategyCount - activeStrategyCount - pendingStrategyCount - } -} - -query CrossChainStrategyKpis( - $skip: Int = 0 - $first: Int = 100 - $where: StrategyKpi_filter - $orderBy: StrategyKpi_orderBy = apr - $orderDirection: OrderDirection = desc - $block: Block_height - $chainIds: [BigInt!]! -) { - crossChainStrategyKpis( - skip: $skip - first: $first - where: $where - orderBy: $orderBy - # orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - id - chainId - harvestCount - investOrDivestCount - investCount - invested - divestCount - divested - profitOrLossCount - profitCount - lossCount - profitAndLoss - apr - utilization - } -} - -query Rebase($id: ID!) { - rebase(id: $id) { - id - chainId - base - elastic - } -} - -query Rebases($skip: Int = 0, $first: Int = 100, $where: Rebase_filter) { - rebases(skip: $skip, first: $first, where: $where) { - id - chainId - base - elastic - } -} - -query RebasesByChainIds($first: Int, $skip: Int, $where: Rebase_filter, $chainIds: [BigInt!]!) { - rebases: rebasesByChainIds(skip: $skip, first: $first, where: $where, chainIds: $chainIds) { - id - chainId - token { - symbol - name - decimals - } - base - elastic - } -} \ No newline at end of file diff --git a/packages/graph-client/queries/blocks.graphql b/packages/graph-client/queries/blocks.graphql deleted file mode 100644 index 14fec65779..0000000000 --- a/packages/graph-client/queries/blocks.graphql +++ /dev/null @@ -1,88 +0,0 @@ -query LatestBlock { - blocks(first: 1, orderBy: number, orderDirection: desc) { - id - number - timestamp - } -} - -query Block($id: ID!) { - block(id: $id) { - id - number - timestamp - } -} - -query Blocks( - $first: Int = 1 - $skip: Int = 0 - $where: Block_filter - $orderBy: Block_orderBy = timestamp - $orderDirection: OrderDirection = desc -) { - blocks(first: $first, skip: $skip, where: $where, orderBy: $orderBy, orderDirection: $orderDirection) { - id - number - timestamp - } -} - -query BlocksByChainIds( - $first: Int - $skip: Int - $where: Block_filter - $orderBy: Block_orderBy = timestamp - $orderDirection: OrderDirection = desc - $chainIds: [BigInt!]! -) { - blocks: blocksByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - chainIds: $chainIds - ) { - id - chainId - number - timestamp - } -} - -query OneDayBlocks($chainIds: [BigInt!]!) { - oneDayBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query TwoDayBlocks($chainIds: [BigInt!]!) { - twoDayBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query OneWeekBlocks($chainIds: [BigInt!]!) { - oneWeekBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query CustomBlocks($timestamp: Int!, $chainIds: [BigInt!]!) { - customBlocks(timestamp: $timestamp, chainIds: $chainIds) { - id - chainId - number - timestamp - } -} diff --git a/packages/graph-client/queries/bonds.graphql b/packages/graph-client/queries/bonds.graphql deleted file mode 100644 index 860c4e27a0..0000000000 --- a/packages/graph-client/queries/bonds.graphql +++ /dev/null @@ -1,58 +0,0 @@ -query BondMarkets($first: Int = 1000, $skip: Int = 0, $where: Bonds_Market_filter) { - bonds: Bonds_markets(first: $first, skip: $skip, where: $where) { - id - chainId - type - auctioneer - teller - marketId - owner - capacity - capacityInQuote - minPrice - scale - start - conclusion - payoutToken { - address - symbol - decimals - name - } - quoteToken { - address - symbol - decimals - name - } - vesting - vestingType - isInstantSwap - hasClosed - totalBondedAmount - totalPayoutAmount - averageBondPrice - bondsIssued - } -} - -query BondPositions($where: Bonds_OwnerBalance_filter) { - positions: Bonds_ownerBalances(first: 1000, where: $where) { - id - owner - balance - chainId - bondToken { - id - expiry - type - teller - underlying { - address - symbol - decimals - name - } - } - } -} diff --git a/packages/graph-client/queries/bundles.graphql b/packages/graph-client/queries/bundles.graphql deleted file mode 100644 index 774952c0ce..0000000000 --- a/packages/graph-client/queries/bundles.graphql +++ /dev/null @@ -1,7 +0,0 @@ -query Bundles($chainIds: [BigInt!]!) { - bundles: bundlesByChainIds(chainIds: $chainIds) { - id - chainId - ethPrice - } -} diff --git a/packages/graph-client/queries/factories.graphql b/packages/graph-client/queries/factories.graphql deleted file mode 100644 index 639dee912b..0000000000 --- a/packages/graph-client/queries/factories.graphql +++ /dev/null @@ -1,44 +0,0 @@ -query Factories($chainIds: [BigInt!]!) { - factories: factoriesByChainIds(chainIds: $chainIds) { - id - chainId - totalLiquidityUSD - totalVolumeUSD - pairCount - } -} - -query UniswapDayDatas( - $first: Int = 365 - $skip: Int = 0 - $where: UniswapDayData_filter - $orderBy: UniswapDayData_orderBy = date - $orderDirection: OrderDirection = desc - $block: Block_height - $chainIds: [BigInt!]! -) { - factoryDaySnapshots: factoryDaySnapshotsByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - chainId - id - date - - dailyVolumeETH - dailyVolumeUSD - dailyVolumeUntracked - - totalVolumeETH - totalLiquidityETH - totalVolumeUSD - totalLiquidityUSD - - txCount - } -} diff --git a/packages/graph-client/queries/furo.graphql b/packages/graph-client/queries/furo.graphql deleted file mode 100644 index 51caf3e2e0..0000000000 --- a/packages/graph-client/queries/furo.graphql +++ /dev/null @@ -1,28 +0,0 @@ -query furoTokensByChainIds( - $first: Int - $skip: Int - $where: Token_filter - $orderBy: Token_orderBy = liquidityShares - $orderDirection: OrderDirection = desc - $chainIds: [BigInt!]! -) { - tokens: furoTokensByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - chainIds: $chainIds - ) { - id - liquidityShares - symbol - name - decimals - chainId - rebase { - base - elastic - } - } -} diff --git a/packages/graph-client/queries/graphnode.graphql b/packages/graph-client/queries/graphnode.graphql deleted file mode 100644 index 593cf49dd7..0000000000 --- a/packages/graph-client/queries/graphnode.graphql +++ /dev/null @@ -1,49 +0,0 @@ -query CurrentSubgraphIndexingStatus($subgraphName: String!) { - indexingStatusForCurrentVersion(subgraphName: $subgraphName) { - ...Subgraph - } -} - -query PendingSubgraphIndexingStatus($subgraphName: String!) { - indexingStatusForPendingVersion(subgraphName: $subgraphName) { - ...Subgraph - } -} - -fragment Subgraph on SubgraphIndexingStatus { - subgraph - entityCount - fatalError { - message - } - nonFatalErrors { - message - } - chains { - chainHeadBlock { - number - } - earliestBlock { - number - } - latestBlock { - number - } - } - health -} - -query Subgraphs($subgraphs: [SubgraphWithNode!]!, $type: SubgraphType!) { - subgraphs(subgraphs: $subgraphs, type: $type) { - subgraphName - subgraphId - type - status - startBlock - lastSyncedBlock - chainHeadBlock - hasFailed - nonFatalErrorCount - entityCount - } -} diff --git a/packages/graph-client/queries/liquidity-positions.graphql b/packages/graph-client/queries/liquidity-positions.graphql deleted file mode 100644 index 76a4fdae4c..0000000000 --- a/packages/graph-client/queries/liquidity-positions.graphql +++ /dev/null @@ -1,35 +0,0 @@ -fragment LiquidityPositionFields on LiquidityPosition { - id - chainId - liquidityTokenBalance - user { - ...UserFields - } - # We don't select pair at the moment for reasons - # pair { - # ...PairFields - # } -} - -query LiquidityPositions( - $skip: Int = 0 - $first: Int = 100 - $where: LiquidityPosition_filter - $block: Block_height - $orderBy: LiquidityPosition_orderBy - $orderDirection: OrderDirection - $chainIds: [BigInt!]! -) { - liquidityPositions: liquidityPositionsByChainIds( - skip: $skip - first: $first - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - id - ...LiquidityPositionFields - } -} diff --git a/packages/graph-client/queries/masterchef.graphql b/packages/graph-client/queries/masterchef.graphql deleted file mode 100644 index 69027ee53f..0000000000 --- a/packages/graph-client/queries/masterchef.graphql +++ /dev/null @@ -1,28 +0,0 @@ -query CrossChainChefUser( - $skip: Int = 0 - $first: Int = 100 - $where: User_filter - $block: Block_height - $orderBy: User_orderBy - $orderDirection: OrderDirection - $chainIds: [BigInt!]! -) { - crossChainChefUser( - skip: $skip - first: $first - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - id - chainId - address - amount - pool { - id - pair - } - } -} diff --git a/packages/graph-client/queries/pairs.graphql b/packages/graph-client/queries/pairs.graphql deleted file mode 100644 index ff0a418760..0000000000 --- a/packages/graph-client/queries/pairs.graphql +++ /dev/null @@ -1,269 +0,0 @@ -fragment PairFields on Pair { - id - chainId - address - # type - swapFee - # twapEnabled - name - token0 { - name - id - decimals - symbol - } - token1 { - name - id - decimals - symbol - } - createdAtBlockNumber - createdAtTimestamp - reserve0 - reserve1 - totalSupply - reserveUSD - reserveETH - liquidity - liquidityUSD - liquidityNative - # token0Price - # token1Price - volumeUSD - volumeToken0 - volumeToken1 - feesUSD - txCount - - hourSnapshots { - id - date - volumeUSD - liquidityUSD - liquidityNative - transactionCount - } - daySnapshots { - id - date - volumeUSD - liquidityUSD - liquidityNative - transactionCount - } -} - -fragment TimeTravelPairFields on Pair { - id - reserve0 - reserve1 - totalSupply - reserveUSD - reserveETH - volumeUSD - volumeToken0 - volumeToken1 - feesUSD -} - - - -query PairOnlyId($id: ID!) { - pair(id: $id) { - id - } -} - -query PairsByChainId( - $first: Int - $skip: Int - $where: Pair_filter - $orderBy: Pair_orderBy - $orderDirection: OrderDirection - $block: Block_height - $chainId: BigInt! -) { - pairs: pairsByChainId( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainId: $chainId - ) { - ...PairFields - } -} - -query PairsByChainIds( - $first: Int - $skip: Int - $where: Pair_filter - $orderBy: Pair_orderBy - $orderDirection: OrderDirection - $block: Block_height - $chainIds: [BigInt!]! -) { - pairs: pairsByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - ...PairFields - } -} - - -query V2PoolHourData($first: Int = 1000, $skip: Int, $orderBy: PairHourData_orderBy, $orderDirection: OrderDirection, $where: PairHourData_filter) { - pairHourDatas: pairHourDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { - id - hourStartUnix - pair { - id - } - - reserve0 - reserve1 - totalSupply - reserveUSD - - hourlyVolumeToken0 - hourlyVolumeToken1 - hourlyVolumeUSD - hourlyTxns - } -} - - -query V2PoolDayData($first: Int = 1000, $skip: Int, $orderBy: PairDayData_orderBy, $orderDirection: OrderDirection, $where: PairDayData_filter) { - pairDayDatas: pairDayDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { - id - date - pairAddress - - reserve0 - reserve1 - totalSupply - reserveUSD - - dailyVolumeToken0 - dailyVolumeToken1 - dailyVolumeUSD - dailyTxns - } -} - - -query PairById($id: ID!) { - pair: pairById(id: $id) { - ...PairFields - liquidity1dChange - liquidity1wChange - volume1d - volume1dChange - volume1w - fees1d - fees1dChange - fees1w - txCount1d - txCount1dChange - txCount1w - feeApr - } -} - -query V2Transactions($first: Int = 100, $skip: Int = 0, $orderBy: Transaction_orderBy = timestamp, $orderDir: OrderDirection = desc, $where: Transaction_filter) { - transactions: v2Transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - createdAtTimestamp: timestamp - createdAtBlock: blockNumber - mints { - id - sender - liquidity - amount0 - amount1 - amountUSD - logIndex - } - burns { - id - sender - liquidity - amount0 - amount1 - amountUSD - logIndex - } - swaps { - id - sender - to - amount0In - amount1In - amount0Out - amount1Out - amountUSD - logIndex - } - } -} - -query V2Burns($first: Int = 100, $skip: Int = 0, $orderBy: Burn_orderBy = timestamp, $orderDir: OrderDirection = desc, $where: Burn_filter) { - burns: v2Burns(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - sender - liquidity - amount0 - amount1 - amountUSD - logIndex - transaction { - id - createdAtTimestamp: timestamp - createdAtBlock: blockNumber - } - } -} - -query V2Mints($first: Int = 100, $skip: Int = 0, $orderBy: Mint_orderBy = timestamp, $orderDir: OrderDirection = desc, $where: Mint_filter) { - mints: v2Mints(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - sender - liquidity - amount0 - amount1 - amountUSD - logIndex - transaction { - id - createdAtTimestamp: timestamp - createdAtBlock: blockNumber - } - } -} - -query V2Swaps($first: Int = 100, $skip: Int = 0, $orderBy: Swap_orderBy = timestamp, $orderDir: OrderDirection = desc, $where: Swap_filter) { - swaps: v2Swaps(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - sender - to - amount0In - amount1In - amount0Out - amount1Out - amountUSD - logIndex - transaction { - id - createdAtTimestamp: timestamp - createdAtBlock: blockNumber - } - } -} diff --git a/packages/graph-client/queries/sushiswap-v3.graphql b/packages/graph-client/queries/sushiswap-v3.graphql deleted file mode 100644 index a8e40dc70a..0000000000 --- a/packages/graph-client/queries/sushiswap-v3.graphql +++ /dev/null @@ -1,268 +0,0 @@ -query SushiSwapV3Pool( - $id: ID! - $block: SUSHISWAP_V3_Block_height, - $subgraphError: _SubgraphErrorPolicy_! = deny -) { - pool: SUSHISWAP_V3_pool( - id: $id, - block: $block, - subgraphError: $subgraphError - ) { - id - token0 { - id - symbol - name - decimals - } - token1 { - id - symbol - name - decimals - } - feeTier - liquidity - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - - createdAtTimestamp - createdAtBlockNumber - } -} - -query SushiSwapV3PoolWithBuckets( - $id: ID! - $block: SUSHISWAP_V3_Block_height, - $subgraphError: _SubgraphErrorPolicy_! = deny -) { - pool: SUSHISWAP_V3_pool( - id: $id, - block: $block, - subgraphError: $subgraphError - ) { - id - token0 { - id - symbol - name - decimals - } - token1 { - id - symbol - name - decimals - } - feeTier - liquidity - volumeToken0 - volumeToken1 - volumeUSD - feesUSD - txCount - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - - createdAtTimestamp - createdAtBlockNumber - - poolHourData(first: 168, orderBy: periodStartUnix, orderDirection: desc) { - id - periodStartUnix - tvlUSD - volumeUSD - feesUSD - txCount - } - - poolDayData(first: 730, orderBy: date, orderDirection: desc) { - id - date - tvlUSD - volumeUSD - feesUSD - txCount - } - } -} - -query SushiSwapV3DayDatas($first: Int = 1000, $skip: Int, $orderBy: SUSHISWAP_V3_UniswapDayData_orderBy, $orderDirection: SUSHISWAP_V3_OrderDirection, $where: SUSHISWAP_V3_UniswapDayData_filter) { - uniswapDayDatas: SUSHISWAP_V3_uniswapDayDatas(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDirection, where: $where) { - id - date - volumeETH - volumeUSD - volumeUSDUntracked - feesUSD - txCount - tvlUSD - } -} - - -query V3PoolsByTokenPair($tokenId0: String!, $tokenId1: String!) { - pools: poolsByTokenPair(tokenId0: $tokenId0, tokenId1: $tokenId1) { - id - feeTier - liquidity - sqrtPrice - feeGrowthGlobal0X128 - feeGrowthGlobal1X128 - token0Price - token1Price - tick - observationIndex - volumeToken0 - volumeToken1 - volumeUSD - untrackedVolumeUSD - feesUSD - collectedFeesToken0 - collectedFeesToken1 - collectedFeesUSD - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - totalValueLockedUSDUntracked - liquidityProviderCount - } -} - -query V3Factories($chainIds: [BigInt!]!) { - factories: v3factoriesByChainIds(chainIds: $chainIds) { - id - chainId - totalValueLockedUSD - totalVolumeUSD - poolCount - } -} - -query V3Transactions($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Transaction_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Transaction_filter) { - transactions: SUSHISWAP_V3_transactions(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - timestamp - blockNumber - mints { - id - owner - sender - origin - amount - amount0 - amount1 - amountUSD - logIndex - } - burns { - id - owner - origin - amount - amount0 - amount1 - amountUSD - logIndex - } - swaps { - id - sender - recipient - origin - amount0 - amount1 - amountUSD - logIndex - } - collects { - id - owner - amount0 - amount1 - amountUSD - logIndex - } - } -} - -query V3Burns($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Burn_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Burn_filter) { - burns: SUSHISWAP_V3_burns(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - origin - amount - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Mints($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Mint_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Mint_filter) { - mints: SUSHISWAP_V3_mints(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - sender - origin - amount - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Swaps($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Swap_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Swap_filter) { - swaps: SUSHISWAP_V3_swaps(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - sender - recipient - origin - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} - -query V3Collects($first: Int = 100, $skip: Int = 0, $orderBy: SUSHISWAP_V3_Collect_orderBy = timestamp, $orderDir: SUSHISWAP_V3_OrderDirection = desc, $where: SUSHISWAP_V3_Collect_filter) { - collects: SUSHISWAP_V3_collects(first: $first, skip: $skip, orderBy: $orderBy, orderDirection: $orderDir, where: $where) { - id - owner - amount0 - amount1 - amountUSD - logIndex - transaction { - id - timestamp - blockNumber - } - } -} diff --git a/packages/graph-client/queries/tokens.graphql b/packages/graph-client/queries/tokens.graphql deleted file mode 100644 index 81c695c490..0000000000 --- a/packages/graph-client/queries/tokens.graphql +++ /dev/null @@ -1,34 +0,0 @@ -fragment TokenFields on Token { - id - chainId - name - totalLiquidity - symbol - decimals - volumeUSD: tradeVolumeUSD -} - -query TokensByChainIds( - $first: Int = 20 - $skip: Int = 0 - $where: Token_filter - $orderBy: Token_orderBy = tradeVolumeUSD - $orderDirection: OrderDirection = desc - $block: Block_height - $pagination: Pagination - $chainIds: [BigInt!]! -) { - tokens: tokensByChainIds( - first: $first - skip: $skip - pagination: $pagination - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - block: $block - chainIds: $chainIds - ) { - ...TokenFields - source - } -} diff --git a/packages/graph-client/queries/user.graphql b/packages/graph-client/queries/user.graphql deleted file mode 100644 index 6e968b4c62..0000000000 --- a/packages/graph-client/queries/user.graphql +++ /dev/null @@ -1,14 +0,0 @@ -fragment UserFields on User { - id -} - -query CrossChainUserPositions($id: ID!, $chainIds: [BigInt!]!) { - crossChainUserPositions(id: $id, chainIds: $chainIds) { - id - pool - chainId - balance - unstakedBalance - stakedBalance - } -} \ No newline at end of file diff --git a/packages/graph-client/queries/xsushi.graphql b/packages/graph-client/queries/xsushi.graphql deleted file mode 100644 index a52604bb13..0000000000 --- a/packages/graph-client/queries/xsushi.graphql +++ /dev/null @@ -1,43 +0,0 @@ -query Bar($block: Block_height) { - xsushi(id: "xSushi", block: $block) { - id - sushiXsushiRatio - xSushiSushiRatio - sushiSupply - xSushiSupply - apr1m - apr3m - apr6m - apr12m - } -} - -query BarHistory { - hourSnapshots(orderBy: date, orderDirection: desc) { - id - date - xSushiSupply - apr1m - apr3m - apr6m - apr12m - } - daySnapshots(orderBy: date, orderDirection: desc) { - id - date - xSushiSupply - apr1m - apr3m - apr6m - apr12m - } - weekSnapshots(orderBy: date, orderDirection: desc) { - id - date - xSushiSupply - apr1m - apr3m - apr6m - apr12m - } -} \ No newline at end of file diff --git a/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts b/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts deleted file mode 100644 index e4019ce074..0000000000 --- a/packages/graph-client/resolvers/bentobox/crossChainBentoBoxKpis.ts +++ /dev/null @@ -1,42 +0,0 @@ -import { ChainId } from 'sushi/chain' -import { BentoBoxKpi, Resolvers } from '../../.graphclient/index.js' -import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const crossChainBentoBoxKpis: Resolvers['Query']['crossChainBentoBoxKpis'] = - async (root, args, context, info) => { - const supportedChainIds = args.chainIds - .filter( - ( - chainId, - ): chainId is keyof typeof BENTOBOX_SUBGRAPH_URL & - keyof typeof BENTOBOX_SUBGRAPH_URL => - chainId in BENTOBOX_SUBGRAPH_URL, - ) - // Kava subgraph doesn't have the bentoBoxKpis query - .filter((chainId) => chainId !== ChainId.KAVA) - - const kpis = await Promise.all( - supportedChainIds.map((chainId) => - context.BentoBox.Query.bentoBoxKpis({ - root, - args, - context: { - ...context, - chainId, - url: BENTOBOX_SUBGRAPH_URL[chainId], - }, - info, - }).then((kpis: BentoBoxKpi[]) => { - // We send chainId here so we can take it in the resolver above - console.log(kpis, chainId) - - return kpis.map((kpi) => ({ - ...kpi, - chainId, - })) - }), - ), - ) - - return kpis.flat() - } diff --git a/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts b/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts deleted file mode 100644 index bb6c17b129..0000000000 --- a/packages/graph-client/resolvers/bentobox/crossChainStrategyKpis.ts +++ /dev/null @@ -1,35 +0,0 @@ -import { Resolvers, StrategyKpi } from '../../.graphclient/index.js' -import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const crossChainStrategyKpis: Resolvers['Query']['crossChainStrategyKpis'] = - async (root, args, context, info) => { - const supportedChainIds = args.chainIds.filter( - ( - chainId, - ): chainId is keyof typeof BENTOBOX_SUBGRAPH_URL & - keyof typeof BENTOBOX_SUBGRAPH_URL => chainId in BENTOBOX_SUBGRAPH_URL, - ) - - const kpis = await Promise.all( - supportedChainIds.map((chainId) => - context.BentoBox.Query.strategyKpis({ - root, - args, - context: { - ...context, - chainId, - url: BENTOBOX_SUBGRAPH_URL[chainId], - }, - info, - }).then((kpis: StrategyKpi[]) => - // We send chainId here so we can take it in the resolver above - kpis.map((kpi) => ({ - ...kpi, - chainId, - })), - ), - ), - ) - - return kpis.flat() - } diff --git a/packages/graph-client/resolvers/bentobox/index.ts b/packages/graph-client/resolvers/bentobox/index.ts deleted file mode 100644 index 41aa188c43..0000000000 --- a/packages/graph-client/resolvers/bentobox/index.ts +++ /dev/null @@ -1,22 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { crossChainBentoBoxKpis } from './crossChainBentoBoxKpis.js' -import { crossChainStrategyKpis } from './crossChainStrategyKpis.js' -import { rebasesByChainIds } from './rebasesByChainIds.js' - -export const resolvers: Resolvers = { - BentoBoxKpi: { - chainId: (root, args, context) => root.chainId || context.chainId || 137, - }, - StrategyKpi: { - chainId: (root, args, context) => root.chainId || context.chainId || 137, - }, - Rebase: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - rebasesByChainIds, - crossChainBentoBoxKpis, - crossChainStrategyKpis, - }, -} diff --git a/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts b/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts deleted file mode 100644 index db32b7f08a..0000000000 --- a/packages/graph-client/resolvers/bentobox/rebasesByChainIds.ts +++ /dev/null @@ -1,45 +0,0 @@ -// @ts-nocheck - -import { isPromiseFulfilled } from 'sushi/validate' - -import { Query } from '../../.graphclient/index.js' -import { BentoBoxTypes } from '../../.graphclient/sources/BentoBox/types.js' -import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const rebasesByChainIds = async ( - root, - args, - context, - info, -): Promise => { - return Promise.allSettled( - args.chainIds - .filter( - (chainId): chainId is keyof typeof BENTOBOX_SUBGRAPH_URL => - chainId in BENTOBOX_SUBGRAPH_URL, - ) - .map((chainId) => { - return context.BentoBox.Query.rebases({ - root, - args, - context: { - ...context, - chainId, - url: BENTOBOX_SUBGRAPH_URL[chainId], - }, - info, - }).then((rebases: BentoBoxTypes.Rebase[]) => { - if (!Array.isArray(rebases)) { - console.error('rebases query failed...', rebases) - return [] - } - return rebases.map((rebase) => ({ ...rebase, chainId })) - }) - }), - ).then((promiseSettledResults) => - promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value), - ) -} diff --git a/packages/graph-client/resolvers/blocks/blocksByChainIds.ts b/packages/graph-client/resolvers/blocks/blocksByChainIds.ts deleted file mode 100644 index 5aad5ca57d..0000000000 --- a/packages/graph-client/resolvers/blocks/blocksByChainIds.ts +++ /dev/null @@ -1,55 +0,0 @@ -// @ts-nocheck -import { GraphQLResolveInfo } from 'graphql' - -import { - Query, - QueryResolvers, - QueryblocksByChainIdsArgs, - RequireFields, -} from '../../.graphclient/index.js' -import { BlocksTypes } from '../../.graphclient/sources/Blocks/types.js' -import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const _blocksByChainIds = async ( - root = {}, - args: RequireFields, - context: BlocksTypes.Context, - info: GraphQLResolveInfo, -): Promise => { - return Promise.all( - args.chainIds - .filter( - ( - chainId, - ): chainId is keyof typeof BLOCKS_SUBGRAPH_URL & - keyof typeof BENTOBOX_SUBGRAPH_URL => chainId in BLOCKS_SUBGRAPH_URL, - ) - .map((chainId) => { - return context.Blocks.Query.blocks({ - root, - args, - context: { - ...context, - chainId, - url: BLOCKS_SUBGRAPH_URL[chainId], - }, - info, - }).then((blocks: BlocksTypes.Block[]) => { - if (!Array.isArray(blocks)) { - // console.error(`Blocks query failed on ${chainId}`, blocks) - return [] - } - // console.debug(`Blocks ${chainId}`, blocks) - return blocks.map((block) => ({ ...block, chainId })) - }) - }), - ).then((blocks) => blocks.flat()) -} - -export const blocksByChainIds: QueryResolvers['blocksByChainIds'] = async ( - root, - args, - context, - info, -): Promise => - _blocksByChainIds(root, args, context, info) diff --git a/packages/graph-client/resolvers/blocks/index.ts b/packages/graph-client/resolvers/blocks/index.ts deleted file mode 100644 index 5254e13b81..0000000000 --- a/packages/graph-client/resolvers/blocks/index.ts +++ /dev/null @@ -1,109 +0,0 @@ -import { - addSeconds, - getUnixTime, - startOfHour, - startOfMinute, - startOfSecond, - subDays, -} from 'date-fns' - -import { - Block, - ResolverTypeWrapper, - Resolvers, -} from '../../.graphclient/index.js' -import { _blocksByChainIds, blocksByChainIds } from './blocksByChainIds.js' - -export const resolvers: Resolvers = { - Block: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - blocksByChainIds, - oneDayBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 1))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - twoDayBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 2))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - oneWeekBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 7))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - customBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const start = args.timestamp - const end = start + 600 - return _blocksByChainIds( - root, - { - ...args, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - }, -} diff --git a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts b/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts deleted file mode 100644 index 68825ad670..0000000000 --- a/packages/graph-client/resolvers/bundles/bundlesByChainIds.ts +++ /dev/null @@ -1,37 +0,0 @@ -// @ts-nocheck -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { Bundle, Query, QueryResolvers } from '../../.graphclient/index.js' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'node_modules/sushi/dist/config/sushiswap-v2.js' - -export const bundlesByChainIds: QueryResolvers['bundlesByChainIds'] = async ( - root, - args, - context, - info, -) => { - return Promise.all([ - ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => - SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), - ) - .map((chainId) => - context.SushiSwapV2.Query.bundles({ - root, - args, - context: { - ...context, - chainId, - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - }).then((bundles: Bundle[]) => - bundles?.length > 0 - ? bundles.map((bundle) => ({ - ...bundle, - chainId, - })) - : [], - ), - ), - ]).then((bundles) => bundles.flat()) -} diff --git a/packages/graph-client/resolvers/bundles/index.ts b/packages/graph-client/resolvers/bundles/index.ts deleted file mode 100644 index a1cbb2c2c5..0000000000 --- a/packages/graph-client/resolvers/bundles/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { bundlesByChainIds } from './bundlesByChainIds.js' - -export const resolvers: Resolvers = { - Bundle: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - bundlesByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/depreciated/crossChainToken.ts b/packages/graph-client/resolvers/depreciated/crossChainToken.ts deleted file mode 100644 index 00d5f83dbc..0000000000 --- a/packages/graph-client/resolvers/depreciated/crossChainToken.ts +++ /dev/null @@ -1,96 +0,0 @@ -// @ts-nocheck -import { chainName, chainShortName } from 'sushi/chain' - -import { QueryResolvers, Token } from '../../.graphclient/index.js' -import { FarmAPI } from '../../lib/incentives.js' -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' - -export const crossChainToken: QueryResolvers['crossChainToken'] = async ( - root, - args, - context, - info, -): Promise => { - const farms: FarmAPI = await fetch('https://farm.sushi.com/v0').then((res) => - res.json(), - ) - - const token: Token = context.SushiSwapV2.Query.token({ - root, - args, - context: { - ...context, - now: args.now, - chainId: args.chainId, - chainName: chainName[args.chainId], - chainShortName: chainShortName[args.chainId], - url: SUSHISWAP_V2_SUBGRAPH_URL[ - args.chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] - ], - }, - info, - }) - - return { - ...token, - id: `${chainShortName[args.chainId]}:${token.id}`, - chainId: args.chainId, - chainName: chainName[args.chainId], - chainShortName: chainShortName[args.chainId], - source: 'SUSHISWAP_V2', - // @ts-ignore - pairs: token.pairs - ? token.pairs.map(({ pair }) => { - const volume1w = pair.daySnapshots - ?.slice(0, 6) - ?.reduce( - (previousValue, currentValue) => - previousValue + Number(currentValue.volumeUSD), - 0, - ) - const farm = farms?.[args.chainId]?.farms?.[pair.id] - const feeApr = pair?.apr - const incentiveApr = - farm?.incentives?.reduce( - (previousValue, currentValue) => - previousValue + Number(currentValue.apr), - 0, - ) ?? 0 - const apr = Number(feeApr) + Number(incentiveApr) - - return { - pair: { - ...pair, - volume1w, - id: `${chainShortName[args.chainId]}:${pair.id}`, - chainId: args.chainId, - chainName: chainName[args.chainId], - chainShortName: chainShortName[args.chainId], - apr: String(apr), - feeApr: String(feeApr), - incentiveApr: String(incentiveApr), - farm: farm - ? { - id: farm.id, - incentives: farm.incentives.map((incentive) => ({ - apr: String(incentive.apr), - rewardPerDay: String(incentive.rewardPerDay), - rewardToken: { - address: incentive.rewardToken.address, - symbol: incentive.rewardToken.symbol, - decimals: Number(incentive.rewardToken.decimals), - }, - rewarderAddress: incentive.rewarder.address, - rewarderType: incentive.rewarder.type, - })), - chefType: String(farm.chefType), - poolType: String(farm.poolType), - } - : null, - }, - } - }) - : [], - } -} diff --git a/packages/graph-client/resolvers/depreciated/index.ts b/packages/graph-client/resolvers/depreciated/index.ts deleted file mode 100644 index f53656bb62..0000000000 --- a/packages/graph-client/resolvers/depreciated/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { crossChainToken } from './crossChainToken.js' - -export const resolvers: Resolvers = { - Query: { - crossChainToken, - }, -} diff --git a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts b/packages/graph-client/resolvers/factories/factoriesByChainIds.ts deleted file mode 100644 index 2bf6bad162..0000000000 --- a/packages/graph-client/resolvers/factories/factoriesByChainIds.ts +++ /dev/null @@ -1,54 +0,0 @@ -// @ts-nocheck -import { isPromiseFulfilled } from 'sushi/validate' - -import { Query, QueryResolvers, Resolvers } from '../../.graphclient/index.js' -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' - -export const factoriesByChainIds: QueryResolvers['factoriesByChainIds'] = - async (root, args, context, info): Promise => { - return Promise.allSettled([ - ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_SUPPORTED_CHAIN_IDS)[number] => - SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), - ) - .map((chainId) => - context.SushiSwapV2.Query.uniswapFactories({ - root, - args, - context: { - ...context, - chainId, - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - }).then((factories: Factory[]) => { - return factories?.length > 0 - ? factories.map((factory) => ({ - ...factory, - chainId, - })) - : [] - }), - ), - ]).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.error('factories query failed...', promiseSettledResults) - return [] - } - return promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value) - }) - } - -export const resolvers: Resolvers = { - UniswapFactory: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - factoriesByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts b/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts deleted file mode 100644 index 81e60cae5c..0000000000 --- a/packages/graph-client/resolvers/factories/factoryDaySnapshotsByChainIds.ts +++ /dev/null @@ -1,107 +0,0 @@ -import { ChainId, chainName, chainShortName } from 'sushi/chain' - -import { isPromiseFulfilled } from 'sushi/validate' -import { - Query, - QueryResolvers, - SushiSwapV3DayDatasQuery, - UniswapDayData, - getBuiltGraphSDK, -} from '../../.graphclient/index.js' -import { - SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, -} from 'sushi/config/subgraph' -import { - SushiSwapV3ChainId, - isSushiSwapV2ChainId, - isSushiSwapV3ChainId, -} from 'sushi/config' - -const transformV3DayToSnapshot = ( - days: SushiSwapV3DayDatasQuery['uniswapDayDatas'], - chainId: number, -): Query['factoryDaySnapshotsByChainIds'] => - days.map((day) => ({ - chainId: chainId, - id: day.id, - date: day.date, - - dailyVolumeUSD: day.volumeUSD, - dailyVolumeUntracked: day.volumeUSDUntracked, - dailyVolumeETH: day.volumeETH, - - totalLiquidityUSD: day.tvlUSD, - totalVolumeUSD: 0, - totalVolumeETH: 0, - totalLiquidityETH: 0, - txCount: day.txCount, - })) - -export const factoryDaySnapshotsByChainIds: QueryResolvers['factoryDaySnapshotsByChainIds'] = - async ( - root, - args, - context, - info, - ): Promise => { - const fetchSushiSwapV2Snapshots = async (chainId: number) => { - const snapshots: UniswapDayData[] = - await context.SushiSwapV2.Query.uniswapDayDatas({ - root, - args, - context: { - ...context, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - }) - - return ( - snapshots?.map((snapshot) => ({ - ...snapshot, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - })) || [] - ) - } - - const fetchSushiSwapV3Snapshots = async (chainId: SushiSwapV3ChainId) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }) - - const { uniswapDayDatas } = await sdk.SushiSwapV3DayDatas({ - first: args.first, - skip: args.skip, - orderBy: args.orderBy === 'totalLiquidityUSD' ? 'tvlUSD' : 'date', - orderDirection: args.orderDirection, - }) - return transformV3DayToSnapshot(uniswapDayDatas, chainId) - } - - const queries = args.chainIds.flatMap((chainId: ChainId) => { - const queries: Promise[] = [] - - if (isSushiSwapV2ChainId(chainId)) { - queries.push(fetchSushiSwapV2Snapshots(chainId)) - } - - if (isSushiSwapV3ChainId(chainId)) { - queries.push(fetchSushiSwapV3Snapshots(chainId)) - } - - return queries - }) - - return Promise.allSettled(queries).then((snapshots) => - snapshots - .filter(isPromiseFulfilled) - .map((snapshot) => snapshot.value) - .flat(), - ) - } diff --git a/packages/graph-client/resolvers/factories/index.ts b/packages/graph-client/resolvers/factories/index.ts deleted file mode 100644 index a885ff86c7..0000000000 --- a/packages/graph-client/resolvers/factories/index.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { factoriesByChainIds } from './factoriesByChainIds.js' -import { factoryDaySnapshotsByChainIds } from './factoryDaySnapshotsByChainIds.js' -export const resolvers: Resolvers = { - UniswapFactory: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - factoriesByChainIds, - factoryDaySnapshotsByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/furo/index.ts b/packages/graph-client/resolvers/furo/index.ts deleted file mode 100644 index 8f2db96f2d..0000000000 --- a/packages/graph-client/resolvers/furo/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { furoTokensByChainIds } from './tokensByChainIds.js' - -export const resolvers: Resolvers = { - Query: { - furoTokensByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/furo/tokensByChainIds.ts b/packages/graph-client/resolvers/furo/tokensByChainIds.ts deleted file mode 100644 index 87e48a3b27..0000000000 --- a/packages/graph-client/resolvers/furo/tokensByChainIds.ts +++ /dev/null @@ -1,57 +0,0 @@ -// @ts-nocheck - -import { GraphQLResolveInfo } from 'graphql' -import { isPromiseFulfilled } from 'sushi/validate' - -import { - Query, - QueryResolvers, - QueryfuroTokensByChainIdsArgs, - RequireFields, -} from '../../.graphclient/index.js' -import { FuroStreamTypes } from '../../.graphclient/sources/FuroStream/types.js' -import { FURO_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const _furoTokensByChainIds = async ( - root = {}, - args: RequireFields, - context: FuroStreamTypes.Context, - info: GraphQLResolveInfo, -): Promise => { - return Promise.allSettled( - args.chainIds - .filter( - ( - chainId, - ): chainId is keyof typeof FURO_SUBGRAPH_URL & - keyof typeof FURO_SUBGRAPH_URL => chainId in FURO_SUBGRAPH_URL, - ) - .map((chainId) => { - return context.FuroStream.Query.tokens({ - root, - args, - context: { - ...context, - chainId, - url: FURO_SUBGRAPH_URL[chainId], - }, - info, - }).then((tokens: FuroStreamTypes.Token[]) => { - if (!Array.isArray(tokens)) { - console.error(`Furo tokens query failed on ${chainId}`, tokens) - return [] - } - return tokens.map((token) => ({ ...token, chainId })) - }) - }), - ).then((promiseSettledResults) => - promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value), - ) -} - -export const furoTokensByChainIds: QueryResolvers['furoTokensByChainIds'] = - async (root, args, context, info): Promise => - _furoTokensByChainIds(root, args, context, info) diff --git a/packages/graph-client/resolvers/graphnode/index.ts b/packages/graph-client/resolvers/graphnode/index.ts deleted file mode 100644 index a807cd43e1..0000000000 --- a/packages/graph-client/resolvers/graphnode/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { subgraphs } from './subgraphs.js' - -export const resolvers: Resolvers = { - Query: { - subgraphs, - }, -} diff --git a/packages/graph-client/resolvers/graphnode/subgraphs.ts b/packages/graph-client/resolvers/graphnode/subgraphs.ts deleted file mode 100644 index bf9b1f8f0b..0000000000 --- a/packages/graph-client/resolvers/graphnode/subgraphs.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { - Resolvers, - SubgraphStatus, - SubgraphWithNode, - getBuiltGraphSDK, -} from '../../.graphclient/index.js' - -export const subgraphs: Resolvers['Query']['subgraphs'] = async ( - root, - args, -) => { - const fetch = async ({ subgraphName, nodeUrl }: SubgraphWithNode) => { - const sdk = getBuiltGraphSDK({ node: nodeUrl }) - - switch (args.type) { - case 'Current': { - return sdk.CurrentSubgraphIndexingStatus({ subgraphName }) - } - case 'Pending': { - return sdk.PendingSubgraphIndexingStatus({ subgraphName }) - } - } - } - - return ( - await Promise.all( - args.subgraphs.map(async (subgraph, i) => { - // artificial delay to prevent 429s, probably helps - await new Promise((resolve) => setTimeout(resolve, i * 10)) - - return fetch(subgraph).then((statusObject) => { - const data = Object.values(statusObject)[0] - - if (!data) return undefined - const hasFailed = data.fatalError?.message ? true : false - const status: SubgraphStatus = hasFailed - ? 'Failed' - : // @ts-ignore - data.chains[0].chainHeadBlock.number - - data.chains[0].latestBlock.number <= - 50 - ? 'Synced' - : 'Syncing' - - return { - subgraphName: subgraph.subgraphName, - subgraphId: data.subgraph, - type: args.type, - status, - startBlock: data?.chains?.[0]?.earliestBlock?.number as number, - lastSyncedBlock: data?.chains?.[0]?.latestBlock?.number as number, - chainHeadBlock: data?.chains?.[0]?.chainHeadBlock?.number as number, - hasFailed, - nonFatalErrorCount: data.nonFatalErrors.length, - entityCount: data.entityCount as number, - } - }) - }), - ) - ).filter(Boolean) -} diff --git a/packages/graph-client/resolvers/index.ts b/packages/graph-client/resolvers/index.ts deleted file mode 100644 index b727f2de08..0000000000 --- a/packages/graph-client/resolvers/index.ts +++ /dev/null @@ -1,33 +0,0 @@ -import { mergeResolvers } from '@graphql-tools/merge' - -import type { Resolvers } from '../.graphclient/index.js' -import { resolvers as bentobox } from './bentobox/index.js' -import { resolvers as blocks } from './blocks/index.js' -import { resolvers as bundles } from './bundles/index.js' -import { resolvers as deprecated } from './depreciated/index.js' -import { resolvers as factories } from './factories/index.js' -import { resolvers as furo } from './furo/index.js' -import { resolvers as graphnode } from './graphnode/index.js' -import { resolvers as liquidityPositions } from './liquidity-positions/index.js' -import { resolvers as masterchef } from './masterchef/index.js' -import { resolvers as pairs } from './pairs/index.js' -import { resolvers as tokens } from './tokens/index.js' -import { resolvers as user } from './user/index.js' -import { resolvers as v3 } from './v3/index.js' - -// export const resolvers: Resolvers = mergeResolvers([ -export const resolvers: Resolvers = mergeResolvers([ - bentobox, - blocks, - bundles, - deprecated, - factories, - liquidityPositions, - masterchef, - pairs, - tokens, - user, - furo, - graphnode, - v3 -]) diff --git a/packages/graph-client/resolvers/liquidity-positions/index.ts b/packages/graph-client/resolvers/liquidity-positions/index.ts deleted file mode 100644 index 4761aab7a8..0000000000 --- a/packages/graph-client/resolvers/liquidity-positions/index.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { liquidityPositionsByChainIds } from './liquidityPositionsByChainIds.js' - -export const resolvers: Resolvers = { - LiquidityPosition: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - liquidityPositionsByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts b/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts deleted file mode 100644 index 70405ecf0a..0000000000 --- a/packages/graph-client/resolvers/liquidity-positions/liquidityPositionsByChainIds.ts +++ /dev/null @@ -1,71 +0,0 @@ -// @ts-nocheck -import { GraphQLResolveInfo } from 'graphql' -import { isPromiseFulfilled } from 'sushi/validate' - -import { - Query, - QueryResolvers, - QueryliquidityPositionsByChainIdsArgs, - RequireFields, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' - -export const _liquidityPositionsByChainIds = async ( - root = {}, - args: RequireFields< - QueryliquidityPositionsByChainIdsArgs, - 'skip' | 'first' | 'chainIds' - >, - context: SushiSwapV2Types.Context, - info: GraphQLResolveInfo, -) => { - const liquidityPositions = await Promise.allSettled< - Query['liquidityPositionsByChainIds'][] - >([ - ...args.chainIds - .filter((el): el is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => - SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el), - ) - .map((chainId) => - context.SushiSwapV2.Query.liquidityPositions({ - root, - args, - context: { - ...context, - chainId, - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - }).then((liquidityPositions: SushiSwapV2Types.LiquidityPosition[]) => { - if (!Array.isArray(liquidityPositions)) { - console.error( - `SushiSwap liquidityPositions query failed on ${chainId}`, - liquidityPositions, - ) - return [] - } - return liquidityPositions.map((liquidityPosition) => ({ - ...liquidityPosition, - chainId, - })) - }), - ), - ]).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.error('crossChainLiquidityPositions query failed') - return [] - } - return promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value) - }) - - return liquidityPositions -} - -export const liquidityPositionsByChainIds: QueryResolvers['liquidityPositionsByChainIds'] = - async (root, args, context, info) => { - return _liquidityPositionsByChainIds(root, args, context, info) - } diff --git a/packages/graph-client/resolvers/masterchef/index.ts b/packages/graph-client/resolvers/masterchef/index.ts deleted file mode 100644 index 6c00620a5d..0000000000 --- a/packages/graph-client/resolvers/masterchef/index.ts +++ /dev/null @@ -1,119 +0,0 @@ -// @ts-nocheck - -import { ChainId, chainName } from 'sushi/chain' -import { isPromiseFulfilled } from 'sushi/validate' - -import { Query, QueryResolvers, Resolvers } from '../../.graphclient/index.js' -import { - MASTERCHEF_V1_SUBGRAPH_URL, - MINICHEF_SUBGRAPH_URL, -} from 'sushi/config/subgraph' - -export const crossChainChefUser: QueryResolvers['crossChainChefUser'] = async ( - root, - args, - context, - info, -): Promise => { - // console.debug('_crossChainChefUser') - return Promise.allSettled([ - ...args.chainIds - .filter((chainId) => chainId === ChainId.ETHEREUM) - .flatMap((chainId) => [ - context.MasterChefV1.Query.MASTERCHEF_V1_users({ - root, - args, - context: { - ...context, - chainId: ChainId.ETHEREUM, - url: MASTERCHEF_V1_SUBGRAPH_URL, - }, - info, - }).then((users: Query['MASTERCHEF_V1_users']) => { - if (!Array.isArray(users)) { - console.error( - `MasterChefV1 users query failed on ${chainId}`, - users, - ) - return [] - } - return users.map((user) => ({ - ...user, - chainId, - chainName: chainName[chainId], - })) - }), - context.MasterChefV2.Query.MASTERCHEF_V2_users({ - root, - args, - context: { - ...context, - chainId: ChainId.ETHEREUM, - url: MASTERCHEF_V2_SUBGRAPH_URL, - }, - info, - }).then((users: Query['MASTERCHEF_V2_users']) => { - if (!Array.isArray(users)) { - console.error( - `MasterChefV2 users query failed on ${chainId}`, - users, - ) - return [] - } - return users.map((user) => ({ - ...user, - chainId, - chainName: chainName[chainId], - })) - }), - ]), - ...args.chainIds - .filter( - (chainId): chainId is keyof typeof MINICHEF_SUBGRAPH_URL => - chainId in MINICHEF_SUBGRAPH_URL, - ) - .map((chainId) => - // Weird that we're doing this.... - context.MasterChefV1.Query.MASTERCHEF_V1_users({ - root, - args, - context: { - ...context, - chainId, - url: MINICHEF_SUBGRAPH_URL[chainId], - }, - info, - }).then((users: Query['MASTERCHEF_V1_users']) => { - if (!Array.isArray(users)) { - console.error(`MiniChefV2 users query failed on ${chainId}`, users) - return [] - } - return users.map((user) => ({ - ...user, - chainId, - chainName: chainName[chainId], - })) - }), - ), - ]).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.log('crossChainChefUser query failed...', promiseSettledResults) - return [] - } - return promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value) - // .filter((user) => user.pool) - }) -} - -export const resolvers: Resolvers = { - ChefUser: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - crossChainChefUser, - }, -} diff --git a/packages/graph-client/resolvers/pairs/index.ts b/packages/graph-client/resolvers/pairs/index.ts deleted file mode 100644 index a22abf5da1..0000000000 --- a/packages/graph-client/resolvers/pairs/index.ts +++ /dev/null @@ -1,19 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { pairById } from './pairById.js' -import { pairsByChainId } from './pairsByChainId.js' -import { pairsByChainIds } from './pairsByChainIds.js' -import { pairsByIds } from './pairsByIds.js' - -export const resolvers: Resolvers = { - Pair: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - // address: (root, args, context, info) => String(root.address || context.address), - }, - Query: { - pairById, - pairsByIds, - pairsByChainId, - pairsByChainIds, - }, -} diff --git a/packages/graph-client/resolvers/pairs/pairById.ts b/packages/graph-client/resolvers/pairs/pairById.ts deleted file mode 100644 index da59a2b868..0000000000 --- a/packages/graph-client/resolvers/pairs/pairById.ts +++ /dev/null @@ -1,303 +0,0 @@ -// @ts-nocheck - -import { type ChainId, chainName, chainShortNameToChainId } from 'sushi/chain' -import { withoutScientificNotation } from 'sushi/format' -import { isPromiseFulfilled } from 'sushi/validate' -import { - Pair, - QueryResolvers, - getBuiltGraphSDK, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' -import { SushiSwapV3Types } from '../../.graphclient/sources/SushiSwapV3/types.js' -import { transformPair } from '../../transformers/index.js' -import { - SUSHISWAP_V2_SUBGRAPH_URL, - SUSHISWAP_V3_SUBGRAPH_URL, -} from 'sushi/config/subgraph' -import { - SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, - SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, - isSushiSwapV2ChainId, - isSushiSwapV3ChainId, -} from 'sushi/config' - -const sdk = getBuiltGraphSDK() - -const transformV3PoolToPair = ( - pool: SushiSwapV3Types.Pool, - chainId: number, -): Pair => ({ - id: `${chainId}:${pool.id}`, - chainId, - address: pool.id, - chainId: chainId, - type: 'ALL', - swapFee: pool.feeTier / 100, - twapEnabled: true, - name: pool.token0.symbol + '-' + pool.token1.symbol, - token0: pool.token0, - token1: pool.token1, - source: 'SUSHISWAP_V3', - reserve0: withoutScientificNotation( - ( - Number(pool.totalValueLockedToken0) * - 10 ** pool.token0.decimals - ).toFixed(), - ) - .toString() - .split('.')[0], - reserve1: withoutScientificNotation( - ( - Number(pool.totalValueLockedToken1) * - 10 ** pool.token1.decimals - ).toFixed(), - ) - .toString() - .split('.')[0], - liquidity: pool.liquidity, - liquidityUSD: pool.totalValueLockedUSD, - liquidityNative: pool.totalValueLockedETH, - volumeUSD: pool.volumeUSD, - volumeToken0: pool.volumeToken0, - volumeToken1: pool.volumeToken1, - feesUSD: pool.feesUSD, - txCount: pool.txCount, - apr: 0, - aprUpdatedAtTimestamp: 0, - totalSupply: pool.liquidity, - reserveETH: pool.totalValueLockedETH, - reserveUSD: pool.totalValueLockedUSD, - createdAtTimestamp: pool.createdAtTimestamp, - createdAtBlockNumber: 0, - hourSnapshots: pool.poolHourData.map((hourData) => ({ - id: hourData.id, - date: hourData.periodStartUnix, - volumeUSD: hourData.volumeUSD, - liquidityNative: 0, - liquidityUSD: hourData.tvlUSD, - transactionCount: hourData.txCount, - })), - daySnapshots: pool.poolDayData.map((dayData) => ({ - id: dayData.id, - date: dayData.date, - volumeUSD: dayData.volumeUSD, - liquidityNative: 0, - liquidityUSD: dayData.tvlUSD, - transactionCount: dayData.txCount, - })), -}) - -export const pairById: QueryResolvers['pairById'] = async ( - root, - args, - context, - info, -): Promise => { - const fetchIsV2Pool = async () => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] - ], - }) - - const { pair } = await sdk.PairOnlyId({ - id: address.toLowerCase(), - }) - return pair && pair.id ? true : false - } - - const now = Date.now() - - const [chainShortName, address] = args.id.split(':') as [string, string] - - const chainId = chainShortNameToChainId[chainShortName] - - const [ - { - oneDayBlocks: [oneDayBlock], - }, - { - twoDayBlocks: [twoDayBlock], - }, - { - oneWeekBlocks: [oneWeekBlock], - }, - isPoolV2, - ] = await Promise.all([ - sdk.OneDayBlocks({ chainIds: [chainId] }), - sdk.TwoDayBlocks({ chainIds: [chainId] }), - sdk.OneWeekBlocks({ chainIds: [chainId] }), - fetchIsV2Pool(), - ]) - - const fetchSushiSwapPair = async (block?: { number: number }) => - context.SushiSwapV2.Query.pair({ - root, - args: { ...args, id: address.toLowerCase(), block }, - context: { - ...context, - now, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] - ], - }, - info, - }).then((pair: SushiSwapV2Types.Pair | null) => { - if (!pair) return pair - return { - ...pair, - chainId, - address, - type: 'ALL', - swapFee: 30, - twapEnabled: true, - reserve0: withoutScientificNotation( - (Number(pair.reserve0) * 10 ** pair.token0.decimals).toFixed(), - ) - .toString() - .split('.')[0], - reserve1: withoutScientificNotation( - (Number(pair.reserve1) * 10 ** pair.token1.decimals).toFixed(), - ) - .toString() - .split('.')[0], - name: pair.token0.symbol + '-' + pair.token1.symbol, - source: 'SUSHISWAP_V2', - liquidity: withoutScientificNotation( - (Number(pair.totalSupply) * 10 ** 18).toFixed(), - ) - .toString() - .split('.')[0], - liquidityUSD: pair.reserveUSD, - liquidityNative: pair.reserveETH, - apr: 0, - aprUpdatedAtTimestamp: 0, - feesUSD: pair.volumeUSD * 0.003, - } - }) - - const fetchV2DayBuckets = async () => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] - ], - }) - - const { pairDayDatas } = await sdk.V2PoolDayData({ - first: 730, - where: { - pairAddress: address.toLowerCase(), - }, - orderBy: 'date', - orderDirection: 'desc', - }) - return pairDayDatas.map((bucket) => ({ - id: bucket.id, - date: bucket.date, - volumeUSD: bucket.dailyVolumeUSD, - liquidityUSD: bucket.reserveUSD, - liquidityNative: 0, - transactionCount: bucket.dailyTxns, - })) - } - - const fetchV2DayHourBuckets = async () => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V2_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] - ], - }) - - const { pairHourDatas } = await sdk.V2PoolHourData({ - first: 168, - where: { - pair: address.toLowerCase(), - }, - orderBy: 'hourStartUnix', - orderDirection: 'desc', - }) - return pairHourDatas.map((bucket) => ({ - id: bucket.id, - date: bucket.hourStartUnix, - volumeUSD: bucket.hourlyVolumeUSD, - liquidityUSD: bucket.reserveUSD, - liquidityNative: 0, - transactionCount: bucket.hourlyTxns, - })) - } - - const fetchSushiSwapV3Pair = async (block?: { number: number }) => { - const sdk = getBuiltGraphSDK({ - url: SUSHISWAP_V3_SUBGRAPH_URL[ - chainId as (typeof SUSHISWAP_V3_SUPPORTED_CHAIN_IDS)[number] - ], - }) - - const { pool } = block - ? await sdk.SushiSwapV3Pool({ - id: address.toLowerCase(), - block: { number: Number(block.number) }, - }) - : await sdk.SushiSwapV3PoolWithBuckets({ - id: address.toLowerCase(), - }) - - return transformV3PoolToPair(pool, chainId) - } - - const poolFetcher = async (isV2: boolean, block?: { number: number }) => { - const fetches: ReturnType[] = [] - - if (isV2 && isSushiSwapV2ChainId(chainId as ChainId)) { - fetches.push(fetchSushiSwapPair(block)) - } - - if (!isV2 && isSushiSwapV3ChainId(chainId as ChainId)) { - fetches.push(fetchSushiSwapV3Pair(block)) - } - - return Promise.allSettled(fetches).then((results) => { - return results - .filter(isPromiseFulfilled) - .map((promiseFulfilled) => promiseFulfilled.value) - .filter(Boolean) - .shift() - }) - } - - const bucketFetcher = async (isV2: boolean) => { - if (isV2 && SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(chainId)) { - const [hourSnapshots, daySnapshots] = await Promise.all([ - fetchV2DayHourBuckets(), - fetchV2DayBuckets(), - ]) - return { hourSnapshots, daySnapshots } - } - return { hourSnapshots: [], daySnapshots: [] } - } - - const [pair, pair1d, pair2d, pair1w, buckets] = await Promise.all([ - poolFetcher(isPoolV2), - poolFetcher(isPoolV2, oneDayBlock), - poolFetcher(isPoolV2, twoDayBlock), - poolFetcher(isPoolV2, oneWeekBlock), - bucketFetcher(isPoolV2), - ]) - if (!pair) return null - return transformPair({ - pair: isPoolV2 - ? { - ...pair, - daySnapshots: buckets.daySnapshots, - hourSnapshots: buckets.hourSnapshots, - } - : pair, - pair1d, - pair2d, - pair1w, - }) -} diff --git a/packages/graph-client/resolvers/pairs/pairsByChainId.ts b/packages/graph-client/resolvers/pairs/pairsByChainId.ts deleted file mode 100644 index 760f165377..0000000000 --- a/packages/graph-client/resolvers/pairs/pairsByChainId.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { GraphQLResolveInfo } from 'graphql' - -import { - Query, - QueryResolvers, - QuerypairsByChainIdArgs, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' -import { _pairsByChainIds } from './pairsByChainIds.js' - -export const _pairsByChainId = async ( - root = {}, - args: QuerypairsByChainIdArgs, - context: SushiSwapV2Types.Context, - info: GraphQLResolveInfo, -): Promise => { - return _pairsByChainIds( - root, - { ...args, chainIds: [args.chainId] }, - context, - info, - ) -} - -export const pairsByChainId: QueryResolvers['pairsByChainId'] = async ( - root, - args, - context, - info, -): Promise => { - return _pairsByChainId(root, args, context, info) -} diff --git a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts b/packages/graph-client/resolvers/pairs/pairsByChainIds.ts deleted file mode 100644 index 03b3c2f5c5..0000000000 --- a/packages/graph-client/resolvers/pairs/pairsByChainIds.ts +++ /dev/null @@ -1,87 +0,0 @@ -// @ts-nocheck -import { GraphQLResolveInfo } from 'graphql' -import { ChainId } from 'sushi/chain' - -import { - Query, - QueryResolvers, - QuerypairsByChainIdsArgs, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' - -const BLACKLIST = { - [ChainId.ARBITRUM]: [ - '0xb0f550f8b437ed614bb3105ab781c9428c40e8eb', - '0xe74066750e339c8347d961c625f0ebbc64155b20', - '0x82439e9471b724b595b4812ef5f5feac417b8131', - '0xaa78062a0d632a453ab40f03d576a59350001f31', - '0xe013d8ead448d9d3cf23eac40530c29ead8d0df5', - '0xcc5caa099abe383ecb0d84ee37aafb0c50ae34ef', - '0x6c8e8427db3c7825a60d3efedec3af7c472f99f4', - ], -} - -// An empty array breaks it -const getBlacklist = (chainId: ChainId, id_not_in?: string[]) => - BLACKLIST[chainId] ? [...(id_not_in ?? []), ...BLACKLIST[chainId]] : id_not_in - -export const _pairsByChainIds = async ( - root = {}, - args: QuerypairsByChainIdsArgs, - context: SushiSwapV2Types.Context, - info: GraphQLResolveInfo, -): Promise => { - return Promise.all([ - ...args.chainIds - .filter( - ( - chainId, - ): chainId is (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number] => - SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(chainId), - ) - .map((chainId) => - context.SushiSwapV2.Query.pairs({ - root, - args: { - ...args, - where: args?.where?.type_in - ? { - ...args.where, - type_in: args.where.type_in.filter( - (el) => el === 'CONSTANT_PRODUCT_POOL', - ), - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - } - : { - ...args.where, - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - }, - }, - context: { - ...context, - chainId, - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - }).then((pairs: SushiSwapV2Types.Pair[]) => { - if (!Array.isArray(pairs)) { - console.error(`SushiSwap pairs query failed on ${chainId}`, pairs) - return [] - } - // console.debug(`SushiSwap pairs ${chainId}`, pairs) - return pairs.map((pair) => ({ ...pair, chainId, address: pair.id })) - }), - ), - ]).then((promise) => promise.flatMap((pairs) => pairs)) -} - -export const pairsByChainIds: QueryResolvers['pairsByChainIds'] = async ( - root, - args, - context, - info, -): Promise => { - return _pairsByChainIds(root, args, context, info) -} diff --git a/packages/graph-client/resolvers/pairs/pairsByIds.ts b/packages/graph-client/resolvers/pairs/pairsByIds.ts deleted file mode 100644 index e2f342e483..0000000000 --- a/packages/graph-client/resolvers/pairs/pairsByIds.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Pair, QueryResolvers } from '../../.graphclient/index.js' - -export const pairsByIds: QueryResolvers['pairsByIds'] = async ( - root, - args, - context, - info, -): Promise => { - return [] as Pair[] -} diff --git a/packages/graph-client/resolvers/tokens/index.ts b/packages/graph-client/resolvers/tokens/index.ts deleted file mode 100644 index 47fe2d685d..0000000000 --- a/packages/graph-client/resolvers/tokens/index.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -// import { tokenById } from './tokenById' -import { tokensByChainId } from './tokensByChainId.js' -import { tokensByChainIds } from './tokensByChainIds.js' -// import { tokensByIds } from './tokensByIds' - -export const resolvers: Resolvers = { - Token: { - chainId: (root, args, context, info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - tokensByChainIds, - tokensByChainId, - // tokensByIds, - // tokenById, - }, -} diff --git a/packages/graph-client/resolvers/tokens/tokensByChainId.ts b/packages/graph-client/resolvers/tokens/tokensByChainId.ts deleted file mode 100644 index c1f0641783..0000000000 --- a/packages/graph-client/resolvers/tokens/tokensByChainId.ts +++ /dev/null @@ -1,32 +0,0 @@ -import { GraphQLResolveInfo } from 'graphql' - -import { - Query, - QueryResolvers, - QuerytokensByChainIdArgs, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwapV2/types.js' -import { _tokensByChainIds } from './tokensByChainIds.js' - -export const _tokensByChainId = async ( - root = {}, - args: QuerytokensByChainIdArgs, - context: SushiSwapV2Types.Context, - info: GraphQLResolveInfo, -): Promise => { - return _tokensByChainIds( - root, - { ...args, chainIds: [args.chainId] }, - context, - info, - ) -} - -export const tokensByChainId: QueryResolvers['tokensByChainId'] = async ( - root, - args, - context, - info, -): Promise => { - return _tokensByChainId(root, args, context, info) -} diff --git a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts b/packages/graph-client/resolvers/tokens/tokensByChainIds.ts deleted file mode 100644 index 7f11f4f453..0000000000 --- a/packages/graph-client/resolvers/tokens/tokensByChainIds.ts +++ /dev/null @@ -1,101 +0,0 @@ -// @ts-nocheck -import { GraphQLResolveInfo } from 'graphql' -import { ChainId, chainName, chainShortName } from 'sushi/chain' - -import { - Query, - QueryResolvers, - QuerytokensByChainIdsArgs, - Token, -} from '../../.graphclient/index.js' -import { SushiSwapV2Types } from '../../.graphclient/sources/SushiSwap/types.js' -import { page } from '../../lib/page.js' -import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS } from 'sushi/config' -import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' - -const BLACKLIST = { - [ChainId.ARBITRUM]: ['0xeba61eb686b515fae79a96118f140924a634ab23'], -} - -// An empty array breaks it -const getBlacklist = (chainId: ChainId, id_not_in?: string[]) => - BLACKLIST[chainId] ? [...(id_not_in ?? []), ...BLACKLIST[chainId]] : id_not_in - -export const _tokensByChainIds = async ( - root = {}, - args: QuerytokensByChainIdsArgs, - context: SushiSwapV2Types.Context, - info: GraphQLResolveInfo, -): Promise => { - // @ts-ignore - return Promise.all([ - ...args.chainIds - .filter((el) => SUSHISWAP_V2_SUPPORTED_CHAIN_IDS.includes(el)) - .map((chainId: (typeof SUSHISWAP_V2_SUPPORTED_CHAIN_IDS)[number]) => - context.SushiSwapV2.Query.tokens({ - root, - // @ts-ignore - args: { - ...args, - where: { - ...args.where, - id_not_in: getBlacklist(chainId, args?.where?.id_not_in), - }, - }, - context: { - ...context, - // @ts-ignore - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - url: SUSHISWAP_V2_SUBGRAPH_URL[chainId], - }, - info, - // @ts-ignore - }).then((tokens: Token[]) => { - if (!Array.isArray(tokens)) { - console.error(`SushiSwap tokens query failed on ${chainId}`, tokens) - return [] - } - - return tokens.length > 0 - ? tokens.map((token) => ({ - ...token, - id: `${chainShortName[chainId]}:${token.id}`, - chainId, - chainName: chainName[chainId], - chainShortName: chainShortName[chainId], - source: 'LEGACY', - })) - : [] - }), - ), - ]).then((value) => - page( - value.flat().sort((a, b) => { - if (args.orderDirection === 'asc') { - return ( - a[args.orderBy || 'liquidityUSD'] - - b[args.orderBy || 'liquidityUSD'] - ) - } else if (args.orderDirection === 'desc') { - return ( - b[args.orderBy || 'liquidityUSD'] - - a[args.orderBy || 'liquidityUSD'] - ) - } - return 0 - }), - args.pagination, - ), - ) -} - -export const tokensByChainIds: QueryResolvers['tokensByChainIds'] = async ( - root, - args, - context, - info, -) => { - return _tokensByChainIds(root, args, context, info) -} diff --git a/packages/graph-client/resolvers/tokens/tokensByIds.ts b/packages/graph-client/resolvers/tokens/tokensByIds.ts deleted file mode 100644 index 8ad8ac3066..0000000000 --- a/packages/graph-client/resolvers/tokens/tokensByIds.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { QueryResolvers, Token } from '../../.graphclient/index.js' - -export const tokensByIds: QueryResolvers['tokensByIds'] = async ( - root, - args, - context, - info, -): Promise => { - return [] as Token[] -} diff --git a/packages/graph-client/resolvers/user/crossChainUserPositions.ts b/packages/graph-client/resolvers/user/crossChainUserPositions.ts deleted file mode 100644 index 4071ca2d02..0000000000 --- a/packages/graph-client/resolvers/user/crossChainUserPositions.ts +++ /dev/null @@ -1,69 +0,0 @@ -import { - Query, - QueryResolvers, - UserPosition, - getBuiltGraphSDK, -} from '../../.graphclient/index.js' -import { fetchBalances } from '../../lib/wagmi.js' - -export const crossChainUserPositions: QueryResolvers['crossChainUserPositions'] = - async ( - root, - args, - context, - info, - ): Promise => { - const sdk = getBuiltGraphSDK() - - const [{ liquidityPositions }, { crossChainChefUser: chefUser }] = - await Promise.all([ - sdk.LiquidityPositions({ - chainIds: args.chainIds, - where: { - user: args.id.toLowerCase(), - // liquidityTokenBalance_gt: 0, - }, - }), - sdk.CrossChainChefUser({ - chainIds: args.chainIds, - where: { - address: args.id.toLowerCase(), - amount_gt: 0, - }, - }), - ]) - - const stakedBalances: Record = Object.fromEntries( - chefUser.map((chefUser) => [ - `${chefUser.chainId}:${chefUser?.pool?.pair}`, - chefUser?.amount, - ]), - ) - - // Subgraph is unreliable currently, have to fetch from the chain directly - const unstakedBalances = await fetchBalances( - liquidityPositions.map((lp) => ({ - token: lp.id.slice(0, 42), - chainId: lp.chainId, - user: args.id, - })), - ) - - const poolIds = Object.keys({ ...stakedBalances, ...unstakedBalances }) - - return poolIds.map((poolId) => { - const unstakedBalance = Number(unstakedBalances[poolId] ?? 0) - const stakedBalance = Number(stakedBalances[poolId] ?? 0) - - const balance = unstakedBalance + stakedBalance - - return { - id: `${args.id.toLowerCase()}:${poolId}`, - pool: poolId, - chainId: Number(poolId.split(':')[0]), - balance, - stakedBalance, - unstakedBalance, - } as UserPosition - }) - } diff --git a/packages/graph-client/resolvers/user/index.ts b/packages/graph-client/resolvers/user/index.ts deleted file mode 100644 index b1f4f4b9b3..0000000000 --- a/packages/graph-client/resolvers/user/index.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' -import { crossChainUserPositions } from './crossChainUserPositions.js' - -export const resolvers: Resolvers = { - Query: { - crossChainUserPositions, - }, -} diff --git a/packages/graph-client/resolvers/v3/index.ts b/packages/graph-client/resolvers/v3/index.ts deleted file mode 100644 index 5f2f093ed2..0000000000 --- a/packages/graph-client/resolvers/v3/index.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { Resolvers } from '../../.graphclient/index.js' - -import { poolsByTokenPair } from './poolsByTokenPair.js' -import { v3factoriesByChainIds } from './v3factoriesByChainIds.js' - -export const resolvers: Resolvers = { - Query: { - v3factoriesByChainIds: v3factoriesByChainIds, - poolsByTokenPair: poolsByTokenPair, - }, -} diff --git a/packages/graph-client/resolvers/v3/poolsByTokenPair.ts b/packages/graph-client/resolvers/v3/poolsByTokenPair.ts deleted file mode 100644 index 3f714346e0..0000000000 --- a/packages/graph-client/resolvers/v3/poolsByTokenPair.ts +++ /dev/null @@ -1,51 +0,0 @@ -import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' -import { Query, QueryResolvers } from '../../.graphclient/index.js' - -const MAX_FIRST = 1000 - -export const poolsByTokenPair: QueryResolvers['poolsByTokenPair'] = async ( - root, - args, - context, - info, -): Promise => { - const [chainId, tokenAddress0] = args.tokenId0.split(':') - const [, tokenAddress1] = args.tokenId1.split(':') - - // Sorted on the factory contract - const tokenAddresses = [tokenAddress0, tokenAddress1].sort() - - const fetch = (lastId: string) => - context.SushiSwapV3.Query.SUSHISWAP_V3_pools({ - root, - args: { - first: MAX_FIRST, - where: { - id_gt: lastId, - token0: tokenAddresses[0], - token1: tokenAddresses[1], - }, - orderBy: 'id', - orderDirection: 'asc', - }, - context: { - ...context, - chainId: Number(chainId), - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }, - info, - }) - - const data = [] - let lastId = '' - for (;;) { - const newData = await fetch(lastId) - data.push(...newData) - - if (newData.length < MAX_FIRST) break - - lastId = newData[newData.length - 1].id - } - - return data -} diff --git a/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts b/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts deleted file mode 100644 index 986a0cbbce..0000000000 --- a/packages/graph-client/resolvers/v3/v3factoriesByChainIds.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { isPromiseFulfilled } from 'sushi/validate' -import { - Query, - QueryResolvers, - SUSHISWAP_V3_Factory, -} from '../../.graphclient/index.js' -import { - SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, - SushiSwapV3ChainId, -} from 'sushi/config' -import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' - -export const v3factoriesByChainIds: QueryResolvers['v3factoriesByChainIds'] = - async ( - root, - args, - context, - info, - ): Promise => { - return Promise.allSettled( - args.chainIds - .filter((chainId): chainId is SushiSwapV3ChainId => - SUSHISWAP_V3_SUPPORTED_CHAIN_IDS.includes(chainId), - ) - .map((chainId) => { - return context.SushiSwapV3.Query.SUSHISWAP_V3_factories({ - root, - args, - context: { - ...context, - chainId, - url: SUSHISWAP_V3_SUBGRAPH_URL[chainId], - }, - info, - }).then((factories: SUSHISWAP_V3_Factory[]) => { - return factories?.length > 0 - ? factories.map((factory) => ({ - ...factory, - chainId, - })) - : [] - }) - }), - ).then((promiseSettledResults) => { - if (!Array.isArray(promiseSettledResults)) { - console.error('v3 factories query failed...', promiseSettledResults) - return [] - } - return promiseSettledResults - .flat() - .filter(isPromiseFulfilled) - .flatMap((promiseFulfilled) => promiseFulfilled.value) - }) - } diff --git a/packages/graph-client/transformers/index.ts b/packages/graph-client/transformers/index.ts deleted file mode 100644 index a0520cc244..0000000000 --- a/packages/graph-client/transformers/index.ts +++ /dev/null @@ -1,3 +0,0 @@ -export { transformIncentives } from './transformIncentives.js' -export { transformPair } from './transformPair.js' -export { transformToken } from './transformToken.js' diff --git a/packages/graph-client/transformers/transformApr.ts b/packages/graph-client/transformers/transformApr.ts deleted file mode 100644 index 361ef7525f..0000000000 --- a/packages/graph-client/transformers/transformApr.ts +++ /dev/null @@ -1,7 +0,0 @@ -export function transformApr(apr: { - fee: number - incentive: number - combined: number -}) { - return apr -} diff --git a/packages/graph-client/transformers/transformIncentives.ts b/packages/graph-client/transformers/transformIncentives.ts deleted file mode 100644 index 06bd2d06c5..0000000000 --- a/packages/graph-client/transformers/transformIncentives.ts +++ /dev/null @@ -1,18 +0,0 @@ -import type { Incentive } from '../lib/incentives.js' - -export function transformIncentives(incentives: Incentive[]) { - return incentives - ? incentives.map((incentive) => ({ - apr: String(incentive.apr), - rewardPerDay: String(incentive.rewardPerDay), - rewardToken: { - address: incentive.rewardToken.address, - symbol: incentive.rewardToken.symbol, - decimals: Number(incentive.rewardToken.decimals), - }, - rewarderAddress: incentive.rewarderAddress, - rewarderType: incentive.rewarderType, - type: incentive.type, - })) - : null -} diff --git a/packages/graph-client/transformers/transformPair.ts b/packages/graph-client/transformers/transformPair.ts deleted file mode 100644 index 9471fd2349..0000000000 --- a/packages/graph-client/transformers/transformPair.ts +++ /dev/null @@ -1,95 +0,0 @@ -import { chainShortName } from 'sushi/chain' - -import type { BucketData, Pair } from '../.graphclient/index.js' - -export function transformPair({ - pair, - pair1d, - pair2d, - pair1w, - // hourSnapshots, - // daySnapshots, -}: { - pair: Pair - pair1d?: Pair - pair2d?: Pair - pair1w?: Pair - // hourSnapshots: BucketData[] - // daySnapshots: BucketData[] -}) { - const liquidity1dChange = pair1d - ? pair.liquidityUSD / pair1d.liquidityUSD - 1 - : 0 - const liquidity1wChange = pair1w - ? pair.liquidityUSD / pair1w.liquidityUSD - 1 - : 0 - - const volume1d = pair1d - ? Number(pair.volumeUSD) - Number(pair1d.volumeUSD) - : Number(pair.volumeUSD) - const volume2d = - pair1d && pair2d - ? Number(pair1d.volumeUSD) - Number(pair2d.volumeUSD) - : Number(pair.volumeUSD) - const volume1w = pair1w - ? Number(pair.volumeUSD) - Number(pair1w.volumeUSD) - : Number(pair.volumeUSD) - const volume1dChange = pair1d && pair2d ? volume1d / volume2d - 1 : null - - const fees1d = pair1d - ? Number(pair.feesUSD) - Number(pair1d.feesUSD) - : Number(pair.feesUSD) - const fees2d = - pair1d && pair2d - ? Number(pair1d.feesUSD) - Number(pair2d.feesUSD) - : Number(pair.feesUSD) - const fees1w = pair1w - ? Number(pair.feesUSD) - Number(pair1w.feesUSD) - : Number(pair.feesUSD) - const fees1dChange = pair1d && pair2d ? fees1d / fees2d - 1 : null - - const txCount1d = pair1d - ? Number(pair.txCount) - Number(pair1d.txCount) - : Number(pair.txCount) - const txCount2d = - pair1d && pair2d - ? Number(pair1d.txCount) - Number(pair2d.txCount) - : Number(pair.txCount) - const txCount1w = pair1w - ? Number(pair.txCount) - Number(pair1w.txCount) - : Number(pair.txCount) - const txCount1dChange = pair1d && pair2d ? txCount1d / txCount2d - 1 : null - - const utilisation1d = pair1d ? (volume1d / pair.liquidityUSD) * 100 : 0 - const utilisation2d = - pair1d && pair2d ? (volume2d / pair1d.liquidityUSD) * 100 : 0 - const utilisation1dChange = (utilisation1d / utilisation2d) * 100 - 100 - - // TODO: calculate apr - // const feeApr = pair?.apr - const feeApr = 0 - - return { - ...pair, - id: `${chainShortName[pair.chainId]}:${pair.id}`, - // _id: `${pool.chainId}:${pool.id}`, - address: pair.id, - liquidity1dChange, - liquidity1wChange, - volume1d, - volume1dChange, - volume1w, - fees1d, - fees1dChange, - fees1w, - txCount1d, - txCount1dChange, - txCount1w, - utilisation1d, - utilisation2d, - utilisation1dChange, - feeApr, - // hourSnapshots, - // daySnapshots, - } -} diff --git a/packages/graph-client/transformers/transformToken.ts b/packages/graph-client/transformers/transformToken.ts deleted file mode 100644 index 0653f4a666..0000000000 --- a/packages/graph-client/transformers/transformToken.ts +++ /dev/null @@ -1,5 +0,0 @@ -import type { Token } from '../.graphclient/index.js' - -export function transformToken(token: Token) { - return token -} diff --git a/packages/graph-client/tsconfig.json b/packages/graph-client/tsconfig.json deleted file mode 100644 index b09cb0b09b..0000000000 --- a/packages/graph-client/tsconfig.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "include": [ - "lib", - "resolvers", - "transformers", - "__tests__" - ], - "exclude": [ - "node_modules", - "__tests__" - ], - "compilerOptions": { - "outDir": ".", - "baseUrl": ".", - "rootDir": ".", - "lib": ["ESNext"], - "module": "ESNext", - "moduleResolution": "Bundler", - "target": "ESNext", - "esModuleInterop": true, - "resolveJsonModule": true, - "downlevelIteration": true, - "allowSyntheticDefaultImports": true, - "skipLibCheck": true, - "declaration": true, - "declarationMap": true, - "sourceMap": true, - } -} \ No newline at end of file diff --git a/packages/graph-client/turbo.json b/packages/graph-client/turbo.json deleted file mode 100644 index 5f4824a406..0000000000 --- a/packages/graph-client/turbo.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "extends": ["//"], - "pipeline": { - "build": { - "outputs": [ - ".graphclient/**/*", - "lib/**/*", - "resolvers/**/*", - "transformers/**/*" - ], - "dependsOn": ["^build"], - "env": [] - }, - "check": { - "dependsOn": ["build"], - "cache": true - } - } -} diff --git a/packages/steer-sdk/src/types/steer-vault.ts b/packages/steer-sdk/src/types/steer-vault.ts index 3c23dc2c91..df8e499930 100644 --- a/packages/steer-sdk/src/types/steer-vault.ts +++ b/packages/steer-sdk/src/types/steer-vault.ts @@ -6,10 +6,11 @@ export type SteerVault = T & { feeTier: number performanceFee: number + adjustmentFrequency: number lastAdjustmentTimestamp: number - lowerTick: bigint - upperTick: bigint + lowerTick: number + upperTick: number apr: number apr1d: number diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 04ec04660c..9c2a07114e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -702,9 +702,6 @@ importers: '@sushiswap/dexie': specifier: workspace:* version: link:../../packages/dexie - '@sushiswap/graph-client': - specifier: workspace:* - version: link:../../packages/graph-client '@sushiswap/graph-client-new': specifier: workspace:* version: link:../../packages/graph-client-new @@ -1476,9 +1473,9 @@ importers: '@sushiswap/database': specifier: workspace:* version: link:../database - '@sushiswap/graph-client': + '@sushiswap/graph-client-new': specifier: workspace:* - version: link:../graph-client + version: link:../graph-client-new '@sushiswap/steer-sdk': specifier: workspace:* version: link:../steer-sdk From 5d7a9918a24b6bdc2b1109b893f72c89780f1905 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 7 Jun 2024 17:31:44 +0000 Subject: [PATCH 062/119] feat(apps/evm): more rp2 jsons to server only --- apps/evm/analyze/nodejs.html | 39 ++ apps/evm/next.config.mjs | 2 +- .../src/app/claims/components/ClaimItem.tsx | 7 +- .../app/claims/rp2/check-approvals/route.ts | 76 ++++ .../src/app/claims/rp2/find-claims/route.ts | 42 ++ apps/evm/src/app/claims/rp2/page.tsx | 16 +- .../src/lib/wagmi/hooks/exploits/constants.ts | 21 - .../exploits/hooks/useRP2ExploitCheck.ts | 59 +-- .../hooks/useRP2ExploitClaimFinder.ts | 35 +- .../exploits/hooks/useRP2ExploitIsClaimed.ts | 1 + .../wagmi/hooks/exploits/rp2-merkle-trees.ts | 23 + pnpm-lock.yaml | 406 +----------------- 12 files changed, 218 insertions(+), 509 deletions(-) create mode 100644 apps/evm/analyze/nodejs.html create mode 100644 apps/evm/src/app/claims/rp2/check-approvals/route.ts create mode 100644 apps/evm/src/app/claims/rp2/find-claims/route.ts create mode 100644 apps/evm/src/lib/wagmi/hooks/exploits/rp2-merkle-trees.ts diff --git a/apps/evm/analyze/nodejs.html b/apps/evm/analyze/nodejs.html new file mode 100644 index 0000000000..986ae9083e --- /dev/null +++ b/apps/evm/analyze/nodejs.html @@ -0,0 +1,39 @@ + + + + + + evm [7 Jun 2024 at 16:44] + + + + + + + + +
+ + + \ No newline at end of file diff --git a/apps/evm/next.config.mjs b/apps/evm/next.config.mjs index 25518088f4..05c7a9375d 100644 --- a/apps/evm/next.config.mjs +++ b/apps/evm/next.config.mjs @@ -2,7 +2,7 @@ import defaultNextConfig from '@sushiswap/nextjs-config' import { withAxiom } from 'next-axiom' -import withBundleAnalyzer from '@next/bundle-analyzer' +// import withBundleAnalyzer from '@next/bundle-analyzer' const bundleAnalyzer = (a) => a // withBundleAnalyzer({ enabled: true }) const ACADEMY_URL = process.env.ACADEMY_URL || 'https://academy.sushi.com' diff --git a/apps/evm/src/app/claims/components/ClaimItem.tsx b/apps/evm/src/app/claims/components/ClaimItem.tsx index 5af3dd5618..a3479e92a7 100644 --- a/apps/evm/src/app/claims/components/ClaimItem.tsx +++ b/apps/evm/src/app/claims/components/ClaimItem.tsx @@ -19,7 +19,7 @@ import { Checker } from 'src/lib/wagmi/systems/Checker' import { ROUTE_PROCESSOR_2_ADDRESS } from 'sushi/config' import { Amount } from 'sushi/currency' import { ZERO } from 'sushi/math' -import { Address } from 'viem' +import type { Address } from 'viem' import { z } from 'zod' interface ClaimItem { @@ -35,6 +35,7 @@ export const ClaimItem: FC = ({ chainId, account, claim }) => { }) const { data: isClaimed, isLoading: checkIsClaimedLoading } = useRP2ExploitIsClaimed({ index: claim.index, chainId }) + const { write, isPending: isClaimPending } = useRP2ExploitClaim({ claim, chainId, @@ -56,7 +57,9 @@ export const ClaimItem: FC = ({ chainId, account, claim }) => { const amount = useMemo( () => - token ? Amount.fromRawAmount(token, claim.amount.toString()) : undefined, + token + ? Amount.fromRawAmount(token, claim.amount.hex.toString()) + : undefined, [claim.amount, token], ) diff --git a/apps/evm/src/app/claims/rp2/check-approvals/route.ts b/apps/evm/src/app/claims/rp2/check-approvals/route.ts new file mode 100644 index 0000000000..1f75132750 --- /dev/null +++ b/apps/evm/src/app/claims/rp2/check-approvals/route.ts @@ -0,0 +1,76 @@ +import { RouteProcessor2ChainId } from 'sushi/config' +import type { Token } from 'sushi/types' +import { type Address } from 'viem' +import { createConfig } from 'wagmi' +import { getToken } from 'wagmi/actions' +import { z } from 'zod' + +import { publicWagmiConfig } from '@sushiswap/wagmi-config' +import { getIdFromChainIdAddress } from 'sushi/format' +import rp2Approvals from '../../../../lib/wagmi/hooks/exploits/data/rp2-approvals.json' + +const querySchema = z.object({ + account: z.coerce.string().transform((account) => account as Address), +}) + +const rp2ApprovalsItemSchema = z.object({ + address: z.string().transform((el) => el as Address), + transactionHash: z.string(), + spender: z.string().transform((el) => el as Address), + owner: z.string().transform((el) => el as Address), + value: z.number(), +}) + +const rp2ApprovalsSchema = z.record( + z.coerce.number().transform((el) => el as RouteProcessor2ChainId), + z.array(rp2ApprovalsItemSchema), +) + +async function checkApprovals(account: Address) { + const approvals = rp2ApprovalsSchema.parse(rp2Approvals) + const items = Object.entries(approvals) + const tokens: Token[] = [] + + for (let i = 0; i < items.length; i++) { + const [key, value] = items[i] + const chainId = +key as RouteProcessor2ChainId + + for (let j = 0; j < value.length; j++) { + const item = value[j] + if (item.owner.toLowerCase() === account.toLowerCase()) { + const resp = await getToken(createConfig(publicWagmiConfig), { + address: item.address, + chainId, + }) + const { decimals, address: tokenAddress, symbol, name } = resp + const token = { + id: getIdFromChainIdAddress(chainId, tokenAddress), + chainId, + address: tokenAddress, + symbol: symbol || '', + name: name || '', + decimals, + } + + if (!tokens.map((el) => el.id).includes(token.id)) { + tokens.push(token) + } + } + } + } + + return tokens +} + +export type Approvals = Awaited> + +export const revalidate = 60 + +export async function GET(req: Request) { + const { searchParams } = new URL(req.url) + const { account } = querySchema.parse(Object.fromEntries(searchParams)) + + const body = await checkApprovals(account) + + return Response.json(body) +} diff --git a/apps/evm/src/app/claims/rp2/find-claims/route.ts b/apps/evm/src/app/claims/rp2/find-claims/route.ts new file mode 100644 index 0000000000..52848c77f3 --- /dev/null +++ b/apps/evm/src/app/claims/rp2/find-claims/route.ts @@ -0,0 +1,42 @@ +import { + RP2ClaimChainIds, + RP2MerkleTreeClaimSchema, + RP2MerkleTreeSchema, +} from 'src/lib/wagmi/hooks/exploits/constants' +import { RP2MerkleTree } from 'src/lib/wagmi/hooks/exploits/rp2-merkle-trees' +import { RP2ClaimChainId } from 'src/lib/wagmi/hooks/exploits/types' +import type { Address } from 'viem' +import { z } from 'zod' + +const querySchema = z.object({ + account: z.coerce.string().transform((account) => account as Address), +}) + +function findClaims(account: Address) { + return RP2ClaimChainIds.reduce< + [RP2ClaimChainId, z.TypeOf][] + >((acc, cur) => { + const claims = RP2MerkleTreeSchema.parse(RP2MerkleTree[cur]).claims.filter( + (el) => el.user.toLowerCase() === account?.toLowerCase(), + ) + + claims.forEach((claim) => { + acc.push([cur, claim]) + }) + + return acc + }, []) +} + +export type Claims = ReturnType + +export const revalidate = Infinity + +export async function GET(req: Request) { + const { searchParams } = new URL(req.url) + const { account } = querySchema.parse(Object.fromEntries(searchParams)) + + const body = findClaims(account) + + return Response.json(body) +} diff --git a/apps/evm/src/app/claims/rp2/page.tsx b/apps/evm/src/app/claims/rp2/page.tsx index 0b8a0dbd9a..09f9b17282 100644 --- a/apps/evm/src/app/claims/rp2/page.tsx +++ b/apps/evm/src/app/claims/rp2/page.tsx @@ -17,9 +17,11 @@ import { RevokeItem } from '../components/RevokeItem' const RP2ClaimPage = () => { const { address } = useAccount() - const claims = useRP2ExploitClaimFinder({ - account: address, - }) + + const { data: claims, isInitialLoading: isClaimsLoading } = + useRP2ExploitClaimFinder({ + account: address, + }) const { data: tokens, isInitialLoading: isLoading } = useRP2ExploitCheck({ account: address, @@ -90,8 +92,12 @@ const RP2ClaimPage = () => { - ) : claims.length > 0 ? ( - claims.map(([chainId, claim]) => ( + ) : isClaimsLoading ? ( + + {' '} + + ) : (claims?.length || 0) > 0 ? ( + claims?.map(([chainId, claim]) => ( el as Address), index: z.number(), diff --git a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts index 896b30aed9..66d0ff629f 100644 --- a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts +++ b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitCheck.ts @@ -1,73 +1,26 @@ 'use client' import { useQuery } from '@tanstack/react-query' -import { RouteProcessor2ChainId } from 'sushi/config' +import type { Approvals } from 'src/app/claims/rp2/check-approvals/route' import { Token } from 'sushi/currency' -import { Address } from 'viem' -import { useConfig } from 'wagmi' -import { getToken } from 'wagmi/actions' -import { z } from 'zod' - -import rp2Approvals from '../data/rp2-approvals.json' - -const rp2ApprovalsItemSchema = z.object({ - address: z.string().transform((el) => el as Address), - transactionHash: z.string(), - spender: z.string().transform((el) => el as Address), - owner: z.string().transform((el) => el as Address), - value: z.number(), -}) - -const rp2ApprovalsSchema = z.record( - z.coerce.number().transform((el) => el as RouteProcessor2ChainId), - z.array(rp2ApprovalsItemSchema), -) +import type { Address } from 'viem' interface UseRP2ExploitCheck { account: Address | undefined } export const useRP2ExploitCheck = ({ account }: UseRP2ExploitCheck) => { - const config = useConfig() - return useQuery({ queryKey: ['useRP2ExploitCheck', { account }], enabled: Boolean(account), queryFn: async () => { if (!account) return [] - const approvals = rp2ApprovalsSchema.parse(rp2Approvals) - const items = Object.entries(approvals) - const tokens: Token[] = [] - - for (let i = 0; i < items.length; i++) { - const [key, value] = items[i] - const chainId = +key as RouteProcessor2ChainId - - for (let j = 0; j < value.length; j++) { - const item = value[j] - if (item.owner.toLowerCase() === account.toLowerCase()) { - const resp = await getToken(config, { - address: item.address, - chainId, - }) - const { decimals, address: tokenAddress, symbol, name } = resp - const token = new Token({ - chainId, - address: tokenAddress, - symbol, - name, - decimals, - }) - - if (!tokens.map((el) => el.id).includes(token.id)) { - tokens.push(token) - } - } - } - } + const data: Approvals = await fetch( + `/claims/rp2/check-approvals?account=${account}`, + ).then((res) => res.json()) - return tokens + return data.map((token) => new Token(token)) }, refetchOnWindowFocus: false, refetchOnReconnect: false, diff --git a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts index 837d6a01bc..109780df65 100644 --- a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts +++ b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitClaimFinder.ts @@ -1,35 +1,20 @@ 'use client' -import { useMemo } from 'react' -import { z } from 'zod' - import { Address } from 'viem' -import { - RP2ClaimChainIds, - RP2MerkleTree, - RP2MerkleTreeClaimSchema, - RP2MerkleTreeSchema, -} from '../constants' -import { RP2ClaimChainId } from '../types' + +import { useQuery } from '@tanstack/react-query' +import type { Claims } from 'src/app/claims/rp2/find-claims/route' interface UseRP2ExploitCheck { account: Address | undefined } export const useRP2ExploitClaimFinder = ({ account }: UseRP2ExploitCheck) => { - return useMemo(() => { - return RP2ClaimChainIds.reduce< - [RP2ClaimChainId, z.TypeOf][] - >((acc, cur) => { - const claims = RP2MerkleTreeSchema.parse( - RP2MerkleTree[cur], - ).claims.filter((el) => el.user.toLowerCase() === account?.toLowerCase()) - - claims.forEach((claim) => { - acc.push([cur, claim]) - }) - - return acc - }, []) - }, [account]) + return useQuery({ + queryKey: ['rp2-claims', account], + queryFn: async () => + fetch(`/claims/rp2/find-claims?account=${account}`).then((res) => + res.json(), + ), + }) } diff --git a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts index 92465a4ab9..9190bb77ad 100644 --- a/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts +++ b/apps/evm/src/lib/wagmi/hooks/exploits/hooks/useRP2ExploitIsClaimed.ts @@ -18,6 +18,7 @@ export const useRP2ExploitIsClaimed = ({ const queryClient = useQueryClient() const query = useReadContract({ ...ClaimContractConfig(chainId), + chainId, functionName: 'isClaimed', args: [BigInt(index)], query: { diff --git a/apps/evm/src/lib/wagmi/hooks/exploits/rp2-merkle-trees.ts b/apps/evm/src/lib/wagmi/hooks/exploits/rp2-merkle-trees.ts new file mode 100644 index 0000000000..cfdedb3860 --- /dev/null +++ b/apps/evm/src/lib/wagmi/hooks/exploits/rp2-merkle-trees.ts @@ -0,0 +1,23 @@ +import { ChainId } from 'sushi/chain' + +import Rp2MerkleTreeArbitrum from './data/arbitrum-tree.json' +import Rp2MerkleTreeAvalanche from './data/avalanche-tree.json' +import Rp2MerkleTreeBoba from './data/boba-tree.json' +import Rp2MerkleTreeBSC from './data/bsc-tree.json' +import Rp2MerkleTreeEthereum from './data/ethereum-tree.json' +import Rp2MerkleTreeFantom from './data/fantom-tree.json' +import Rp2MerkleTreeNova from './data/nova-tree.json' +import Rp2MerkleTreeOptimism from './data/optimism-tree.json' +import Rp2MerkleTreePolygon from './data/polygon-tree.json' + +export const RP2MerkleTree = { + [ChainId.ARBITRUM]: Rp2MerkleTreeArbitrum, + [ChainId.AVALANCHE]: Rp2MerkleTreeAvalanche, + [ChainId.BOBA]: Rp2MerkleTreeBoba, + [ChainId.BSC]: Rp2MerkleTreeBSC, + [ChainId.ETHEREUM]: Rp2MerkleTreeEthereum, + [ChainId.FANTOM]: Rp2MerkleTreeFantom, + [ChainId.ARBITRUM_NOVA]: Rp2MerkleTreeNova, + [ChainId.OPTIMISM]: Rp2MerkleTreeOptimism, + [ChainId.POLYGON]: Rp2MerkleTreePolygon, +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 9c2a07114e..bf4ddbdea9 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1667,103 +1667,6 @@ importers: specifier: 5.2.2 version: 5.2.2 - packages/graph-client: - dependencies: - '@graphprotocol/client-add-source-name': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-pagination': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-type-merging': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) - '@graphprotocol/client-cli': - specifier: 3.0.0 - version: 3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/cache-localforage': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/cross-helpers': - specifier: 0.4.0 - version: 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/graphql': - specifier: 0.94.2 - version: 0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/http': - specifier: 0.94.4 - version: 0.94.4(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/runtime@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/merger-stitching': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/runtime': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/store': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-filter-schema': - specifier: 0.96.6 - version: 0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-prefix': - specifier: 0.96.6 - version: 0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-prune': - specifier: 0.96.6 - version: 0.96.6(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-rename': - specifier: 0.96.7 - version: 0.96.7(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-type-merging': - specifier: 0.96.6 - version: 0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/merge': - specifier: 9.0.3 - version: 9.0.3(graphql@16.6.0) - '@sushiswap/wagmi-config': - specifier: workspace:* - version: link:../../config/wagmi - '@whatwg-node/fetch': - specifier: 0.8.4 - version: 0.8.4 - date-fns: - specifier: 2.30.0 - version: 2.30.0 - devDependencies: - '@sushiswap/jest-config': - specifier: workspace:* - version: link:../../config/jest - '@sushiswap/typescript-config': - specifier: workspace:* - version: link:../../config/typescript - '@types/jest': - specifier: 29.5.5 - version: 29.5.5 - '@types/node': - specifier: '20' - version: 20.10.0 - '@wagmi/core': - specifier: 2.10.2 - version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) - graphql: - specifier: 16.6.0 - version: 16.6.0 - jest: - specifier: 29.7.0 - version: 29.7.0(@types/node@20.10.0) - sushi: - specifier: workspace:* - version: link:../sushi - ts-jest: - specifier: 29.1.1 - version: 29.1.1(@babel/core@7.24.4)(jest@29.7.0)(typescript@5.2.2) - typescript: - specifier: 5.2.2 - version: 5.2.2 - packages/graph-client-new: dependencies: '@sushiswap/bonds-sdk': @@ -8941,45 +8844,6 @@ packages: - utf-8-validate dev: false - /@graphprotocol/client-cli@3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.3)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-hTISbOzKavlDifBNsR6JqQMfdYwY7++hflPy+c3WHRrZ4OMoxFmW7ZuvaP6LvgKdJV77O8w9dnT/uxeHs6a90g==} - engines: {node: '>=16.0.0'} - hasBin: true - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphprotocol/client-add-source-name': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-pagination': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) - '@graphprotocol/client-block-tracking': 2.0.0(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) - '@graphprotocol/client-polling-live': 2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.3)(graphql@16.6.0) - '@graphql-mesh/cli': 0.82.35(@babel/core@7.24.4)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.5.0) - graphql: 16.6.0 - tslib: 2.5.0 - transitivePeerDependencies: - - '@babel/core' - - '@envelop/core' - - '@graphql-mesh/cross-helpers' - - '@graphql-mesh/store' - - '@graphql-mesh/types' - - '@graphql-mesh/utils' - - '@graphql-tools/delegate' - - '@graphql-tools/merge' - - '@graphql-tools/utils' - - '@graphql-tools/wrap' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - graphql-tag - - react-native - - react-native-windows - - supports-color - - utf-8-validate - dev: false - /@graphprotocol/client-polling-live@2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.6.0): resolution: {integrity: sha512-JQ0sKiFCX+ErR0fynBNUg/WDiVaaEndlS12fkgrFZrQA2vVpSyow9pW0nKMGVZJa4cN+VDskgwqK5BWXMvdeRA==} engines: {node: '>=16.0.0'} @@ -8995,21 +8859,6 @@ packages: tslib: 2.6.2 dev: false - /@graphprotocol/client-polling-live@2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.3)(graphql@16.6.0): - resolution: {integrity: sha512-JQ0sKiFCX+ErR0fynBNUg/WDiVaaEndlS12fkgrFZrQA2vVpSyow9pW0nKMGVZJa4cN+VDskgwqK5BWXMvdeRA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@envelop/core': ^2.4.2 || ^3.0.0 || ^4.0.0 - '@graphql-tools/merge': ^8.3.14 || ^9.0.0 - graphql: 16.6.0 - dependencies: - '@envelop/core': 4.0.0 - '@graphql-tools/merge': 9.0.3(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-codegen/core@2.6.8(graphql@16.6.0): resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==} peerDependencies: @@ -9497,60 +9346,6 @@ packages: - utf-8-validate dev: false - /@graphql-mesh/cli@0.82.35(@babel/core@7.24.4)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-5IuXpk+Zpg05u6qNPX19VzC5/HCiLdDRF6EPZ3ze57FIRgGA3YsB1CUGga6Ky3inalURYwx0kWqmdjbdKZYx1w==} - hasBin: true - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/core': 3.1.0(graphql@16.6.0) - '@graphql-codegen/typed-document-node': 4.0.1(graphql@16.6.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.6.0) - '@graphql-codegen/typescript-generic-sdk': 3.1.0(graphql-tag@2.12.6)(graphql@16.6.0) - '@graphql-codegen/typescript-operations': 3.0.4(graphql@16.6.0) - '@graphql-codegen/typescript-resolvers': 3.2.1(graphql@16.6.0) - '@graphql-mesh/config': 0.93.1(@babel/core@7.24.4)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/http': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - ajv: 8.12.0 - change-case: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.2.2) - dnscache: 1.0.2 - dotenv: 16.3.1 - graphql: 16.6.0 - graphql-import-node: 0.0.5(graphql@16.6.0) - graphql-ws: 5.14.0(graphql@16.6.0) - json-bigint-patch: 0.0.8 - json5: 2.2.3 - mkdirp: 3.0.1 - open: 7.4.2 - pascal-case: 3.1.2 - rimraf: 5.0.1 - ts-node: 10.9.2(@types/node@20.10.0)(typescript@5.2.2) - tsconfig-paths: 4.2.0 - tslib: 2.6.2 - typescript: 5.2.2 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - yargs: 17.7.2 - transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - graphql-tag - - react-native - - react-native-windows - - supports-color - - utf-8-validate - dev: false - /@graphql-mesh/config@0.93.1(@babel/core@7.24.4)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): resolution: {integrity: sha512-g4omjuBBVPtyhEDeEa6uwfSSvUehV3zcwZVNbk+UJuFJEYPO4yBLsxfEZBpoeO6EriiPX2WnQyn5kiHbC3YTRA==} peerDependencies: @@ -9683,36 +9478,6 @@ packages: - react-native-windows dev: false - /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-1G2/1jkl1VPWhsZsUBwFQI5d9OxxEc+CMxy5ef0qI2WEXqIocOxMhEY53cc+tCSbuXR99rxos+KD/8Z6ZasaOQ==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/store': ^0.93.1 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/url-loader': 7.17.18(@types/node@20.10.0)(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - graphql: 16.6.0 - lodash.get: 4.4.2 - tslib: 2.5.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-1G2/1jkl1VPWhsZsUBwFQI5d9OxxEc+CMxy5ef0qI2WEXqIocOxMhEY53cc+tCSbuXR99rxos+KD/8Z6ZasaOQ==} peerDependencies: @@ -9743,37 +9508,6 @@ packages: - utf-8-validate dev: false - /@graphql-mesh/graphql@0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-uKPaHpnZqxU0pGa79xlfrJB85vbZ5rTfhdBK+HtYAp+1MCL4xB9Rjomyu2VG+KDvfdtu2sj9Bqql+5NGztZFMQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/store': ^0.94.1 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/string-interpolation': 0.5.1(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@20.10.0)(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - lodash.get: 4.4.2 - tslib: 2.6.3 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-mesh/graphql@0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-uKPaHpnZqxU0pGa79xlfrJB85vbZ5rTfhdBK+HtYAp+1MCL4xB9Rjomyu2VG+KDvfdtu2sj9Bqql+5NGztZFMQ==} engines: {node: '>=16.0.0'} @@ -10226,26 +9960,6 @@ packages: tslib: 2.6.3 dev: false - /@graphql-mesh/transform-filter-schema@0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-l6P0FYmS4f3Sq0rCnLWcSQi6QawyAcXFtEs61+aDLZU/EUp9NmjLYKjO4pWjxvOEbguBWx+ZcKRH3jNGaavokQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.96.6 - '@graphql-mesh/utils': ^0.96.6 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - minimatch: 9.0.3 - tslib: 2.6.3 - dev: false - /@graphql-mesh/transform-prefix@0.94.2(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-1G9mscftMPIAnN3yZfOLka1lUQ38pXIzdxjg77SmkCt85BE0Asjsbn8hitdQGiCMd5urVvj/WmxGDx+iJt8y8g==} engines: {node: '>=16.0.0'} @@ -10266,61 +9980,6 @@ packages: tslib: 2.6.3 dev: false - /@graphql-mesh/transform-prefix@0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-950SfyNr2VIC4viujk/nedAehBKjv5FowRlZs/6fWZiktN6/6KELMZcZcbk6VI2fi3yB5evl4X43tJRRY3Zl+A==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.96.6 - '@graphql-mesh/utils': ^0.96.6 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - graphql-scalars: 1.23.0(graphql@16.6.0) - tslib: 2.6.3 - dev: false - - /@graphql-mesh/transform-prune@0.96.6(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-brKG+MVd2gsGbYitV1TtpMOShXKrZsbM2jI/2YHz1wrnMDEx2gQLT1/XYi/rKbKLizJjKAPUwiAbOJKzpdf3UA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.96.6 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - dev: false - - /@graphql-mesh/transform-rename@0.96.7(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-v1oUlx6HXIqwhPnGGLQ/MgoHYF1yQVUCVB154nNghYlQtOCkMhktK+45QXAdVho398icyRyVAY+N1sl6oFynPA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.96.6 - '@graphql-mesh/utils': ^0.96.6 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - graphql-scalars: 1.23.0(graphql@16.6.0) - tslib: 2.6.3 - dev: false - /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-CUrqCMaEqO1LDusv59UPqmQju3f+LpEGxFu7CydMiIvbfKDDDrf8+dF3OVU7d/ZOMRxB6hR80JsQF0SVeXPCOQ==} peerDependencies: @@ -10354,23 +10013,6 @@ packages: tslib: 2.6.3 dev: false - /@graphql-mesh/transform-type-merging@0.96.6(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-vbY3HDAdNjgbNVHC4fBqovZbWSZ7HWDyIvC3/ujbdzA5eGkWy15zCC87cbb6vblatgA6BkY+WnopTHyUTrTaWQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.96.6 - '@graphql-mesh/utils': ^0.96.6 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/stitching-directives': 3.0.0(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - dev: false - /@graphql-mesh/types@0.89.2(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-5Hrgmwb/enSu1Aj4E6G5lnQxtR99zUR/x82wVaQvqhXZCTTztHHzdHjQwNywJNqUVBxPUg1To8mGXhZQsu4NTQ==} peerDependencies: @@ -10727,24 +10369,6 @@ packages: - bufferutil - utf-8-validate - /@graphql-tools/executor-http@0.1.10(@types/node@20.10.0)(graphql@16.6.0): - resolution: {integrity: sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.8.4 - dset: 3.1.2 - extract-files: 11.0.0 - graphql: 16.6.0 - meros: 1.3.0(@types/node@20.10.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - dev: false - /@graphql-tools/executor-http@0.1.10(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==} peerDependencies: @@ -10779,6 +10403,7 @@ packages: value-or-promise: 1.0.12 transitivePeerDependencies: - '@types/node' + dev: true /@graphql-tools/executor-http@1.0.2(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==} @@ -11207,32 +10832,6 @@ packages: tslib: 2.6.2 dev: false - /@graphql-tools/url-loader@7.17.18(@types/node@20.10.0)(graphql@16.6.0): - resolution: {integrity: sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/executor-graphql-ws': 0.0.14(graphql@16.6.0) - '@graphql-tools/executor-http': 0.1.10(@types/node@20.10.0)(graphql@16.6.0) - '@graphql-tools/executor-legacy-ws': 0.0.11(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - '@types/ws': 8.5.5 - '@whatwg-node/fetch': 0.8.4 - graphql: 16.6.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-tools/url-loader@7.17.18(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==} peerDependencies: @@ -11284,6 +10883,7 @@ packages: - bufferutil - encoding - utf-8-validate + dev: true /@graphql-tools/url-loader@8.0.0(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} @@ -36009,6 +35609,7 @@ packages: optional: true dependencies: '@types/node': 20.10.0 + dev: true /meros@1.3.0(@types/node@20.12.7): resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} @@ -44908,6 +44509,7 @@ packages: typescript: 5.2.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + dev: true /ts-toolbelt@6.15.5: resolution: {integrity: sha512-FZIXf1ksVyLcfr7M317jbB67XFJhOO1YqdTcuGaq9q5jLUoTikukZ+98TPjKiP2jC5CgmYdWWYs0s2nLSU0/1A==} From ee5543fb298e573ce6750678453dacf72f726c64 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 7 Jun 2024 18:10:43 +0000 Subject: [PATCH 063/119] feat: use custom stringifier --- apps/evm/package.json | 1 + .../bonds/api/v1/bonds/[marketId]/route.ts | 7 +- apps/evm/src/app/bonds/api/v1/bonds/route.ts | 8 +- .../src/app/bonds/api/v1/positions/route.ts | 8 +- .../api/pools/[chainId]/[address]/route.ts | 7 +- .../evm/src/app/pool/api/pools/count/route.ts | 7 +- apps/evm/src/app/pool/api/pools/route.ts | 8 +- .../steer-vault/[chainId]/[address]/route.ts | 7 +- .../app/pool/api/steer-vault/count/route.ts | 7 +- .../evm/src/app/pool/api/steer-vault/route.ts | 7 +- .../lib/wagmi/components/connect-button.tsx | 2 - packages/client/package.json | 1 + packages/client/src/api/pools/pools/index.ts | 193 +++++++++--------- packages/client/src/functions.ts | 6 +- pnpm-lock.yaml | 10 + 15 files changed, 171 insertions(+), 108 deletions(-) diff --git a/apps/evm/package.json b/apps/evm/package.json index 9b75458d6c..4cee1bd144 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -55,6 +55,7 @@ "fast-json-stable-stringify": "2.1.0", "framer-motion": "7.10.3", "ioredis": "5.3.2", + "json-with-bigint": "^2.1.2", "lodash.once": "4.1.1", "lodash.zip": "4.2.0", "nanoid": "4.0.0", diff --git a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts index 5820218185..705d35bdee 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts @@ -1,4 +1,5 @@ import { BondApiSchema, getBondFromSubgraph } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../../../cors' @@ -23,7 +24,11 @@ export async function GET( return NextResponse.json({ error: 'Bond not found' }, { status: 404 }) } - return NextResponse.json(bond, { headers: CORS }) + const stringified = JSONStringify(bond) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } catch (e) { return NextResponse.json(e, { headers: CORS }) } diff --git a/apps/evm/src/app/bonds/api/v1/bonds/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/route.ts index 27bc6f0609..34843471fc 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/route.ts @@ -1,4 +1,5 @@ import { BondsApiSchema, getBondsFromSubgraph } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../../cors' @@ -14,7 +15,12 @@ export async function GET(request: Request) { try { const bonds = await getBondsFromSubgraph(result.data) - return NextResponse.json(bonds, { headers: CORS }) + const stringified = JSONStringify(bonds) + + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } catch (e) { return NextResponse.json(e, { headers: CORS }) } diff --git a/apps/evm/src/app/bonds/api/v1/positions/route.ts b/apps/evm/src/app/bonds/api/v1/positions/route.ts index f16155624d..9f4bd94d7c 100644 --- a/apps/evm/src/app/bonds/api/v1/positions/route.ts +++ b/apps/evm/src/app/bonds/api/v1/positions/route.ts @@ -2,6 +2,7 @@ import { BondsPositionsApiSchema, getBondPositionsFromSubgraph, } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../../cors' @@ -19,7 +20,12 @@ export async function GET(request: Request) { try { const positions = await getBondPositionsFromSubgraph(result.data) - return NextResponse.json(positions, { headers: CORS }) + + const stringified = JSONStringify(positions) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } catch (e) { return NextResponse.json(e, { headers: CORS }) } diff --git a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts index e1ef81a61b..dfbfce5512 100644 --- a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts @@ -1,4 +1,5 @@ import { PoolApiSchema, getPoolFromDB } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../../../cors' @@ -26,5 +27,9 @@ export async function GET( return NextResponse.json({ error: 'Failed to fetch pool' }, { status: 500 }) } - return NextResponse.json(pool, { headers: CORS }) + const stringified = JSONStringify(pool) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/app/pool/api/pools/count/route.ts b/apps/evm/src/app/pool/api/pools/count/route.ts index ad540a1846..8cc41380c9 100644 --- a/apps/evm/src/app/pool/api/pools/count/route.ts +++ b/apps/evm/src/app/pool/api/pools/count/route.ts @@ -1,4 +1,5 @@ import { PoolCountApiSchema, getPoolCountFromDB } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../../cors' @@ -13,5 +14,9 @@ export async function GET(request: Request) { } const count = await getPoolCountFromDB(result.data) - return NextResponse.json(count, { headers: CORS }) + const stringified = JSONStringify(count) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/app/pool/api/pools/route.ts b/apps/evm/src/app/pool/api/pools/route.ts index 1bed334db3..d1aa1c0732 100644 --- a/apps/evm/src/app/pool/api/pools/route.ts +++ b/apps/evm/src/app/pool/api/pools/route.ts @@ -1,4 +1,5 @@ import { PoolsApiSchema, getPoolsFromDB } from '@sushiswap/client/api' +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' import { CORS } from '../cors' @@ -13,5 +14,10 @@ export async function GET(request: Request) { } const pools = await getPoolsFromDB(result.data) - return NextResponse.json(pools, { headers: CORS }) + + const stringified = JSONStringify(pools) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts index fdee2173a8..f924a8d8bc 100644 --- a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts @@ -1,6 +1,7 @@ import { SteerVaultApiSchema, getSteerVaultFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' import { CORS } from '../../../cors' +import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -18,5 +19,9 @@ export async function GET( } const vault = await getSteerVaultFromDB(result.data) - return NextResponse.json(vault, { headers: CORS }) + const stringified = JSONStringify(vault) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/count/route.ts b/apps/evm/src/app/pool/api/steer-vault/count/route.ts index 2814a88cc6..20b8ba75b4 100644 --- a/apps/evm/src/app/pool/api/steer-vault/count/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/count/route.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' import { CORS } from '../../cors' +import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -18,5 +19,9 @@ export async function GET(request: Request) { } const count = await getSteerVaultCountFromDB(result.data) - return NextResponse.json(count, { headers: CORS }) + const stringified = JSONStringify(count) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/route.ts b/apps/evm/src/app/pool/api/steer-vault/route.ts index 691063590e..b85abb2b3d 100644 --- a/apps/evm/src/app/pool/api/steer-vault/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/route.ts @@ -4,6 +4,7 @@ import { } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' import { CORS } from '../cors' +import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -18,5 +19,9 @@ export async function GET(request: Request) { } const vaults = await getSteerVaultsFromDB(result.data) - return NextResponse.json(vaults, { headers: CORS }) + const stringified = JSONStringify(vaults) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json', ...CORS }, + }) } diff --git a/apps/evm/src/lib/wagmi/components/connect-button.tsx b/apps/evm/src/lib/wagmi/components/connect-button.tsx index ecfe89b082..44584f4137 100644 --- a/apps/evm/src/lib/wagmi/components/connect-button.tsx +++ b/apps/evm/src/lib/wagmi/components/connect-button.tsx @@ -59,8 +59,6 @@ export const ConnectButton: FC = ({ const _connectors = useMemo(() => { const conns = [...connectors] - console.log('conns', conns) - const injected = conns.find((el) => el.id === 'injected') if (injected) { diff --git a/packages/client/package.json b/packages/client/package.json index 4ce26b27d7..516f55eb5f 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -71,6 +71,7 @@ "@sushiswap/steer-sdk": "workspace:*", "@whatwg-node/fetch": "0.8.4", "deepmerge-ts": "^4.3.0", + "json-with-bigint": "^2.1.2", "tslib": "latest", "viem": "2.10.11", "zod": "3.21.4" diff --git a/packages/client/src/api/pools/pools/index.ts b/packages/client/src/api/pools/pools/index.ts index 17a971c1fc..250e4a0857 100644 --- a/packages/client/src/api/pools/pools/index.ts +++ b/packages/client/src/api/pools/pools/index.ts @@ -8,6 +8,7 @@ import { import { isPromiseFulfilled } from 'sushi/validate' import type { PoolWithSteerVaults, SteerChainId } from '@sushiswap/steer-sdk' +import { withoutScientificNotation } from 'sushi' import type { ChainId } from 'sushi/chain' import { type Address, @@ -93,104 +94,106 @@ export async function getPoolsFromDB( }) const poolsRetyped = pools as unknown as DecimalToString - const poolsTransformed = poolsRetyped.map((pool) => ({ - id: pool.id as ID, - address: pool.address as Address, - chainId: pool.chainId as ChainId, - name: pool.name, - - swapFee: Number(pool.swapFee), - - token0: { - ...pool.token0, - id: pool.token0.id as ID, - address: pool.token0.address as Address, + const poolsTransformed = poolsRetyped.map((pool) => { + return { + id: pool.id as ID, + address: pool.address as Address, chainId: pool.chainId as ChainId, - }, - token1: { - ...pool.token1, - id: pool.token1.id as ID, - address: pool.token1.address as Address, - chainId: pool.chainId as ChainId, - }, - - txCount: 0, - txCount1d: 0, - txCount1dChange: 0, - txCount1w: 0, - txCount1wChange: 0, - txCount1m: 0, - txCount1mChange: 0, - - feesUSD: Number(pool.feesUSD), - feesUSD1d: Number(pool.fees1d), - feesUSD1dChange: pool.feesChange1d, - feesUSD1w: Number(pool.fees1w), - feesUSD1wChange: pool.feesChange1w, - feesUSD1m: Number(pool.fees1m), - feesUSD1mChange: pool.feesChange1m, - - volumeUSD: Number(pool.volumeUSD), - volumeUSD1d: Number(pool.volume1d), - volumeUSD1dChange: pool.volumeChange1d, - volumeUSD1w: Number(pool.volume1w), - volumeUSD1wChange: pool.volumeChange1w, - volumeUSD1m: Number(pool.volume1m), - volumeUSD1mChange: pool.volumeChange1m, - - reserve0: BigInt(pool.reserve0), - reserve1: BigInt(pool.reserve1), - liquidity: BigInt(pool.totalSupply), - - liquidityUSD: Number(pool.liquidityUSD), - liquidityUSD1d: - Number(pool.liquidityUSD) + - pool.liquidityUSDChange1d * Number(pool.liquidityUSD), - liquidityUSD1dChange: pool.liquidityUSDChange1d, - liquidityUSD1wChange: pool.liquidityUSDChange1w, - liquidityUSD1mChange: pool.liquidityUSDChange1m, - - protocol: translateProtocol(pool.protocol), - - incentiveApr: pool.incentiveApr, - incentives: pool.incentives.map((incentive) => ({ - ...incentive, - id: incentive.id as ID, - rewarderAddress: incentive.rewarderAddress as Address, - rewarderType: translateRewarderType(incentive.rewarderType), - chefType: translateChefType(incentive.chefType), - chainId: pool.chainId as ChainId, - rewardToken: { - ...incentive.rewardToken, - id: incentive.rewardToken.id as ID, - address: incentive.rewardToken.address as Address, + name: pool.name, + + swapFee: Number(pool.swapFee), + + token0: { + ...pool.token0, + id: pool.token0.id as ID, + address: pool.token0.address as Address, chainId: pool.chainId as ChainId, }, - })), - isIncentivized: pool.isIncentivized, - wasIncentivized: pool.wasIncentivized, - - hasEnabledSteerVault: pool.hasEnabledSteerVault, - hadEnabledSteerVault: pool.hadEnabledSteerVault, - steerVaults: pool.steerVaults.map((steerVault) => ({ - ...steerVault, - id: steerVault.id as ID, - address: steerVault.address as Address, - chainId: pool.chainId as SteerChainId, - })), - - feeApr1h: pool.feeApr1h, - feeApr1d: pool.feeApr1d, - feeApr1w: pool.feeApr1w, - feeApr1m: pool.feeApr1m, - - totalApr1h: pool.totalApr1h, - totalApr1d: pool.totalApr1d, - totalApr1w: pool.totalApr1w, - totalApr1m: pool.totalApr1m, - token0Price: Number(pool.token0Price), - token1Price: Number(pool.token1Price) - })) + token1: { + ...pool.token1, + id: pool.token1.id as ID, + address: pool.token1.address as Address, + chainId: pool.chainId as ChainId, + }, + + txCount: 0, + txCount1d: 0, + txCount1dChange: 0, + txCount1w: 0, + txCount1wChange: 0, + txCount1m: 0, + txCount1mChange: 0, + + feesUSD: Number(pool.feesUSD), + feesUSD1d: Number(pool.fees1d), + feesUSD1dChange: pool.feesChange1d, + feesUSD1w: Number(pool.fees1w), + feesUSD1wChange: pool.feesChange1w, + feesUSD1m: Number(pool.fees1m), + feesUSD1mChange: pool.feesChange1m, + + volumeUSD: Number(pool.volumeUSD), + volumeUSD1d: Number(pool.volume1d), + volumeUSD1dChange: pool.volumeChange1d, + volumeUSD1w: Number(pool.volume1w), + volumeUSD1wChange: pool.volumeChange1w, + volumeUSD1m: Number(pool.volume1m), + volumeUSD1mChange: pool.volumeChange1m, + + reserve0: BigInt(withoutScientificNotation(pool.reserve0)!), + reserve1: BigInt(withoutScientificNotation(pool.reserve1)!), + liquidity: BigInt(withoutScientificNotation(pool.totalSupply)!), + + liquidityUSD: Number(pool.liquidityUSD), + liquidityUSD1d: + Number(pool.liquidityUSD) + + pool.liquidityUSDChange1d * Number(pool.liquidityUSD), + liquidityUSD1dChange: pool.liquidityUSDChange1d, + liquidityUSD1wChange: pool.liquidityUSDChange1w, + liquidityUSD1mChange: pool.liquidityUSDChange1m, + + protocol: translateProtocol(pool.protocol), + + incentiveApr: pool.incentiveApr, + incentives: pool.incentives.map((incentive) => ({ + ...incentive, + id: incentive.id as ID, + rewarderAddress: incentive.rewarderAddress as Address, + rewarderType: translateRewarderType(incentive.rewarderType), + chefType: translateChefType(incentive.chefType), + chainId: pool.chainId as ChainId, + rewardToken: { + ...incentive.rewardToken, + id: incentive.rewardToken.id as ID, + address: incentive.rewardToken.address as Address, + chainId: pool.chainId as ChainId, + }, + })), + isIncentivized: pool.isIncentivized, + wasIncentivized: pool.wasIncentivized, + + hasEnabledSteerVault: pool.hasEnabledSteerVault, + hadEnabledSteerVault: pool.hadEnabledSteerVault, + steerVaults: pool.steerVaults.map((steerVault) => ({ + ...steerVault, + id: steerVault.id as ID, + address: steerVault.address as Address, + chainId: pool.chainId as SteerChainId, + })), + + feeApr1h: pool.feeApr1h, + feeApr1d: pool.feeApr1d, + feeApr1w: pool.feeApr1w, + feeApr1m: pool.feeApr1m, + + totalApr1h: pool.totalApr1h, + totalApr1d: pool.totalApr1d, + totalApr1w: pool.totalApr1w, + totalApr1m: pool.totalApr1m, + token0Price: Number(pool.token0Price), + token1Price: Number(pool.token1Price), + } + }) if (args.ids && args.ids.length > poolsTransformed.length) { const fetchedPoolIds = poolsTransformed.map((pool) => pool.id) diff --git a/packages/client/src/functions.ts b/packages/client/src/functions.ts index b2543bd616..a85b0d1410 100644 --- a/packages/client/src/functions.ts +++ b/packages/client/src/functions.ts @@ -1,3 +1,5 @@ +import { JSONParse } from 'json-with-bigint' + export function parseArgs(args?: Partial) { if (!args) return '' return Object.entries(args) @@ -14,12 +16,12 @@ export function parseArgs(args?: Partial) { }, '?') } -export async function get(url: string) { +export async function get(url: string): Promise { const res = await fetch(url) if (!res.ok) { throw new Error(`Failed to fetch ${url}: ${res.status} ${res.statusText}`) } - return res.json() + return JSONParse(await res.text()) } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index bf4ddbdea9..b266d3cd22 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -780,6 +780,9 @@ importers: ioredis: specifier: 5.3.2 version: 5.3.2 + json-with-bigint: + specifier: ^2.1.2 + version: 2.1.2 lodash.once: specifier: 4.1.1 version: 4.1.1 @@ -1485,6 +1488,9 @@ importers: deepmerge-ts: specifier: ^4.3.0 version: 4.3.0 + json-with-bigint: + specifier: ^2.1.2 + version: 2.1.2 tslib: specifier: latest version: 2.6.2 @@ -34344,6 +34350,10 @@ packages: resolution: {integrity: sha512-5Nom9inkIMrtY992LMBBG1Zaekrc10JaRhyZgprwHBVMDtRgllTvzl0oBbg13wJsVZoSoFNNMaeIVQs0P04vsA==} dev: false + /json-with-bigint@2.1.2: + resolution: {integrity: sha512-ntVByusL5D7N3Cfka28x1KeKNwMDATNjvT0BBGb4JqErX/K/Cj5X0euRvMXFthFxWSvJzqtj5/3qMcKZLgvoIQ==} + dev: false + /json2mq@0.2.0: resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==} dependencies: From 6f4bc815499ba787bfb7cd7f0c2f500b35c0a0e0 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Fri, 7 Jun 2024 19:43:25 +0000 Subject: [PATCH 064/119] feat(pkgs/graph-client): add retries, timeout --- .../src/composite/chef-user-positions.ts | 37 +++++---- .../src/composite/sushi-day-datas.ts | 22 ++++-- .../src/composite/sushi-historic-pool.ts | 75 +++++++++++-------- .../graph-client-new/src/lib/request-paged.ts | 33 +++++--- packages/graph-client-new/src/lib/request.ts | 49 ++++++++++++ .../src/multichain/fetch-multichain.ts | 7 +- .../src/subgraphs/bentobox/queries/rebases.ts | 7 +- .../blocks/queries/block-historic.ts | 43 ++++++----- .../src/subgraphs/blocks/queries/blocks.ts | 12 ++- .../src/subgraphs/bonds/queries/markets.ts | 10 ++- .../src/subgraphs/bonds/queries/positions.ts | 10 ++- .../src/subgraphs/furo/queries/tokens.ts | 7 +- .../master-chef-v1/queries/user-positions.ts | 9 ++- .../master-chef-v2/queries/rewarders.ts | 13 ++-- .../master-chef-v2/queries/user-positions.ts | 9 ++- .../subgraphs/mini-chef/queries/rewarders.ts | 14 ++-- .../mini-chef/queries/user-positions.ts | 10 ++- .../src/subgraphs/steer/queries/vaults.ts | 10 ++- .../sushi-bar/queries/bar-history.ts | 12 ++- .../src/subgraphs/sushi-bar/queries/bar.ts | 12 ++- .../src/subgraphs/sushi-v2/queries/burns.ts | 10 ++- .../subgraphs/sushi-v2/queries/day-datas.ts | 10 ++- .../src/subgraphs/sushi-v2/queries/factory.ts | 23 +++--- .../sushi-v2/queries/liquidity-positions.ts | 14 ++-- .../src/subgraphs/sushi-v2/queries/mints.ts | 10 ++- .../sushi-v2/queries/pool-with-buckets.ts | 27 ++++--- .../src/subgraphs/sushi-v2/queries/pool.ts | 15 ++-- .../src/subgraphs/sushi-v2/queries/pools.ts | 10 ++- .../src/subgraphs/sushi-v2/queries/swaps.ts | 10 ++- .../src/subgraphs/sushi-v2/queries/tokens.ts | 10 ++- .../sushi-v2/queries/transactions.ts | 10 ++- .../src/subgraphs/sushi-v3/queries/burns.ts | 10 ++- .../subgraphs/sushi-v3/queries/collects.ts | 10 ++- .../subgraphs/sushi-v3/queries/day-datas.ts | 10 ++- .../src/subgraphs/sushi-v3/queries/factory.ts | 23 +++--- .../src/subgraphs/sushi-v3/queries/mints.ts | 10 ++- .../sushi-v3/queries/pool-with-buckets.ts | 15 ++-- .../src/subgraphs/sushi-v3/queries/pool.ts | 15 ++-- .../sushi-v3/queries/pools-by-token-pair.ts | 23 +++--- .../src/subgraphs/sushi-v3/queries/pools.ts | 10 ++- .../src/subgraphs/sushi-v3/queries/swaps.ts | 10 ++- .../sushi-v3/queries/transactions.ts | 10 ++- 42 files changed, 447 insertions(+), 249 deletions(-) create mode 100644 packages/graph-client-new/src/lib/request.ts diff --git a/packages/graph-client-new/src/composite/chef-user-positions.ts b/packages/graph-client-new/src/composite/chef-user-positions.ts index dc014dfaea..57989f9551 100644 --- a/packages/graph-client-new/src/composite/chef-user-positions.ts +++ b/packages/graph-client-new/src/composite/chef-user-positions.ts @@ -1,5 +1,11 @@ import type { ChainIdVariable, ChainIdsVariable } from 'src/lib/types/chainId' +import { + MINICHEF_SUPPORTED_CHAIN_IDS, + type MiniChefChainId, + isMiniChefChainId, +} from 'sushi/config' +import type { RequestOptions } from 'src/lib/request' import { type GetMasterChefV1UserPositions, type MasterChefV1UserPositions, @@ -16,11 +22,6 @@ import { getMiniChefUserPositions, } from 'src/subgraphs/mini-chef' import { ChainId } from 'sushi/chain' -import { - MINICHEF_SUPPORTED_CHAIN_IDS, - type MiniChefChainId, - isMiniChefChainId, -} from 'sushi/config' export type GetChefUserPositions = Omit< GetMasterChefV1UserPositions & @@ -41,26 +42,32 @@ export type ChefPosition = Omit & { ChainIdVariable['chainId']> } -export async function getChefUserPositions({ - chainIds = [ChainId.ETHEREUM, ...MINICHEF_SUPPORTED_CHAIN_IDS], - ...variables -}: GetChefUserPositions) { +export async function getChefUserPositions( + { + chainIds = [ChainId.ETHEREUM, ...MINICHEF_SUPPORTED_CHAIN_IDS], + ...variables + }: GetChefUserPositions, + options?: RequestOptions, +) { const miniChefChainIds = chainIds.filter(isMiniChefChainId) const masterChefPromises = chainIds.includes(ChainId.ETHEREUM) ? [ - getMasterChefV1UserPositions(variables), - getMasterChefV2UserPositions(variables), + getMasterChefV1UserPositions(variables, options), + getMasterChefV2UserPositions(variables, options), ] : [] const promises = await Promise.allSettled([ ...masterChefPromises, ...miniChefChainIds.map((chainId) => - getMiniChefUserPositions({ - ...variables, - chainId, - }), + getMiniChefUserPositions( + { + ...variables, + chainId, + }, + options, + ), ), ]) diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client-new/src/composite/sushi-day-datas.ts index 06c76efe60..be9e679b26 100644 --- a/packages/graph-client-new/src/composite/sushi-day-datas.ts +++ b/packages/graph-client-new/src/composite/sushi-day-datas.ts @@ -13,19 +13,23 @@ import { isSushiSwapV2ChainId, isSushiSwapV3ChainId, } from 'sushi/config' +import type { RequestOptions } from 'src/lib/request' export type GetSushiDayDatas = {} & ChainIdsVariable< SushiSwapV2ChainId | SushiSwapV3ChainId > -export async function getSushiDayDatas({ - chainIds = Array.from( - new Set([ - ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, - ...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, - ]), - ), -}: GetSushiDayDatas) { +export async function getSushiDayDatas( + { + chainIds = Array.from( + new Set([ + ...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, + ...SUSHISWAP_V3_SUPPORTED_CHAIN_IDS, + ]), + ), + }: GetSushiDayDatas, + options?: RequestOptions, +) { const sushiSwapV2ChainIds = chainIds.filter(isSushiSwapV2ChainId) const v2p = fetchMultichain({ chainIds: sushiSwapV2ChainIds, @@ -35,6 +39,7 @@ export async function getSushiDayDatas({ orderBy: 'date', orderDirection: 'desc', }, + options, }) const sushiSwapV3ChainIds = chainIds.filter(isSushiSwapV3ChainId) @@ -46,6 +51,7 @@ export async function getSushiDayDatas({ orderBy: 'date', orderDirection: 'desc', }, + options, }) const [ diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts index ec3791e328..d196d2453c 100644 --- a/packages/graph-client-new/src/composite/sushi-historic-pool.ts +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -1,3 +1,4 @@ +import type { RequestOptions } from 'src/lib/request' import { getBlockHistoric } from 'src/subgraphs/blocks/queries/block-historic' import { type GetSushiV2Pool, @@ -28,46 +29,52 @@ type Result = PoolHistory1D< PoolWithBuckets | PoolV3> > -async function fetchSushiV2Pool({ - chainId, - ...variables -}: GetSushiV2Pool | GetSushiV3Pool) { +async function fetchSushiV2Pool( + { chainId, ...variables }: GetSushiV2Pool | GetSushiV3Pool, + options?: RequestOptions, +) { if (!isSushiSwapV2ChainId(chainId)) { throw new Error(`ChainId ${chainId} is not a SushiSwap V2 chain`) } - return getSushiV2Pool({ chainId, ...variables }) + return getSushiV2Pool({ chainId, ...variables }, options) } -async function fetchSushiV3Pool({ - chainId, - ...variables -}: GetSushiV2Pool | GetSushiV3Pool) { +async function fetchSushiV3Pool( + { chainId, ...variables }: GetSushiV2Pool | GetSushiV3Pool, + options?: RequestOptions, +) { if (!isSushiSwapV3ChainId(chainId)) { throw new Error(`ChainId ${chainId} is not a SushiSwap V3 chain`) } - return getSushiV3Pool({ chainId, ...variables }) + return getSushiV3Pool({ chainId, ...variables }, options) } -export async function getSushiHistoricPool({ - chainId, - ...variables -}: GetSushiHistoricPool): Promise { +export async function getSushiHistoricPool( + { chainId, ...variables }: GetSushiHistoricPool, + options?: RequestOptions, +): Promise { const id = variables.id.toLowerCase() // FETCH const v2poolF = isSushiSwapV2ChainId(chainId) - ? getSushiV2PoolBuckets({ - chainId, - id, - }) + ? getSushiV2PoolBuckets( + { + chainId, + id, + }, + options, + ) : null const v3poolF = isSushiSwapV3ChainId(chainId) - ? getSushiV3PoolBuckets({ - chainId, - id, - }) + ? getSushiV3PoolBuckets( + { + chainId, + id, + }, + options, + ) : null const [v2poolS, v3poolS] = await Promise.allSettled([v2poolF, v3poolF]) @@ -84,16 +91,22 @@ export async function getSushiHistoricPool({ const getPoolTimeAgo = async ( ago: Omit[0], 'chainId'>, ) => { - return getBlockHistoric({ - chainId, - ...ago, - }) + return getBlockHistoric( + { + chainId, + ...ago, + }, + options, + ) .then(async (block) => { - return fetcher({ - chainId, - id, - block: { number: block.number }, - }) + return fetcher( + { + chainId, + id, + block: { number: block.number }, + }, + options, + ) }) .catch(() => null) } diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client-new/src/lib/request-paged.ts index 3d77bc0b52..92ba780061 100644 --- a/packages/graph-client-new/src/lib/request-paged.ts +++ b/packages/graph-client-new/src/lib/request-paged.ts @@ -1,5 +1,5 @@ import type { ResultOf, TadaDocumentNode, VariablesOf } from 'gql.tada' -import _request from 'graphql-request' +import { type RequestOptions, request as _request } from 'src/lib/request' import type { ChainId } from 'sushi/chain' import { MAX_FIRST } from 'sushi/config/subgraph' import { FetchError } from './fetch-error' @@ -9,6 +9,7 @@ interface RequestPaged>> { url: string query: T variables: VariablesOf + options?: RequestOptions | undefined } type ResultOfValue = @@ -18,8 +19,12 @@ function request( url: string, query: T, variables: VariablesOf, + options?: RequestOptions, ): Promise> { - return _request(url, query, variables as any) as Promise> + return _request( + { url, document: query, variables: variables as any }, + options, + ) as Promise> } /** @@ -37,6 +42,7 @@ export async function requestPaged({ url, query, variables, + options, }: RequestPaged) { const maxFirst = MAX_FIRST[chainId] @@ -90,16 +96,21 @@ export async function requestPaged({ while (lastSize === maxFirst) { const lastIdWhere: any = typeof lastId === 'string' ? { id_gt: lastId } : {} - const result = await request(url, query, { - ...variables, - first: maxFirst, - where: { - ...(variables?.['where'] ?? {}), - ...lastIdWhere, + const result = await request( + url, + query, + { + ...variables, + first: maxFirst, + where: { + ...(variables?.['where'] ?? {}), + ...lastIdWhere, + }, + orderBy: 'id', + orderDirection: 'asc', }, - orderBy: 'id', - orderDirection: 'asc', - }).then((r: ResultOf) => { + options, + ).then((r: ResultOf) => { if (!r) return null return Object.values(r)[0] as ResultOfValue }) diff --git a/packages/graph-client-new/src/lib/request.ts b/packages/graph-client-new/src/lib/request.ts new file mode 100644 index 0000000000..6b8e9aa7f0 --- /dev/null +++ b/packages/graph-client-new/src/lib/request.ts @@ -0,0 +1,49 @@ +import { + type RequestExtendedOptions, + request as _request, +} from 'graphql-request' + +export interface RequestOptions { + retries?: number + timeout?: number +} + +function delayWithError(ms: number) { + return new Promise((resolve) => + setTimeout(() => resolve(undefined), ms), + ) +} + +async function requestWithTimeout( + options: RequestExtendedOptions, + timeout: number, +): Promise { + const res = await Promise.race([_request(options), delayWithError(timeout)]) + + if (typeof res === 'undefined') { + throw new Error('Request timed out') + } + + return res as Awaited +} + +export async function request( + params: RequestExtendedOptions, + options: RequestOptions = {}, +): Promise { + let remainingRetries = options.retries ?? 1 + + while (remainingRetries > 0) { + try { + if (options.timeout) { + return await requestWithTimeout(params, options.timeout) + } else { + return await _request(params) + } + } catch { + remainingRetries-- + } + } + + throw new Error('Retries exceeded') +} diff --git a/packages/graph-client-new/src/multichain/fetch-multichain.ts b/packages/graph-client-new/src/multichain/fetch-multichain.ts index dd38bb7daa..0b0b724a03 100644 --- a/packages/graph-client-new/src/multichain/fetch-multichain.ts +++ b/packages/graph-client-new/src/multichain/fetch-multichain.ts @@ -1,4 +1,5 @@ import type { FetchError } from '../lib/fetch-error' +import type { RequestOptions } from '../lib/request' export type Variables = keyof Omit< T, @@ -12,7 +13,8 @@ export type FetchMultichain< RET extends Promise, > = { chainIds: Readonly - fetch: (variables: ARG) => RET + fetch: (variables: ARG, options?: RequestOptions) => RET + options?: RequestOptions | undefined } & Variables export async function fetchMultichain< @@ -22,13 +24,14 @@ export async function fetchMultichain< chainIds, fetch, variables, + options, }: FetchMultichain): Promise<{ data: Awaited extends unknown[] ? Awaited : Awaited[] errors: FetchError[] }> { const promises = await Promise.allSettled( chainIds.map((chainId) => { - return fetch({ ...(variables as ARG), chainId }) + return fetch({ ...(variables as ARG), chainId }, options) }), ) diff --git a/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts b/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts index 3f67e17a93..cb978db6e1 100644 --- a/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts +++ b/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts @@ -5,6 +5,7 @@ import { BENTOBOX_SUBGRAPH_URL } from 'sushi/config/subgraph' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { type RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' @@ -28,7 +29,10 @@ export const BentoBoxRebasesQuery = graphql(` export type GetRebases = VariablesOf & ChainIdVariable -export async function getRebases({ chainId, ...variables }: GetRebases) { +export async function getRebases( + { chainId, ...variables }: GetRebases, + options?: RequestOptions, +) { const url = `https://${BENTOBOX_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -36,6 +40,7 @@ export async function getRebases({ chainId, ...variables }: GetRebases) { url, query: BentoBoxRebasesQuery, variables, + options, }) return result.rebases.map((rebase) => diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts index 67497582d1..7936a6b424 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts @@ -1,3 +1,4 @@ +import type { RequestOptions } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' import { getBlocks } from './blocks' @@ -12,16 +13,19 @@ type GetBlockHistoric = { yearsAgo?: number } & ChainIdVariable -export async function getBlockHistoric({ - chainId, - secsAgo = 0, - minsAgo = 0, - hoursAgo = 0, - daysAgo = 0, - weeksAgo = 0, - monthsAgo = 0, - yearsAgo = 0, -}: GetBlockHistoric) { +export async function getBlockHistoric( + { + chainId, + secsAgo = 0, + minsAgo = 0, + hoursAgo = 0, + daysAgo = 0, + weeksAgo = 0, + monthsAgo = 0, + yearsAgo = 0, + }: GetBlockHistoric, + options?: RequestOptions, +) { const current = Math.floor(Date.now() / 1000) const ago = secsAgo + @@ -34,15 +38,18 @@ export async function getBlockHistoric({ const target = current - ago - const blocks = await getBlocks({ - chainId, - first: 1, - orderBy: 'timestamp', - orderDirection: 'asc', - where: { - timestamp_gte: String(target), + const blocks = await getBlocks( + { + chainId, + first: 1, + orderBy: 'timestamp', + orderDirection: 'asc', + where: { + timestamp_gte: String(target), + }, }, - }) + options, + ) const block = blocks[0] diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts index ff84f888cd..3ae82aba7c 100644 --- a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts +++ b/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts @@ -1,7 +1,7 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { ChainId } from 'sushi/chain' import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' @@ -22,7 +22,10 @@ export const BlocksQuery = graphql( export type GetBlocks = VariablesOf & ChainIdVariable -export async function getBlocks({ chainId, ...variables }: GetBlocks) { +export async function getBlocks( + { chainId, ...variables }: GetBlocks, + options?: RequestOptions, +) { const baseUrl = BLOCKS_SUBGRAPH_URL[chainId] if (!baseUrl) { @@ -31,7 +34,10 @@ export async function getBlocks({ chainId, ...variables }: GetBlocks) { const url = `https://${baseUrl}` - const result = await request(url, BlocksQuery, variables) + const result = await request( + { url, document: BlocksQuery, variables }, + options, + ) return result.blocks.map((block) => ({ id: block.id, diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts index 7d54657396..736ed12478 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts @@ -4,6 +4,7 @@ import { BONDS_SUBGRAPH_URL, type BondChainId } from '@sushiswap/bonds-sdk' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' @@ -54,10 +55,10 @@ export const BondMarketsQuery = graphql( export type GetBondMarkets = VariablesOf & ChainIdVariable -export async function getBondMarkets({ - chainId, - ...variables -}: GetBondMarkets) { +export async function getBondMarkets( + { chainId, ...variables }: GetBondMarkets, + options?: RequestOptions, +) { const url = `https://${BONDS_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -65,6 +66,7 @@ export async function getBondMarkets({ url, query: BondMarketsQuery, variables, + options, }) return result.markets.map((market) => { diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts index 5942bdf556..aaa1e0f1db 100644 --- a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts +++ b/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts @@ -4,6 +4,7 @@ import { BONDS_SUBGRAPH_URL, type BondChainId } from '@sushiswap/bonds-sdk' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' @@ -36,10 +37,10 @@ export const BondUserPositionsQuery = graphql( export type GetBondUserPositions = VariablesOf & ChainIdVariable -export async function getBondUserPositions({ - chainId, - ...variables -}: GetBondUserPositions) { +export async function getBondUserPositions( + { chainId, ...variables }: GetBondUserPositions, + options?: RequestOptions, +) { const url = `https://${BONDS_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -47,6 +48,7 @@ export async function getBondUserPositions({ url, query: BondUserPositionsQuery, variables, + options, }) return result.positions.map((position) => { diff --git a/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts index 009a4e119a..ffaeecd437 100644 --- a/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts @@ -5,6 +5,7 @@ import { FURO_SUBGRAPH_URL } from 'sushi/config/subgraph' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' @@ -29,7 +30,10 @@ export const FuroTokensQuery = graphql(` export type GetFuroTokens = VariablesOf & ChainIdVariable -export async function getFuroTokens({ chainId, ...variables }: GetFuroTokens) { +export async function getFuroTokens( + { chainId, ...variables }: GetFuroTokens, + options?: RequestOptions, +) { const url = `https://${FURO_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -37,6 +41,7 @@ export async function getFuroTokens({ chainId, ...variables }: GetFuroTokens) { url, query: FuroTokensQuery, variables, + options, }) return result.tokens.map((token) => diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts index 67df634761..63e4762316 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts @@ -3,6 +3,7 @@ import type { VariablesOf } from 'gql.tada' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import { ChainId } from 'sushi/chain' import { MASTERCHEF_V1_SUBGRAPH_URL } from 'sushi/config/subgraph' @@ -28,9 +29,10 @@ export type GetMasterChefV1UserPositions = VariablesOf< typeof MasterChefV1UserPositionsQuery > -export async function getMasterChefV1UserPositions({ - ...variables -}: GetMasterChefV1UserPositions) { +export async function getMasterChefV1UserPositions( + { ...variables }: GetMasterChefV1UserPositions, + options?: RequestOptions, +) { const url = `https://${MASTERCHEF_V1_SUBGRAPH_URL}` const result = await requestPaged({ @@ -38,6 +40,7 @@ export async function getMasterChefV1UserPositions({ url, query: MasterChefV1UserPositionsQuery, variables, + options, }) return result.positions.flatMap((position) => { diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts index 78ae0a9e23..169faf4e33 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import { ChainId } from 'sushi/chain' import { MASTERCHEF_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import { graphql } from '../graphql' @@ -10,8 +11,8 @@ export const MasterChefV2RewardersQuery = graphql( query MasterChefV2Rewarders( $first: Int = 1000 $skip: Int = 0 - $where: MasterChef_Rewarder_filter - $block: MasterChef_Block_height + $where: Rewarder_filter + $block: Block_height ) { rewarders(first: $first, skip: $skip, where: $where, block: $block) { id @@ -26,9 +27,10 @@ export type GetMasterChefV2Rewarders = VariablesOf< typeof MasterChefV2RewardersQuery > -export async function getMasterChefV2Rewarders({ - ...variables -}: GetMasterChefV2Rewarders) { +export async function getMasterChefV2Rewarders( + { ...variables }: GetMasterChefV2Rewarders, + options?: RequestOptions, +) { const url = `https://${MASTERCHEF_V2_SUBGRAPH_URL}` const result = await requestPaged({ @@ -36,6 +38,7 @@ export async function getMasterChefV2Rewarders({ url, query: MasterChefV2RewardersQuery, variables, + options, }) return result.rewarders.map((rewarder) => { diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts index 17fe00c159..23bfff6ffe 100644 --- a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts @@ -5,6 +5,7 @@ import { MASTERCHEF_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import { SushiSwapProtocol } from 'sushi' import { graphql } from '../graphql' @@ -28,9 +29,10 @@ export type GetMasterChefV2UserPositions = VariablesOf< typeof MasterChefV2UserPositionsQuery > -export async function getMasterChefV2UserPositions({ - ...variables -}: GetMasterChefV2UserPositions) { +export async function getMasterChefV2UserPositions( + { ...variables }: GetMasterChefV2UserPositions, + options?: RequestOptions, +) { const url = `https://${MASTERCHEF_V2_SUBGRAPH_URL}` const result = await requestPaged({ @@ -38,6 +40,7 @@ export async function getMasterChefV2UserPositions({ url, query: MasterChefV2UserPositionsQuery, variables, + options, }) return result.positions.flatMap((position) => { diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts index 9d52a16064..6647e9b19c 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts @@ -1,5 +1,6 @@ import type { VariablesOf } from 'gql.tada' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { MiniChefChainId } from 'sushi/config' @@ -11,8 +12,8 @@ export const MiniChefRewardersQuery = graphql( query MiniChefRewarders( $first: Int = 1000 $skip: Int = 0 - $where: MiniChef_Rewarder_filter - $block: MiniChef_Block_height + $where: Rewarder_filter + $block: Block_height ) { rewarders: rewarders(first: $first, skip: $skip, where: $where, block: $block) { id @@ -27,10 +28,10 @@ query MiniChefRewarders( export type GetMiniChefRewarders = VariablesOf & ChainIdVariable -export async function getMiniChefRewarders({ - chainId, - ...variables -}: GetMiniChefRewarders) { +export async function getMiniChefRewarders( + { chainId, ...variables }: GetMiniChefRewarders, + options?: RequestOptions, +) { const url = `https://${MINICHEF_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -38,6 +39,7 @@ export async function getMiniChefRewarders({ url, query: MiniChefRewardersQuery, variables, + options, }) return result.rewarders.map((rewarder) => { diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts index e350be57ba..389b644d17 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts @@ -1,5 +1,6 @@ import type { VariablesOf } from 'gql.tada' +import type { RequestOptions } from 'src/lib/request' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' @@ -30,10 +31,10 @@ export type GetMiniChefUserPositions = VariablesOf< > & ChainIdVariable -export async function getMiniChefUserPositions({ - chainId, - ...variables -}: GetMiniChefUserPositions) { +export async function getMiniChefUserPositions( + { chainId, ...variables }: GetMiniChefUserPositions, + options?: RequestOptions, +) { const url = `https://${MINICHEF_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -41,6 +42,7 @@ export async function getMiniChefUserPositions({ url, query: MiniChefUserPositionsQuery, variables, + options, }) return result.positions.flatMap((position) => { diff --git a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts index 1ada0b50a3..bf4a1b630f 100644 --- a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts +++ b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts @@ -1,6 +1,7 @@ import type { VariablesOf } from 'gql.tada' import { STEER_SUBGRAPH_URL, type SteerChainId } from '@sushiswap/steer-sdk' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { type Address, SushiSwapProtocol, getIdFromChainIdAddress } from 'sushi' @@ -49,10 +50,10 @@ export const SteerVaultsQuery = graphql(` export type GetSteerVaults = VariablesOf & ChainIdVariable -export async function getSteerVaults({ - chainId, - ...variables -}: GetSteerVaults) { +export async function getSteerVaults( + { chainId, ...variables }: GetSteerVaults, + options?: RequestOptions, +) { const url = `https://${STEER_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -60,6 +61,7 @@ export async function getSteerVaults({ url, query: SteerVaultsQuery, variables, + options, }) return result.vaults.map((vault) => ({ diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts index e112e65176..a506812b2d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts @@ -1,6 +1,6 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' +import { type RequestOptions, request } from 'src/lib/request' import { SUSHI_BAR_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' @@ -40,10 +40,16 @@ export const SushiBarHistoryQuery = graphql( export type GetSushiBarHistory = VariablesOf -export async function getSushiBarHistory(variables: GetSushiBarHistory) { +export async function getSushiBarHistory( + variables: GetSushiBarHistory, + options?: RequestOptions, +) { const url = `https://${SUSHI_BAR_SUBGRAPH_URL}` - const result = await request(url, SushiBarHistoryQuery, variables) + const result = await request( + { url, document: SushiBarHistoryQuery, variables }, + options, + ) return result } diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts index 6236b894a1..2778e85319 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts @@ -1,7 +1,7 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import { SUSHI_BAR_SUBGRAPH_URL } from 'sushi/config/subgraph' import { graphql } from '../graphql' @@ -25,10 +25,16 @@ export const SushiBarQuery = graphql( export type GetSushiBar = VariablesOf -export async function getSushiBar(variables: GetSushiBar) { +export async function getSushiBar( + variables: GetSushiBar, + options?: RequestOptions, +) { const url = `https://${SUSHI_BAR_SUBGRAPH_URL}` - const result = await request(url, SushiBarQuery, variables) + const result = await request( + { url, document: SushiBarQuery, variables }, + options, + ) if (result) { return result.xsushi diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts index becdd43bfe..ca27da5d1d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts @@ -3,6 +3,7 @@ import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -29,10 +30,10 @@ export const SushiV2BurnsQuery = graphql(` export type GetSushiV2Burns = VariablesOf & ChainIdVariable -export async function getSushiV2Burns({ - chainId, - ...variables -}: GetSushiV2Burns) { +export async function getSushiV2Burns( + { chainId, ...variables }: GetSushiV2Burns, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -40,6 +41,7 @@ export async function getSushiV2Burns({ url, query: SushiV2BurnsQuery, variables, + options, }) if (result) { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts index 4e5cc96f34..0730e7fe37 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -23,10 +24,10 @@ export const SushiV2DayDatasQuery = graphql(` export type GetSushiV2DayDatas = VariablesOf & ChainIdVariable -export async function getSushiV2DayDatas({ - chainId, - ...variables -}: GetSushiV2DayDatas) { +export async function getSushiV2DayDatas( + { chainId, ...variables }: GetSushiV2DayDatas, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -34,6 +35,7 @@ export async function getSushiV2DayDatas({ url, query: SushiV2DayDatasQuery, variables, + options, }) return result.uniswapDayDatas diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts index aaa1569e28..868d3730f4 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts @@ -1,5 +1,4 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' @@ -7,6 +6,7 @@ import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -25,17 +25,20 @@ export const SushiV2FactoriesQuery = graphql(` export type GetSushiV2Factory = VariablesOf & ChainIdVariable -export async function getSushiV2Factory({ - chainId, - ...variables -}: GetSushiV2Factory) { +export async function getSushiV2Factory( + { chainId, ...variables }: GetSushiV2Factory, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` - const result = await request({ - url, - document: SushiV2FactoriesQuery, - variables, - }) + const result = await request( + { + url, + document: SushiV2FactoriesQuery, + variables, + }, + options, + ) if (result.factories[0]) { return convertIdToMultichainId( diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts index 22b58cd0d5..ed85ad9ae6 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts @@ -1,16 +1,17 @@ import type { VariablesOf } from 'gql.tada' -import type { Hex } from 'src/lib/types/hex' import { type SushiSwapV2ChainId, publicClientConfig } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { SushiSwapProtocol } from 'sushi/types' import { createPublicClient, erc20Abi } from 'viem' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' -import { SushiSwapProtocol } from 'sushi/types' +import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' export const SushiV2LiquidityPositionsQuery = graphql(` @@ -33,10 +34,10 @@ export type GetSushiV2LiquidityPositions = VariablesOf< > & ChainIdVariable -export async function getSushiV2LiquidityPositions({ - chainId, - ...variables -}: GetSushiV2LiquidityPositions) { +export async function getSushiV2LiquidityPositions( + { chainId, ...variables }: GetSushiV2LiquidityPositions, + options?: RequestOptions, +) { try { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` @@ -45,6 +46,7 @@ export async function getSushiV2LiquidityPositions({ url, query: SushiV2LiquidityPositionsQuery, variables, + options, }) const transformed = result.liquidityPositions.map((position) => { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts index ad7b6a9d2d..b6d7ab7bfc 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -28,10 +29,10 @@ export const SushiV2MintsQuery = graphql(` export type GetSushiV2Mints = VariablesOf & ChainIdVariable -export async function getSushiV2Mints({ - chainId, - ...variables -}: GetSushiV2Mints) { +export async function getSushiV2Mints( + { chainId, ...variables }: GetSushiV2Mints, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -39,6 +40,7 @@ export async function getSushiV2Mints({ url, query: SushiV2MintsQuery, variables, + options, }) return result.mints diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts index 5e4f7e276e..4be25e973d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts @@ -1,9 +1,9 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' import { transformBucketsV2ToStd } from 'src/subgraphs/sushi-v2/transforms/bucket-v2-to-std' @@ -47,10 +47,10 @@ export type GetSushiV2PoolBuckets = Omit< export type SushiV2PoolBuckets = PoolWithBuckets> -export async function getSushiV2PoolBuckets({ - chainId, - ...variables -}: GetSushiV2PoolBuckets): Promise { +export async function getSushiV2PoolBuckets( + { chainId, ...variables }: GetSushiV2PoolBuckets, + options?: RequestOptions, +): Promise { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` if (variables?.dayDataFirst || 0 > 1000) { @@ -59,11 +59,18 @@ export async function getSushiV2PoolBuckets({ ) } - const result = await request(url, SushiV2PoolBucketsQuery, { - ...variables, - id: variables.id.toLowerCase(), - id_Bytes: variables.id.toLowerCase() as Hex, - }) + const result = await request( + { + url, + document: SushiV2PoolBucketsQuery, + variables: { + ...variables, + id: variables.id.toLowerCase(), + id_Bytes: variables.id.toLowerCase() as Hex, + }, + }, + options, + ) if (result.pool) { return { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts index da4977108c..285686c144 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts @@ -1,10 +1,10 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import type { PoolBase, PoolV2 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import { transformPoolV2ToBase } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-base' import { PoolFieldsFragment } from '../fragments/pool-fields' @@ -24,13 +24,16 @@ export const SushiV2PoolQuery = graphql( export type GetSushiV2Pool = VariablesOf & ChainIdVariable -export async function getSushiV2Pool({ - chainId, - ...variables -}: GetSushiV2Pool): Promise> { +export async function getSushiV2Pool( + { chainId, ...variables }: GetSushiV2Pool, + options?: RequestOptions, +): Promise> { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` - const result = await request(url, SushiV2PoolQuery, variables) + const result = await request( + { url, document: SushiV2PoolQuery, variables }, + options, + ) if (result.pool) { return transformPoolV2ToBase(result.pool, chainId) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts index add9a0734f..d9cf360d55 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts @@ -4,6 +4,7 @@ import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import type { PoolBase, PoolV2 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { transformPoolV2ToBase } from 'src/subgraphs/sushi-v2/transforms/pool-v2-to-base' @@ -26,10 +27,10 @@ export type GetSushiV2Pools = VariablesOf & export type SushiV2Pools = PoolV2[] -export async function getSushiV2Pools({ - chainId, - ...variables -}: GetSushiV2Pools): Promise { +export async function getSushiV2Pools( + { chainId, ...variables }: GetSushiV2Pools, + options?: RequestOptions, +): Promise { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -37,6 +38,7 @@ export async function getSushiV2Pools({ url, query: SushiV2PoolsQuery, variables, + options, }) if (result) { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts index 6b1ca04bf5..ad128c5b90 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -32,10 +33,10 @@ export const SushiV2SwapsQuery = graphql(` export type GetSushiV2Swaps = VariablesOf & ChainIdVariable -export async function getSushiV2Swaps({ - chainId, - ...variables -}: GetSushiV2Swaps) { +export async function getSushiV2Swaps( + { chainId, ...variables }: GetSushiV2Swaps, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -43,6 +44,7 @@ export async function getSushiV2Swaps({ url, query: SushiV2SwapsQuery, variables, + options, }) return result.swaps diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts index 93fe318e04..c7bcd61c82 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts @@ -5,6 +5,7 @@ import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -25,10 +26,10 @@ export const SushiV2TokensQuery = graphql(` export type GetSushiV2Tokens = VariablesOf & ChainIdVariable -export async function getSushiV2Tokens({ - chainId, - ...variables -}: GetSushiV2Tokens) { +export async function getSushiV2Tokens( + { chainId, ...variables }: GetSushiV2Tokens, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -36,6 +37,7 @@ export async function getSushiV2Tokens({ url, query: SushiV2TokensQuery, variables, + options, }) return result.tokens.map((token) => diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts index 66ed8039ae..eb9ab4744f 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV2ChainId } from 'sushi/config' import { SUSHISWAP_V2_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -50,10 +51,10 @@ export type GetSushiV2Transactions = VariablesOf< > & ChainIdVariable -export async function getSushiV2Transactions({ - chainId, - ...variables -}: GetSushiV2Transactions) { +export async function getSushiV2Transactions( + { chainId, ...variables }: GetSushiV2Transactions, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V2_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -61,6 +62,7 @@ export async function getSushiV2Transactions({ url, query: SushiV2TransactionsQuery, variables, + options, }) return result.transactions diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts index 3ffd37747a..65be7966bb 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -29,10 +30,10 @@ export const SushiV3BurnsQuery = graphql(` export type GetSushiV3Burns = VariablesOf & ChainIdVariable -export async function getSushiV3Burns({ - chainId, - ...variables -}: GetSushiV3Burns) { +export async function getSushiV3Burns( + { chainId, ...variables }: GetSushiV3Burns, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -40,6 +41,7 @@ export async function getSushiV3Burns({ url, query: SushiV3BurnsQuery, variables, + options, }) return result.burns diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts index 913d0825d5..b578d88731 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -27,10 +28,10 @@ export const SushiV3CollectsQuery = graphql(` export type GetSushiV3Collects = VariablesOf & ChainIdVariable -export async function getSushiV3Collects({ - chainId, - ...variables -}: GetSushiV3Collects) { +export async function getSushiV3Collects( + { chainId, ...variables }: GetSushiV3Collects, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -38,6 +39,7 @@ export async function getSushiV3Collects({ url, query: SushiV3CollectsQuery, variables, + options, }) return result.collects diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index c9aa4cc021..e1e8c8e7e5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -5,6 +5,7 @@ import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' +import type { RequestOptions } from 'src/lib/request' export const SushiV3DayDatasQuery = graphql(` query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) { @@ -24,10 +25,10 @@ export const SushiV3DayDatasQuery = graphql(` export type GetSushiV3DayDatas = VariablesOf & ChainIdVariable -export async function getSushiV3DayDatas({ - chainId, - ...variables -}: GetSushiV3DayDatas) { +export async function getSushiV3DayDatas( + { chainId, ...variables }: GetSushiV3DayDatas, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -35,6 +36,7 @@ export async function getSushiV3DayDatas({ url, query: SushiV3DayDatasQuery, variables, + options, }) return result.uniswapDayDatas diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts index 7709bde53e..94a15007f5 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts @@ -1,5 +1,4 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' @@ -7,6 +6,7 @@ import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { Hex } from 'src/lib/types/hex' import { graphql } from '../graphql' @@ -25,17 +25,20 @@ export const SushiV3FactoriesQuery = graphql(` export type GetSushiV3Factory = VariablesOf & ChainIdVariable -export async function getSushiV3Factory({ - chainId, - ...variables -}: GetSushiV3Factory) { +export async function getSushiV3Factory( + { chainId, ...variables }: GetSushiV3Factory, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` - const result = await request({ - url, - document: SushiV3FactoriesQuery, - variables, - }) + const result = await request( + { + url, + document: SushiV3FactoriesQuery, + variables, + }, + options, + ) if (result.factories[0]) { const factory = result.factories[0] diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index 17726848f5..b8b680e015 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -7,6 +7,7 @@ import { addChainId } from 'src/lib/modifiers/add-chain-id' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' +import type { RequestOptions } from 'src/lib/request' export const SushiV3MintsQuery = graphql(` query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) { @@ -32,10 +33,10 @@ export const SushiV3MintsQuery = graphql(` export type GetSushiV3Mints = VariablesOf & ChainIdVariable -export async function getSushiV3Mints({ - chainId, - ...variables -}: GetSushiV3Mints) { +export async function getSushiV3Mints( + { chainId, ...variables }: GetSushiV3Mints, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -43,6 +44,7 @@ export async function getSushiV3Mints({ url, query: SushiV3MintsQuery, variables, + options, }) if (result) { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts index 2b0c3e615d..403ce4d7a3 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts @@ -1,10 +1,10 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import type { PoolBase, PoolV3, PoolWithBuckets } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import { transformBucketsV3ToStd } from 'src/subgraphs/sushi-v3/transforms/bucket-v3-to-std' @@ -47,13 +47,16 @@ export type GetSushiV3PoolBuckets = VariablesOf< export type SushiV3PoolBuckets = PoolWithBuckets> -export async function getSushiV3PoolBuckets({ - chainId, - ...variables -}: GetSushiV3PoolBuckets): Promise { +export async function getSushiV3PoolBuckets( + { chainId, ...variables }: GetSushiV3PoolBuckets, + options?: RequestOptions, +): Promise { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` - const result = await request(url, SushiV3PoolBucketsQuery, variables) + const result = await request( + { url, document: SushiV3PoolBucketsQuery, variables }, + options, + ) if (result.pool) { return { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts index 8e732cc79f..29c6fc25e1 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts @@ -1,10 +1,10 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import type { PoolBase, PoolV3 } from 'sushi/types' import { FetchError } from 'src/lib/fetch-error' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import { transformPoolV3ToBase } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-base' @@ -26,13 +26,16 @@ export type GetSushiV3Pool = VariablesOf & export type SushiV3Pool = PoolV3 -export async function getSushiV3Pool({ - chainId, - ...variables -}: GetSushiV3Pool): Promise { +export async function getSushiV3Pool( + { chainId, ...variables }: GetSushiV3Pool, + options?: RequestOptions, +): Promise { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` - const result = await request(url, SushiV3PoolQuery, variables) + const result = await request( + { url, document: SushiV3PoolQuery, variables }, + options, + ) if (result.pool) { return transformPoolV3ToBase(result.pool, chainId) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts index 4598b6eb09..ac93505260 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts @@ -1,8 +1,8 @@ import type { VariablesOf } from 'gql.tada' -import request from 'graphql-request' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import { type RequestOptions, request } from 'src/lib/request' import type { ChainIdVariable } from 'src/lib/types/chainId' import { PoolFieldsFragment } from 'src/subgraphs/sushi-v3/fragments/pool-fields' import { transformPoolV3ToBase } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-base' @@ -27,10 +27,10 @@ export type GetSushiV3PoolsByTokenPair = { export type SushiV3PoolsByTokenPair = PoolV3 -export async function getSushiV3PoolsByTokenPair({ - chainId, - ..._variables -}: GetSushiV3PoolsByTokenPair) { +export async function getSushiV3PoolsByTokenPair( + { chainId, ..._variables }: GetSushiV3PoolsByTokenPair, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const tokens = [_variables.token0, _variables.token1].sort() as [ @@ -45,11 +45,14 @@ export async function getSushiV3PoolsByTokenPair({ }, } - const result = await request({ - url, - document: SushiV3PoolsByTokenPairQuery, - variables, - }) + const result = await request( + { + url, + document: SushiV3PoolsByTokenPairQuery, + variables, + }, + options, + ) return result.pools.map((pool) => transformPoolV3ToBase(pool, chainId)) } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts index a0881f78d8..48eeed0276 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts @@ -8,6 +8,7 @@ import type { ChainIdVariable } from 'src/lib/types/chainId' import { transformPoolV3ToBase } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-base' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' +import type { RequestOptions } from 'src/lib/request' export const SushiV3PoolsQuery = graphql( ` @@ -23,10 +24,10 @@ export const SushiV3PoolsQuery = graphql( export type GetSushiV3Pools = VariablesOf & ChainIdVariable -export async function getSushiV3Pools({ - chainId, - ...variables -}: GetSushiV3Pools) { +export async function getSushiV3Pools( + { chainId, ...variables }: GetSushiV3Pools, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -34,6 +35,7 @@ export async function getSushiV3Pools({ url, query: SushiV3PoolsQuery, variables, + options, }) if (result) { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts index 1df198276e..4cf276a570 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -29,10 +30,10 @@ export const SushiV3SwapsQuery = graphql(` export type GetSushiV3Swaps = VariablesOf & ChainIdVariable -export async function getSushiV3Swaps({ - chainId, - ...variables -}: GetSushiV3Swaps) { +export async function getSushiV3Swaps( + { chainId, ...variables }: GetSushiV3Swaps, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -40,6 +41,7 @@ export async function getSushiV3Swaps({ url, query: SushiV3SwapsQuery, variables, + options, }) return result.swaps diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts index 0a47cc69ff..a5a5a6d86d 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts @@ -2,6 +2,7 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' @@ -60,10 +61,10 @@ export type GetSushiV3Transactions = VariablesOf< > & ChainIdVariable -export async function getSushiV3Transactions({ - chainId, - ...variables -}: GetSushiV3Transactions) { +export async function getSushiV3Transactions( + { chainId, ...variables }: GetSushiV3Transactions, + options?: RequestOptions, +) { const url = `https://${SUSHISWAP_V3_SUBGRAPH_URL[chainId]}` const result = await requestPaged({ @@ -71,6 +72,7 @@ export async function getSushiV3Transactions({ url, query: SushiV3TransactionsQuery, variables, + options, }) return result.transactions From 80f10b43a94b3b2549c150f8561c34047935b6b2 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sat, 8 Jun 2024 11:37:37 +0000 Subject: [PATCH 065/119] feat: split up sushi/pool --- .../app/pool/[id]/smart/[vaultId]/page.tsx | 2 +- .../src/app/pool/add/v2/[chainId]/page.tsx | 4 +-- apps/evm/src/app/pool/incentivize/page.tsx | 2 +- apps/evm/src/lib/functions.ts | 26 +++---------------- .../v3/use-concentrated-active-liquidity.ts | 2 +- .../src/lib/pool/v3/use-is-tick-at-limit.ts | 2 +- apps/evm/src/lib/pool/v3/use-ticks.ts | 5 +++- .../components/user-profile/Notification.tsx | 2 +- .../user-profile/NotificationGroup.tsx | 2 +- .../wagmi/hooks/pools/actions/getAllPools.ts | 2 +- .../actions/getConcentratedLiquidityPool.ts | 5 +++- .../getConcentratedLiquidityPoolReserves.ts | 5 +++- .../pools/actions/getSushiSwapV2Pools.ts | 5 +++- .../wagmi/hooks/pools/actions/getV3Pools.ts | 2 +- .../useConcentratedLiquidityPoolReserves.ts | 2 +- .../wagmi/hooks/pools/hooks/usePoolsAsMap.ts | 11 ++------ .../hooks/pools/hooks/useSushiSwapV2Pools.ts | 5 +++- .../getConcentratedLiquidityPositions.ts | 2 +- ...centratedLiquidityPositionsFromTokenIds.ts | 2 +- .../useConcentratedLiquidityPositions.ts | 8 +++--- .../hooks/useConcentratedPositionInfo.ts | 2 +- .../src/lib/wagmi/systems/PoolFinder/types.ts | 2 +- .../AddSectionReviewModalConcentrated.tsx | 2 +- .../ConcentratedLiquidityCollectButton.tsx | 2 +- .../ui/pool/ConcentratedLiquidityProvider.tsx | 2 +- .../ConcentratedLiquidityRemoveWidget.tsx | 2 +- .../ui/pool/ConcentratedLiquidityWidget.tsx | 2 +- .../pool/LiquidityChartRangeInput/index.tsx | 2 +- apps/evm/src/ui/pool/MigrateTab.tsx | 2 +- apps/evm/src/ui/pool/PoolHeader.tsx | 2 +- apps/evm/src/ui/pool/PriceRangeCell.tsx | 2 +- apps/evm/src/ui/pool/SelectPricesWidget.tsx | 6 ++--- .../SteerStrategyLiquidityDistribution.tsx | 2 +- jobs/pool/src/steer.ts | 2 +- .../src/notifications/useNotifications.ts | 2 +- packages/sushi/package.json | 6 ++--- .../compute-trident-stable-pool-address.ts | 4 +++ .../src/components/toast/ToastCompleted.tsx | 2 +- .../ui/src/components/toast/ToastFailed.tsx | 2 +- .../ui/src/components/toast/ToastInfo.tsx | 2 +- .../ui/src/components/toast/ToastPending.tsx | 2 +- 41 files changed, 70 insertions(+), 78 deletions(-) diff --git a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx index f281b31c4e..60c7a4bea1 100644 --- a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx +++ b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx @@ -13,7 +13,7 @@ import { unstable_cache } from 'next/cache' import { publicClientConfig } from 'sushi/config' import { Token } from 'sushi/currency' import { formatNumber, unsanitize } from 'sushi/format' -import { tickToPrice } from 'sushi/pool' +import { tickToPrice } from 'sushi/pool/sushiswap-v3' import { PublicClient, createPublicClient } from 'viem' import { SteerStrategyComponents, diff --git a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx index 5f8f33d3c1..9a62385c74 100644 --- a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx +++ b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx @@ -30,18 +30,18 @@ import { } from 'sushi/config' import { Amount, Type, tryParseAmount } from 'sushi/currency' import { ZERO } from 'sushi/math' -import { SushiSwapV2Pool } from 'sushi/pool' +import { SushiSwapV2Pool } from 'sushi/pool/sushiswap-v2' import { SWRConfig } from 'swr' import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { SushiSwapV2PoolState } from 'src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools' import { Checker } from 'src/lib/wagmi/systems/Checker' import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' +import { PoolFinder } from 'src/lib/wagmi/systems/PoolFinder/PoolFinder' import { AddSectionPoolShareCardV2 } from 'src/ui/pool/AddSectionPoolShareCardV2' import { AddSectionReviewModalLegacy } from '../../../../../ui/pool/AddSectionReviewModalLegacy' import { SelectNetworkWidget } from '../../../../../ui/pool/SelectNetworkWidget' import { SelectTokensWidget } from '../../../../../ui/pool/SelectTokensWidget' -import { PoolFinder } from 'src/lib/wagmi/systems/PoolFinder/PoolFinder' export default function Page({ params }: { params: { chainId: string } }) { const router = useRouter() diff --git a/apps/evm/src/app/pool/incentivize/page.tsx b/apps/evm/src/app/pool/incentivize/page.tsx index 3d4391ba29..533ffe581f 100644 --- a/apps/evm/src/app/pool/incentivize/page.tsx +++ b/apps/evm/src/app/pool/incentivize/page.tsx @@ -48,7 +48,7 @@ import { isWNativeSupported, } from 'sushi/config' import { Token, Type, tryParseAmount } from 'sushi/currency' -import { SushiSwapV3Pool } from 'sushi/pool' +import { SushiSwapV3Pool } from 'sushi/pool/sushiswap-v3' import { Address, zeroAddress } from 'viem' import { useAccount, useWaitForTransactionReceipt } from 'wagmi' import { ConcentratedLiquidityProvider } from '../../../ui/pool/ConcentratedLiquidityProvider' diff --git a/apps/evm/src/lib/functions.ts b/apps/evm/src/lib/functions.ts index b1ada03814..a70de43241 100644 --- a/apps/evm/src/lib/functions.ts +++ b/apps/evm/src/lib/functions.ts @@ -1,4 +1,3 @@ -import { Protocol } from '@sushiswap/client' import type { Incentive } from 'sushi' import { ChainId } from 'sushi/chain' import { SushiSwapV3FeeAmount, TICK_SPACINGS } from 'sushi/config' @@ -12,44 +11,25 @@ import { WBTC, tryParseAmount, } from 'sushi/currency' +import { SushiSwapV2Pool } from 'sushi/pool/sushiswap-v2' import { Position, - SushiSwapV2Pool, TickMath, - TridentConstantPool, - TridentStablePool, encodeSqrtRatioX96, nearestUsableTick, priceToClosestTick, tickToPrice, -} from 'sushi/pool' +} from 'sushi/pool/sushiswap-v3' import { Bound } from './constants' import { useTicks } from './hooks' import { TickProcessed } from './pool/v3/use-concentrated-active-liquidity' -export const isTridentConstantPool = ( - pool: SushiSwapV2Pool | TridentConstantPool | TridentStablePool | null, -): pool is TridentConstantPool => { - return pool instanceof TridentConstantPool -} - -export const isTridentStablePool = ( - pool: SushiSwapV2Pool | TridentStablePool | null, -): pool is TridentStablePool => { - return pool instanceof TridentStablePool -} - export const isSushiSwapV2Pool = ( - pool: SushiSwapV2Pool | TridentConstantPool | TridentStablePool | null, + pool: SushiSwapV2Pool | null, ): pool is SushiSwapV2Pool => { return pool instanceof SushiSwapV2Pool } -export const isTridentPoolProtocol = (protocol: Protocol) => - ( - [Protocol.BENTOBOX_CLASSIC, Protocol.BENTOBOX_STABLE] as Protocol[] - ).includes(protocol) - export const incentiveRewardToToken = ( chainId: ChainId, incentive: Incentive, diff --git a/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts b/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts index 5718d317d2..44c9ed30c7 100644 --- a/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts +++ b/apps/evm/src/lib/pool/v3/use-concentrated-active-liquidity.ts @@ -7,7 +7,7 @@ import { TICK_SPACINGS, } from 'sushi/config' import { Type } from 'sushi/currency' -import { tickToPrice } from 'sushi/pool' +import { tickToPrice } from 'sushi/pool/sushiswap-v3' import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' import computeSurroundingTicks from '../../functions' diff --git a/apps/evm/src/lib/pool/v3/use-is-tick-at-limit.ts b/apps/evm/src/lib/pool/v3/use-is-tick-at-limit.ts index 0e436745d3..bf34f7225b 100644 --- a/apps/evm/src/lib/pool/v3/use-is-tick-at-limit.ts +++ b/apps/evm/src/lib/pool/v3/use-is-tick-at-limit.ts @@ -2,7 +2,7 @@ import { useMemo } from 'react' import { SushiSwapV3FeeAmount, TICK_SPACINGS } from 'sushi/config' -import { TickMath, nearestUsableTick } from 'sushi/pool' +import { TickMath, nearestUsableTick } from 'sushi/pool/sushiswap-v3' import { Bound } from '../../constants' export function useIsTickAtLimit( diff --git a/apps/evm/src/lib/pool/v3/use-ticks.ts b/apps/evm/src/lib/pool/v3/use-ticks.ts index 04cfbf73e9..3b3388f918 100644 --- a/apps/evm/src/lib/pool/v3/use-ticks.ts +++ b/apps/evm/src/lib/pool/v3/use-ticks.ts @@ -10,7 +10,10 @@ import { TICK_SPACINGS, } from 'sushi/config' import { Type } from 'sushi/currency' -import { computeSushiSwapV3PoolAddress, nearestUsableTick } from 'sushi/pool' +import { + computeSushiSwapV3PoolAddress, + nearestUsableTick, +} from 'sushi/pool/sushiswap-v3' import { Address } from 'viem' import { useReadContracts } from 'wagmi' import { Writeable } from 'zod' diff --git a/apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx b/apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx index 7e06b1b17e..25982f6c4b 100644 --- a/apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx +++ b/apps/evm/src/lib/wagmi/components/user-profile/Notification.tsx @@ -12,7 +12,7 @@ import { PlusIcon, XMarkIcon, } from '@heroicons/react/24/outline' -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { classNames } from '@sushiswap/ui' import { Currency as UICurrency } from '@sushiswap/ui/components/currency' import { NetworkIcon, SquidIcon } from '@sushiswap/ui/components/icons' diff --git a/apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx b/apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx index d1e6941abc..1c48893acb 100644 --- a/apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx +++ b/apps/evm/src/lib/wagmi/components/user-profile/NotificationGroup.tsx @@ -1,7 +1,7 @@ import { Disclosure } from '@headlessui/react' import { FC } from 'react' -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { Notification } from './Notification' interface NotificationGroupProps { diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts index e2415e1b3b..9d4df603b7 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getAllPools.ts @@ -1,7 +1,7 @@ import { isSushiSwapV2ChainId, isSushiSwapV3ChainId } from 'sushi/config' import { Type } from 'sushi/currency' import { TradeType } from 'sushi/dex' -import { SushiSwapV2Pool } from 'sushi/pool' +import { SushiSwapV2Pool } from 'sushi/pool/sushiswap-v2' import { getCurrencyCombinations } from 'sushi/router' import { UniV3Pool } from 'sushi/tines' import { UsePoolsParams, UsePoolsReturn } from '../types' diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts index c49f9848f5..dc24af6328 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPool.ts @@ -4,7 +4,10 @@ import { SushiSwapV3FeeAmount, } from 'sushi/config' import { Token, Type } from 'sushi/currency' -import { SushiSwapV3Pool, computeSushiSwapV3PoolAddress } from 'sushi/pool' +import { + SushiSwapV3Pool, + computeSushiSwapV3PoolAddress, +} from 'sushi/pool/sushiswap-v3' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts index ae0574571e..d5a0e4662a 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getConcentratedLiquidityPoolReserves.ts @@ -1,6 +1,9 @@ import { SUSHISWAP_V3_FACTORY_ADDRESS, SushiSwapV3ChainId } from 'sushi/config' import { Amount } from 'sushi/currency' -import { SushiSwapV3Pool, computeSushiSwapV3PoolAddress } from 'sushi/pool' +import { + SushiSwapV3Pool, + computeSushiSwapV3PoolAddress, +} from 'sushi/pool/sushiswap-v3' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { getBalance } from '@wagmi/core' diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts index 5dd54ca9e1..373babd3a0 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getSushiSwapV2Pools.ts @@ -7,7 +7,10 @@ import { isSushiSwapV2ChainId, } from 'sushi/config' import { Amount, Currency, Token, Type } from 'sushi/currency' -import { SushiSwapV2Pool, computeSushiSwapV2PoolAddress } from 'sushi/pool' +import { + SushiSwapV2Pool, + computeSushiSwapV2PoolAddress, +} from 'sushi/pool/sushiswap-v2' export enum PairState { LOADING = 'Loading', diff --git a/apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts index 5eb6796569..442b2e8e3f 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/actions/getV3Pools.ts @@ -10,7 +10,7 @@ import { SushiSwapV3FeeAmount, } from 'sushi/config' import { Currency, Token, Type } from 'sushi/currency' -import { computeSushiSwapV3PoolAddress } from 'sushi/pool' +import { computeSushiSwapV3PoolAddress } from 'sushi/pool/sushiswap-v3' import { RToken, UniV3Pool } from 'sushi/tines' import { Address } from 'viem' diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts index 33c072adcf..e1316d8fc0 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPoolReserves.ts @@ -1,6 +1,6 @@ import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' -import { SushiSwapV3Pool } from 'sushi/pool' +import { SushiSwapV3Pool } from 'sushi/pool/sushiswap-v3' import { useConfig } from 'wagmi' import { getConcentratedLiquidityPoolReserves } from '../actions/getConcentratedLiquidityPoolReserves' diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts index 90f782f8bd..b441d0fdd8 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/usePoolsAsMap.ts @@ -8,10 +8,8 @@ import { Token } from 'sushi/currency' import { Fee } from 'sushi/dex' import { SushiSwapV2Pool, - TridentConstantPool, - TridentStablePool, computeSushiSwapV2PoolAddress, -} from 'sushi/pool' +} from 'sushi/pool/sushiswap-v2' import { useConfig } from 'wagmi' import { getAllPools } from '../actions/getAllPools' @@ -67,12 +65,7 @@ export const usePoolsAsMap = ({ config, }) const pools = [...(data.sushiSwapV2Pools || [])] - return pools.reduce< - Record< - string, - SushiSwapV2Pool | TridentConstantPool | TridentStablePool - > - >((acc, cur) => { + return pools.reduce>((acc, cur) => { acc[cur.liquidityToken.address] = cur return acc }, {}) diff --git a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts index cb6f5f46f5..e896a0ec76 100644 --- a/apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts +++ b/apps/evm/src/lib/wagmi/hooks/pools/hooks/useSushiSwapV2Pools.ts @@ -9,7 +9,10 @@ import { isSushiSwapV2ChainId, } from 'sushi/config' import { Amount, Currency, Token, Type } from 'sushi/currency' -import { SushiSwapV2Pool, computeSushiSwapV2PoolAddress } from 'sushi/pool' +import { + SushiSwapV2Pool, + computeSushiSwapV2PoolAddress, +} from 'sushi/pool/sushiswap-v2' import { Address } from 'viem' import { UseReadContractsParameters, diff --git a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts index 72a67f6254..d41133c082 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositions.ts @@ -5,7 +5,7 @@ import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId, } from 'sushi/config' -import { computeSushiSwapV3PoolAddress } from 'sushi/pool' +import { computeSushiSwapV3PoolAddress } from 'sushi/pool/sushiswap-v3' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' diff --git a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts index 4068f75ba9..4365db3e2a 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/actions/getConcentratedLiquidityPositionsFromTokenIds.ts @@ -3,7 +3,7 @@ import { SUSHISWAP_V3_POSTIION_MANAGER, SushiSwapV3ChainId, } from 'sushi/config' -import { computeSushiSwapV3PoolAddress } from 'sushi/pool' +import { computeSushiSwapV3PoolAddress } from 'sushi/pool/sushiswap-v3' import { PublicWagmiConfig } from '@sushiswap/wagmi-config' import { readContracts } from '@wagmi/core/actions' diff --git a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts index 88bf677c76..9eb993eda8 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedLiquidityPositions.ts @@ -3,18 +3,18 @@ import { useAllPrices, usePrices } from '@sushiswap/react-query' import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' import { Amount, Token } from 'sushi/currency' -import { Position, SushiSwapV3Pool } from 'sushi/pool' +import { Position, SushiSwapV3Pool } from 'sushi/pool/sushiswap-v3' import { useMemo } from 'react' import { Address } from 'viem' import { useConfig } from 'wagmi' -import { ConcentratedLiquidityPosition } from '../types' -import { getConcentratedLiquidityPositions } from '../actions/getConcentratedLiquidityPositions' +import { getConcentratedLiquidityPool } from '../../pools/actions/getConcentratedLiquidityPool' import { getTokenWithCacheQueryFn, getTokenWithQueryCacheHydrate, } from '../../tokens/useTokenWithCache' -import { getConcentratedLiquidityPool } from '../../pools/actions/getConcentratedLiquidityPool' +import { getConcentratedLiquidityPositions } from '../actions/getConcentratedLiquidityPositions' +import { ConcentratedLiquidityPosition } from '../types' interface UseConcentratedLiquidityPositionsData extends ConcentratedLiquidityPosition { diff --git a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts index 7dd57a72f5..a39ad64c28 100644 --- a/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts +++ b/apps/evm/src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo.ts @@ -1,7 +1,7 @@ import { useQuery } from '@tanstack/react-query' import { SushiSwapV3ChainId } from 'sushi/config' import { Type } from 'sushi/currency' -import { Position } from 'sushi/pool' +import { Position } from 'sushi/pool/sushiswap-v3' import { stringify } from 'viem' import { useConfig } from 'wagmi' diff --git a/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts b/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts index b719b8c7e9..e5c29f2d8a 100644 --- a/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts +++ b/apps/evm/src/lib/wagmi/systems/PoolFinder/types.ts @@ -1,7 +1,7 @@ import { ReactElement } from 'react' import { SushiSwapV2ChainId } from 'sushi/config' import { Type } from 'sushi/currency' -import { SushiSwapV2Pool } from 'sushi/pool' +import { SushiSwapV2Pool } from 'sushi/pool/sushiswap-v2' import { SushiSwapV2PoolState } from '../../hooks/pools/hooks/useSushiSwapV2Pools' export type ComponentsWrapperProps = { diff --git a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx index 7c1afdcaf4..7eaf434371 100644 --- a/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx +++ b/apps/evm/src/ui/pool/AddSectionReviewModalConcentrated.tsx @@ -33,7 +33,7 @@ import { isSushiSwapV3ChainId, } from 'sushi/config' import { Amount, Type, tryParseAmount } from 'sushi/currency' -import { NonfungiblePositionManager, Position } from 'sushi/pool' +import { NonfungiblePositionManager, Position } from 'sushi/pool/sushiswap-v3' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' import { UseCallParameters, diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx index 9a8467b718..6c4bcde4f7 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityCollectButton.tsx @@ -9,7 +9,7 @@ import { isSushiSwapV3ChainId, } from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' -import { NonfungiblePositionManager, Position } from 'sushi/pool' +import { NonfungiblePositionManager, Position } from 'sushi/pool/sushiswap-v3' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' import { UseCallParameters, diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx index c9989aa399..31afe25dbf 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityProvider.tsx @@ -37,7 +37,7 @@ import { priceToClosestTick, priceToNumber, tickToPrice, -} from 'sushi/pool' +} from 'sushi/pool/sushiswap-v3' type FullRange = true diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx index aef664f627..32aa04a7c9 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityRemoveWidget.tsx @@ -48,7 +48,7 @@ import { } from 'sushi/config' import { Amount, Type, unwrapToken } from 'sushi/currency' import { Percent, ZERO } from 'sushi/math' -import { NonfungiblePositionManager, Position } from 'sushi/pool' +import { NonfungiblePositionManager, Position } from 'sushi/pool/sushiswap-v3' import { Hex, SendTransactionReturnType, UserRejectedRequestError } from 'viem' import { useCall, diff --git a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx index 41413b361a..85f519908c 100644 --- a/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx +++ b/apps/evm/src/ui/pool/ConcentratedLiquidityWidget.tsx @@ -13,7 +13,7 @@ import { isWNativeSupported, } from 'sushi/config' import { Type } from 'sushi/currency' -import { Position } from 'sushi/pool' +import { Position } from 'sushi/pool/sushiswap-v3' import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { useConcentratedPositionOwner } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner' diff --git a/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx b/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx index 100fe65bab..4b68094f6e 100644 --- a/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx +++ b/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx @@ -5,7 +5,7 @@ import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Bound } from 'src/lib/constants' import { SushiSwapV3ChainId, SushiSwapV3FeeAmount } from 'sushi/config' import { Price, Token, Type } from 'sushi/currency' -import { getPriceRangeWithTokenRatio } from 'sushi/pool' +import { getPriceRangeWithTokenRatio } from 'sushi/pool/sushiswap-v3' import colors from 'tailwindcss/colors' import { Chart } from './Chart' diff --git a/apps/evm/src/ui/pool/MigrateTab.tsx b/apps/evm/src/ui/pool/MigrateTab.tsx index 3174e7f30a..075656548d 100644 --- a/apps/evm/src/ui/pool/MigrateTab.tsx +++ b/apps/evm/src/ui/pool/MigrateTab.tsx @@ -75,7 +75,7 @@ import { SushiSwapV3Pool, TickMath, priceToClosestTick, -} from 'sushi/pool' +} from 'sushi/pool/sushiswap-v3' import { Address } from 'viem' import { useAccount, useWaitForTransactionReceipt } from 'wagmi' import { useConcentratedDerivedMintInfo } from './ConcentratedLiquidityProvider' diff --git a/apps/evm/src/ui/pool/PoolHeader.tsx b/apps/evm/src/ui/pool/PoolHeader.tsx index f364779296..c0eb8320e7 100644 --- a/apps/evm/src/ui/pool/PoolHeader.tsx +++ b/apps/evm/src/ui/pool/PoolHeader.tsx @@ -20,7 +20,7 @@ import React, { FC, useMemo } from 'react' import { Chain } from 'sushi/chain' import { Token, unwrapToken } from 'sushi/currency' import { formatPercent, shortenAddress } from 'sushi/format' -import { SushiSwapV3Pool } from 'sushi/pool' +import { SushiSwapV3Pool } from 'sushi/pool/sushiswap-v3' import { APRHoverCard } from './APRHoverCard' diff --git a/apps/evm/src/ui/pool/PriceRangeCell.tsx b/apps/evm/src/ui/pool/PriceRangeCell.tsx index aa95b4fef6..73143f3294 100644 --- a/apps/evm/src/ui/pool/PriceRangeCell.tsx +++ b/apps/evm/src/ui/pool/PriceRangeCell.tsx @@ -13,7 +13,7 @@ import { import { usePriceInverter } from 'src/lib/hooks' import { useIsTickAtLimit } from 'src/lib/pool/v3' import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' -import { Position } from 'sushi/pool' +import { Position } from 'sushi/pool/sushiswap-v3' export const PriceRangeCell: FC> = ({ original }) => { diff --git a/apps/evm/src/ui/pool/SelectPricesWidget.tsx b/apps/evm/src/ui/pool/SelectPricesWidget.tsx index c7e52428f2..9e39cb0de4 100644 --- a/apps/evm/src/ui/pool/SelectPricesWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPricesWidget.tsx @@ -41,14 +41,16 @@ import { Bound, Field } from 'src/lib/constants' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { SushiSwapV3ChainId, SushiSwapV3FeeAmount } from 'sushi/config' import { Type, tryParseAmount } from 'sushi/currency' -import { getCapitalEfficiency, getTokenRatio } from 'sushi/pool' +import { getCapitalEfficiency, getTokenRatio } from 'sushi/pool/sushiswap-v3' import { RadioGroup } from '@headlessui/react' import { LockClosedIcon, LockOpenIcon } from '@heroicons/react/24/solid' import { ExclamationTriangleIcon } from '@heroicons/react/24/solid' import { useConcentratedLiquidityPoolStats } from '@sushiswap/react-query' +import { useConcentratedLiquidityPositionsFromTokenId } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId' import { formatPercent } from 'sushi/format' import { Fraction } from 'sushi/math' +import { useAccount } from 'wagmi' import { useConcentratedDerivedMintInfo, useConcentratedMintActionHandlers, @@ -56,8 +58,6 @@ import { useRangeHopCallbacks, } from './ConcentratedLiquidityProvider' import LiquidityChartRangeInput from './LiquidityChartRangeInput' -import { useConcentratedLiquidityPositionsFromTokenId } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionsFromTokenId' -import { useAccount } from 'wagmi' enum PriceRange { FULL_RANGE = 0, diff --git a/apps/evm/src/ui/pool/Steer/SteerStrategyLiquidityChart/SteerStrategyLiquidityDistribution.tsx b/apps/evm/src/ui/pool/Steer/SteerStrategyLiquidityChart/SteerStrategyLiquidityDistribution.tsx index c6c21852a1..d724f2249a 100644 --- a/apps/evm/src/ui/pool/Steer/SteerStrategyLiquidityChart/SteerStrategyLiquidityDistribution.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerStrategyLiquidityChart/SteerStrategyLiquidityDistribution.tsx @@ -4,7 +4,7 @@ import { useConcentratedLiquidityPoolStats } from '@sushiswap/react-query' import { SkeletonBox } from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { SushiSwapV3ChainId } from 'sushi/config' -import { TickMath, tickToPrice } from 'sushi/pool' +import { TickMath, tickToPrice } from 'sushi/pool/sushiswap-v3' import type { PoolId } from 'sushi/types' import { useConcentratedDerivedMintInfo } from '../../ConcentratedLiquidityProvider' import { useDensityChartData } from '../../LiquidityChartRangeInput/hooks' diff --git a/jobs/pool/src/steer.ts b/jobs/pool/src/steer.ts index 0bb70377e9..e4891dfe0f 100644 --- a/jobs/pool/src/steer.ts +++ b/jobs/pool/src/steer.ts @@ -8,7 +8,7 @@ import { getVerifiedVaults, } from '@sushiswap/steer-sdk' import { ID, chainName, isPromiseFulfilled } from 'sushi' -import { TickMath } from 'sushi/pool' +import { TickMath } from 'sushi/pool/sushiswap-v3' import { getAddress } from 'viem' import { updatePoolsWithSteerVaults } from './etl/pool/load.js' diff --git a/packages/dexie/src/notifications/useNotifications.ts b/packages/dexie/src/notifications/useNotifications.ts index cd99397722..5946b0b001 100644 --- a/packages/dexie/src/notifications/useNotifications.ts +++ b/packages/dexie/src/notifications/useNotifications.ts @@ -2,7 +2,7 @@ import { useLiveQuery } from 'dexie-react-hooks' import groupBy from 'lodash.groupby' import { db } from '../db.js' -import { type ResolvedNotification } from './types.js' +import type { ResolvedNotification } from './types.js' export const useNotifications = ({ account, diff --git a/packages/sushi/package.json b/packages/sushi/package.json index 96200c1925..3e43764884 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -73,9 +73,9 @@ "types": "./dist/log/index.d.ts", "default": "./dist/log/index.js" }, - "./pool": { - "types": "./dist/pool/index.d.ts", - "default": "./dist/pool/index.js" + "./pool/*": { + "types": "./dist/pool/*/index.d.ts", + "default": "./dist/pool/*/index.js" }, "./router": { "types": "./dist/router/index.d.ts", diff --git a/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts b/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts index e6d3702ce2..9eef5bb1e4 100644 --- a/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts +++ b/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts @@ -25,12 +25,16 @@ export const computeTridentStablePoolAddress = ({ [token0.address, token1.address, fee], ) + const STABLE_POOL_INIT_CODE_HASH = + '0xf12c5d0bd466e168fefdf789d5c48040e038cb71f6b1bcc741e9ae57205f3906' + /* const STABLE_POOL_INIT_CODE_HASH = keccak256( ['bytes'], [ '0x6101e060405260016006553480156200001757600080fd5b50604080518082018252601581527f537573686920537461626c65204c5020546f6b656e0000000000000000000000602080830191825283518085019094526004845263053534c560e41b9084015281519192916012916200007d9160009190620004f6565b50815162000093906001906020850190620004f6565b5060ff81166080524660a052620000a96200045a565b60c08181525050505050600080336001600160a01b031663d039f6226040518163ffffffff1660e01b8152600401600060405180830381865afa158015620000f5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200011f9190810190620005dd565b915091506000806000848060200190518101906200013e9190620006ce565b919450925090506001600160a01b0383166200016d5760405163d92e233d60e01b815260040160405180910390fd5b816001600160a01b0316836001600160a01b03161415620001a15760405163065af08d60e01b815260040160405180910390fd5b612710811115620001c55760405163da7459b760e01b815260040160405180910390fd5b6001600160a01b038084166101608190529083166101805260e0829052612710829003610100526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa15801562000228573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200024e919062000716565b6200025b90600a62000857565b6101a08181525050816001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c8919062000716565b620002d590600a62000857565b6101c08181525050836001600160a01b031663c14ad8026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200031c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000342919062000868565b600781905550836001600160a01b0316630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000387573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ad919062000882565b600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550836001600160a01b0316634da318276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000412573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000438919062000882565b6001600160a01b03908116610120529390931661014052506200098392505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516200048e9190620008df565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8280546200050490620008a2565b90600052602060002090601f01602090048101928262000528576000855562000573565b82601f106200054357805160ff191683800117855562000573565b8280016001018555821562000573579182015b828111156200057357825182559160200191906001019062000556565b506200058192915062000585565b5090565b5b8082111562000581576000815560010162000586565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620005c857600080fd5b50565b8051620005d881620005b2565b919050565b60008060408385031215620005f157600080fd5b82516001600160401b03808211156200060957600080fd5b818501915085601f8301126200061e57600080fd5b8151818111156200063357620006336200059c565b604051601f8201601f19908116603f011681019083821181831017156200065e576200065e6200059c565b816040528281526020935088848487010111156200067b57600080fd5b600091505b828210156200069f578482018401518183018501529083019062000680565b82821115620006b15760008484830101525b9550620006c3915050858201620005cb565b925050509250929050565b600080600060608486031215620006e457600080fd5b8351620006f181620005b2565b60208501519093506200070481620005b2565b80925050604084015190509250925092565b6000602082840312156200072957600080fd5b815160ff811681146200073b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620007995781600019048211156200077d576200077d62000742565b808516156200078b57918102915b93841c93908002906200075d565b509250929050565b600082620007b25750600162000851565b81620007c15750600062000851565b8160018114620007da5760028114620007e55762000805565b600191505062000851565b60ff841115620007f957620007f962000742565b50506001821b62000851565b5060208310610133831016604e8410600b84101617156200082a575081810a62000851565b62000836838362000758565b80600019048211156200084d576200084d62000742565b0290505b92915050565b60006200073b60ff841683620007a1565b6000602082840312156200087b57600080fd5b5051919050565b6000602082840312156200089557600080fd5b81516200073b81620005b2565b600181811c90821680620008b757607f821691505b60208210811415620008d957634e487b7160e01b600052602260045260246000fd5b50919050565b600080835481600182811c915080831680620008fc57607f831692505b60208084108214156200091d57634e487b7160e01b86526022600452602486fd5b818015620009345760018114620009465762000975565b60ff1986168952848901965062000975565b60008a81526020902060005b868110156200096d5781548b82015290850190830162000952565b505084890196505b509498975050505050505050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c051613e6262000b73600039600081816104fc0152818161288201528181612d2e01528181612df70152612e260152600081816104ad0152818161284701528181612cf301528181612da60152612e770152600081816105b3015281816107e401528181610c7001528181610d5401528181610f8e01528181610fc3015281816111bc0152818161162a015281816116f801528181611a2901528181611a92015281816122e701528181612a840152612c34015260008181610326015281816107bf01528181610c4401528181610ceb01528181610f350152818161104d0152818161114e0152818161159a015281816117b901528181611ac701528181611b640152818161216a015281816129a90152612b5f01526000818161058c0152818161080901528181611f320152611fc70152600081816103fb01528181611529015281816115ee0152818161177d0152818161219e01528181612319015281816125f1015281816126ba01528181612784015281816129dc01528181612ab501528181612b8d0152612c620152600050506000818161042201528181612d6a01528181612f040152612f6f01526000610e6f01526000610e3a015260006103ba0152613e626000f3fe608060405234801561001057600080fd5b506004361061025c5760003560e01c806367e4ac2c11610145578063a8f1f52e116100bd578063cf58879a1161008c578063d505accf11610071578063d505accf146105d5578063dd62ed3e146105e8578063f1c49a391461061357600080fd5b8063cf58879a14610587578063d21220a7146105ae57600080fd5b8063a8f1f52e14610545578063a9059cbb14610558578063af8c09bf1461056b578063c14ad8021461057e57600080fd5b80637bdd6b441161011457806395d89b41116100f957806395d89b41146104ef578063a28af8a4146104f7578063a69840a81461051e57600080fd5b80637bdd6b44146104a85780637ecebe00146104cf57600080fd5b806367e4ac2c1461045757806370a082311461046c5780637464fc3d1461048c5780637ba0e2e71461049557600080fd5b80632a07b6c7116101d8578063499a3c50116101a757806354cf2aeb1161018c57806354cf2aeb1461041d578063627dd56a1461044457806365dfc7671461029c57600080fd5b8063499a3c50146102615780634da31827146103f657600080fd5b80632a07b6c71461036e57806330adf81f1461038e578063313ce567146103b55780633644e515146103ee57600080fd5b80630c0a0cd21161022f57806318160ddd1161021457806318160ddd146103485780631dd19cb41461035157806323b872dd1461035b57600080fd5b80630c0a0cd2146102dc5780630dfe16811461032157600080fd5b8063053da1c81461026157806306fdde03146102875780630902f1ac1461029c578063095ea7b3146102b9575b600080fd5b61027461026f3660046136cf565b61061b565b6040519081526020015b60405180910390f35b61028f610622565b60405161027e919061376d565b6102a46106b0565b6040805192835260208301919091520161027e565b6102cc6102c73660046137e3565b6106c8565b604051901515815260200161027e565b6008546102fc9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161027e565b6102fc7f000000000000000000000000000000000000000000000000000000000000000081565b61027460025481565b610359610742565b005b6102cc61036936600461380f565b610a09565b61038161037c3660046136cf565b610b4f565b60405161027e9190613850565b6102747f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103dc7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161027e565b610274610e36565b6102fc7f000000000000000000000000000000000000000000000000000000000000000081565b6102747f000000000000000000000000000000000000000000000000000000000000000081565b6102746104523660046136cf565b610e91565b61045f61112c565b60405161027e91906138b5565b61027461047a36600461390f565b60036020526000908152604090205481565b61027460095481565b6102746104a33660046136cf565b61122b565b6102747f000000000000000000000000000000000000000000000000000000000000000081565b6102746104dd36600461390f565b60056020526000908152604090205481565b61028f61149f565b6102747f000000000000000000000000000000000000000000000000000000000000000081565b6102747f54726964656e743a537461626c65506f6f6c000000000000000000000000000081565b6102746105533660046136cf565b6114ac565b6102cc6105663660046137e3565b61188b565b6102746105793660046136cf565b611910565b61027460075481565b6102fc7f000000000000000000000000000000000000000000000000000000000000000081565b6102fc7f000000000000000000000000000000000000000000000000000000000000000081565b6103596105e336600461392c565b611c04565b6102746105f63660046139a3565b600460209081526000928352604080842090915290825290205481565b610359611f30565b6000806000fd5b6000805461062f906139dc565b80601f016020809104026020016040519081016040528092919081815260200182805461065b906139dc565b80156106a85780601f1061067d576101008083540402835291602001916106a8565b820191906000526020600020905b81548152906001019060200180831161068b57829003601f168201915b505050505081565b6000806106c0600a54600b549091565b915091509091565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906107309086815260200190565b60405180910390a35060015b92915050565b6006546001146107b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b600260068190555060007f0000000000000000000000000000000000000000000000000000000000000000905060007f0000000000000000000000000000000000000000000000000000000000000000905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16638da5cb5b6040518163ffffffff1660e01b81526004016020604051808303816000875af1158015610874573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108989190613a30565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915061094d90829073ffffffffffffffffffffffffffffffffffffffff8616906370a0823190602401602060405180830381865afa15801561090b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061092f9190613a4d565b73ffffffffffffffffffffffffffffffffffffffff8616919061209b565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526109ff90829073ffffffffffffffffffffffffffffffffffffffff8516906370a0823190602401602060405180830381865afa1580156109bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109e19190613a4d565b73ffffffffffffffffffffffffffffffffffffffff8516919061209b565b5050600160065550565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a9d57610a6b8382613a95565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610ad2908490613a95565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610b3a9087815260200190565b60405180910390a360019150505b9392505050565b6060600654600114610bbd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016107aa565b6002600655600080610bd184860186613aba565b91509150600080610be061212d565b30600090815260036020526040812054929450909250610c00848461242b565b509050600081610c108685613ae8565b610c1a9190613b54565b9050600082610c298686613ae8565b610c339190613b54565b9050610c3f30856124f4565b610c6b7f0000000000000000000000000000000000000000000000000000000000000000838a8a61258a565b610c977f0000000000000000000000000000000000000000000000000000000000000000828a8a61258a565b610c9f6127ea565b6040805160028082526060820190925290816020015b6040805180820190915260008082526020820152815260200190600190039081610cb557905050985060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1681526020018381525089600081518110610d3c57610d3c613b8f565b602002602001018190525060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1681526020018281525089600181518110610da557610da5613b8f565b6020908102919091010152610dcc610dbd8388613a95565b610dc78388613a95565b612842565b600955604080518381526020810183905273ffffffffffffffffffffffffffffffffffffffff8a169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a3505060016006555094979650505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000004614610e6c57610e676128cc565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6000600654600114610eff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016107aa565b600260065560008080610f1485870187613bbe565b925092509250600080600080610f28612966565b93509350935093506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff161415610fc15750508382037f0000000000000000000000000000000000000000000000000000000000000000610fba8287876001612cee565b995061107c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614611046576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50508281037f00000000000000000000000000000000000000000000000000000000000000006110798287876000612cee565b99505b611088818b8a8a61258a565b6110906127ea565b8073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e46062858e60405161110f929190918252602082015260400190565b60405180910390a450506001600655509598975050505050505050565b60408051600280825260608083018452926020830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000000008160008151811061118057611180613b8f565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106111ee576111ee613b8f565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000600654600114611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016107aa565b600260065560006112ac8385018561390f565b90506000806112be600a54600b549091565b915091506000806112cd61212d565b9150915060006112dd8383612842565b905060006112eb8685613a95565b905060006112f98685613a95565b905060008061130a84848b8b612ea9565b90925090506113296dffffffffffffffffffffffffffff83168a613c09565b98506113456dffffffffffffffffffffffffffff821689613c09565b97506000806113548b8b61242b565b9150915081600014156113c35785158061136c575084155b156113a3576040517fd856fc5a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113af6103e888613a95565b9c506113be60006103e8612fac565b6113e6565b80826113cf828a613a95565b6113d99190613ae8565b6113e39190613b54565b9c505b8c61141d576040517fd226f9d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114278c8e612fac565b61142f6127ea565b6009879055604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff8e169133917fdbba30eb0402b389513e87f51f4db2db80bed454384ec6925a24097c3548a02a910160405180910390a35050600160065550989b9a5050505050505050505050565b6001805461062f906139dc565b600080806114bc848601866137e3565b915091506000806114d0600a54600b549091565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff878116600483015260248201879052600060448301529294509092507f000000000000000000000000000000000000000000000000000000000000000090911690635662311890606401602060405180830381865afa158015611572573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115969190613a4d565b92507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156116f6577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663da5139ca7f00000000000000000000000000000000000000000000000000000000000000006116568686866001612cee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152602482015260006044820152606401602060405180830381865afa1580156116cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116ef9190613a4d565b9450611881565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461177b576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663da5139ca7f00000000000000000000000000000000000000000000000000000000000000006117e58686866000612cee565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152602482015260006044820152606401602060405180830381865afa15801561185a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061187e9190613a4d565b94505b5050505092915050565b336000908152600360205260408120805483919083906118ac908490613a95565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906107309086815260200190565b600060065460011461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064016107aa565b60026006556000808061199385870187613bbe565b9250925092506000806119a9600a54600b549091565b915091506000806119b861212d565b306000908152600360205260408120549294509092506119d8848461242b565b5090506000816119e88685613ae8565b6119f29190613b54565b9050600082611a018686613ae8565b611a0b9190613b54565b9050611a1a610dbd8388613a95565b600955611a2730856124f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff161415611ac557611a8c82838a03838a036001612cee565b01611ab97f0000000000000000000000000000000000000000000000000000000000000000828c8c61258a565b809b5060009150611b92565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168b73ffffffffffffffffffffffffffffffffffffffff1614611b4a576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611b5b81838a03838a036000612cee565b82019150611b8b7f0000000000000000000000000000000000000000000000000000000000000000838c8c61258a565b5099508960005b611b9a6127ea565b604080518381526020810183905273ffffffffffffffffffffffffffffffffffffffff8c169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050600160065550979a9950505050505050505050565b42841015611c6e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064016107aa565b6000611c78610e36565b73ffffffffffffffffffffffffffffffffffffffff89811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938c166060840152608083018b905260a083019390935260c08083018a90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa158015611dd7573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff811615801590611e5257508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b611eb8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e455200000000000000000000000000000000000060448201526064016107aa565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208b8516808552908352928190208a905551898152919350918a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c14ad8026040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fbf9190613a4d565b6007819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa158015612030573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120549190613a30565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb0000000000000000000000000000000000000000000000000000000017905261212890849061301d565b505050565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000818116600484015230602484015260009283927f00000000000000000000000000000000000000000000000000000000000000001691635662311891839063f7888aec90604401602060405180830381865afa1580156121ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122119190613a4d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152602482015260006044820152606401602060405180830381865afa158015612286573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122aa9190613a4d565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000081811660048401523060248401529294507f00000000000000000000000000000000000000000000000000000000000000001691635662311891839063f7888aec90604401602060405180830381865afa158015612368573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061238c9190613a4d565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9092166004830152602482015260006044820152606401602060405180830381865afa158015612401573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124259190613a4d565b90509091565b60025460095460009080156124ec576124448585612842565b9150808211156124ec5760075460008161245e8486613a95565b6124689087613ae8565b6124729190613ae8565b905060006124808484613ae8565b8561248d85612710613a95565b6124979190613ae8565b6124a19190613c09565b905060006124af8284613b54565b905080156124e7576008546124da9073ffffffffffffffffffffffffffffffffffffffff1682612fac565b6124e48188613c09565b96505b505050505b509250929050565b73ffffffffffffffffffffffffffffffffffffffff821660009081526003602052604081208054839290612529908490613a95565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b8015612664576040517f97da6d3000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152306024830152838116604483015260648201859052600060848301527f000000000000000000000000000000000000000000000000000000000000000016906397da6d309060a40160408051808303816000875af1158015612639573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061265d9190613c21565b50506127e4565b6040517fda5139ca00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff858116600483015260248201859052600060448301819052917f00000000000000000000000000000000000000000000000000000000000000009091169063da5139ca90606401602060405180830381865afa158015612703573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127279190613a4d565b6040517ff18d03cc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff87811660048301523060248301528581166044830152606482018390529192507f00000000000000000000000000000000000000000000000000000000000000009091169063f18d03cc90608401600060405180830381600087803b1580156127ca57600080fd5b505af11580156127de573d6000803e3d6000fd5b50505050505b50505050565b6000806127f561212d565b600a829055600b81905560408051838152602081018390529294509092507fcf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848a910160405180910390a15050565b6000807f00000000000000000000000000000000000000000000000000000000000000008464e8d4a51000028161287b5761287b613b25565b04905060007f00000000000000000000000000000000000000000000000000000000000000008464e8d4a5100002816128b6576128b6613b25565b0490506128c38282613129565b95945050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516128fe9190613c45565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b600a54600b546040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600483015230602483015260009182917f0000000000000000000000000000000000000000000000000000000000000000169063f7888aec90604401602060405180830381865afa158015612a23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a479190613a4d565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301523060248301529193507f00000000000000000000000000000000000000000000000000000000000000009091169063f7888aec90604401602060405180830381865afa158015612afe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b229190613a4d565b6040517f4ffe34db00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301529192506000917f00000000000000000000000000000000000000000000000000000000000000001690634ffe34db906024016040805180830381865afa158015612bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bf79190613d38565b6040517f4ffe34db00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301529192506000917f00000000000000000000000000000000000000000000000000000000000000001690634ffe34db906024016040805180830381865afa158015612ca8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ccc9190613d38565b9050612cd88285613140565b9350612ce48184613140565b9250505090919293565b6000807f00000000000000000000000000000000000000000000000000000000000000008564e8d4a510000281612d2757612d27613b25565b04905060007f00000000000000000000000000000000000000000000000000000000000000008564e8d4a510000281612d6257612d62613b25565b0490506127107f000000000000000000000000000000000000000000000000000000000000000088020487036000612d9a8484613199565b90508515612e225760007f00000000000000000000000000000000000000000000000000000000000000008364e8d4a510000281612dda57612dda613b25565b04850190506000612dec828487613214565b64e8d4a510009086037f000000000000000000000000000000000000000000000000000000000000000002049650612e9d915050565b60007f00000000000000000000000000000000000000000000000000000000000000008364e8d4a510000281612e5a57612e5a613b25565b04840190506000612e6c828488613214565b64e8d4a510009087037f00000000000000000000000000000000000000000000000000000000000000000204965050505b50505050949350505050565b600080831580612eb7575082155b15612ec757506000905080612fa3565b600084612ed48589613ae8565b612ede9190613b54565b9050858111612f3957612ef46127106002613ae8565b612efe8288613a95565b612f28907f0000000000000000000000000000000000000000000000000000000000000000613ae8565b612f329190613b54565b9150612fa1565b600084612f468789613ae8565b612f509190613b54565b9050612f5f6127106002613ae8565b612f69828a613a95565b612f93907f0000000000000000000000000000000000000000000000000000000000000000613ae8565b612f9d9190613b54565b9350505b505b94509492505050565b8060026000828254612fbe9190613c09565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161257e565b600061307f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661331d9092919063ffffffff16565b805190915015612128578080602001905181019061309d9190613dba565b612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016107aa565b6000610b4861313b61313b8585613199565b613334565b600082602001516fffffffffffffffffffffffffffffffff166000141561316857508061073c565b602083015183516fffffffffffffffffffffffffffffffff9182169161318f911684613ae8565b610b489190613b54565b60008064e8d4a510006131ac8486613ae8565b6131b69190613b54565b9050600064e8d4a510006131ca8580613ae8565b6131d49190613b54565b64e8d4a510006131e48780613ae8565b6131ee9190613b54565b6131f89190613c09565b905064e8d4a5100061320a8284613ae8565b6128c39190613b54565b6000805b60ff8110156133145782600061322e87836133ed565b90508581101561327b5760006132448887613484565b61324e8389613a95565b61325d9064e8d4a51000613ae8565b6132679190613b54565b90506132738187613c09565b9550506132ba565b60006132878887613484565b6132918884613a95565b6132a09064e8d4a51000613ae8565b6132aa9190613b54565b90506132b68187613a95565b9550505b818511156132e35760016132ce8387613a95565b116132de57849350505050610b48565b6132ff565b60016132ef8684613a95565b116132ff57849350505050610b48565b5050808061330c90613dd7565b915050613218565b50909392505050565b606061332c84846000856134e6565b949350505050565b60b58171010000000000000000000000000000000000811061335b5760409190911b9060801c5b690100000000000000000081106133775760209190911b9060401c5b65010000000000811061338f5760109190911b9060201c5b630100000081106133a55760089190911b9060101c5b62010000010260121c80820401600190811c80830401811c80830401811c80830401811c80830401811c80830401811c80830401901c8082048111156133e85781045b919050565b600064e8d4a51000828185816134038280613ae8565b61340d9190613b54565b6134179190613ae8565b6134219190613b54565b61342b9190613ae8565b6134359190613b54565b64e8d4a510008084816134488280613ae8565b6134529190613b54565b61345c9190613ae8565b6134669190613b54565b6134709086613ae8565b61347a9190613b54565b610b489190613c09565b600064e8d4a5100083816134988280613ae8565b6134a29190613b54565b6134ac9190613ae8565b6134b69190613b54565b64e8d4a51000806134c78580613ae8565b6134d19190613b54565b6134dc866003613ae8565b6134709190613ae8565b606082471015613578576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016107aa565b73ffffffffffffffffffffffffffffffffffffffff85163b6135f6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107aa565b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161361f9190613e10565b60006040518083038185875af1925050503d806000811461365c576040519150601f19603f3d011682016040523d82523d6000602084013e613661565b606091505b509150915061367182828661367c565b979650505050505050565b6060831561368b575081610b48565b82511561369b5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107aa919061376d565b600080602083850312156136e257600080fd5b823567ffffffffffffffff808211156136fa57600080fd5b818501915085601f83011261370e57600080fd5b81358181111561371d57600080fd5b86602082850101111561372f57600080fd5b60209290920196919550909350505050565b60005b8381101561375c578181015183820152602001613744565b838111156127e45750506000910152565b602081526000825180602084015261378c816040850160208701613741565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b73ffffffffffffffffffffffffffffffffffffffff811681146137e057600080fd5b50565b600080604083850312156137f657600080fd5b8235613801816137be565b946020939093013593505050565b60008060006060848603121561382457600080fd5b833561382f816137be565b9250602084013561383f816137be565b929592945050506040919091013590565b602080825282518282018190526000919060409081850190868401855b828110156138a8578151805173ffffffffffffffffffffffffffffffffffffffff16855286015186850152928401929085019060010161386d565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561390357835173ffffffffffffffffffffffffffffffffffffffff16835292840192918401916001016138d1565b50909695505050505050565b60006020828403121561392157600080fd5b8135610b48816137be565b600080600080600080600060e0888a03121561394757600080fd5b8735613952816137be565b96506020880135613962816137be565b95506040880135945060608801359350608088013560ff8116811461398657600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156139b657600080fd5b82356139c1816137be565b915060208301356139d1816137be565b809150509250929050565b600181811c908216806139f057607f821691505b60208210811415613a2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b600060208284031215613a4257600080fd5b8151610b48816137be565b600060208284031215613a5f57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082821015613aa757613aa7613a66565b500390565b80151581146137e057600080fd5b60008060408385031215613acd57600080fd5b8235613ad8816137be565b915060208301356139d181613aac565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2057613b20613a66565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613b8a577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080600060608486031215613bd357600080fd5b8335613bde816137be565b92506020840135613bee816137be565b91506040840135613bfe81613aac565b809150509250925092565b60008219821115613c1c57613c1c613a66565b500190565b60008060408385031215613c3457600080fd5b505080516020909101519092909150565b600080835481600182811c915080831680613c6157607f831692505b6020808410821415613c9a577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613cae5760018114613cdd57613d0a565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613d0a565b60008a81526020902060005b86811015613d025781548b820152908501908301613ce9565b505084890196505b509498975050505050505050565b80516fffffffffffffffffffffffffffffffff811681146133e857600080fd5b600060408284031215613d4a57600080fd5b6040516040810181811067ffffffffffffffff82111715613d94577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604052613da083613d18565b8152613dae60208401613d18565b60208201529392505050565b600060208284031215613dcc57600080fd5b8151610b4881613aac565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e0957613e09613a66565b5060010190565b60008251613e22818460208701613741565b919091019291505056fea26469706673582212205896af001c312e838d0681c524a1611a530550596c1663962913eec2cd7f22e664736f6c634300080a0033', ], ) +*/ // Compute pool address return getCreate2Address( diff --git a/packages/ui/src/components/toast/ToastCompleted.tsx b/packages/ui/src/components/toast/ToastCompleted.tsx index e2cb26ab1c..bd62d598c6 100644 --- a/packages/ui/src/components/toast/ToastCompleted.tsx +++ b/packages/ui/src/components/toast/ToastCompleted.tsx @@ -1,4 +1,4 @@ -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { FC } from 'react' import { Chain } from 'sushi/chain' diff --git a/packages/ui/src/components/toast/ToastFailed.tsx b/packages/ui/src/components/toast/ToastFailed.tsx index 6e5d31a3ca..b05235368e 100644 --- a/packages/ui/src/components/toast/ToastFailed.tsx +++ b/packages/ui/src/components/toast/ToastFailed.tsx @@ -1,4 +1,4 @@ -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { FC } from 'react' import { Chain } from 'sushi/chain' diff --git a/packages/ui/src/components/toast/ToastInfo.tsx b/packages/ui/src/components/toast/ToastInfo.tsx index 5b3319d96c..6247f0d2f7 100644 --- a/packages/ui/src/components/toast/ToastInfo.tsx +++ b/packages/ui/src/components/toast/ToastInfo.tsx @@ -1,4 +1,4 @@ -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { FC } from 'react' import { Chain } from 'sushi/chain' diff --git a/packages/ui/src/components/toast/ToastPending.tsx b/packages/ui/src/components/toast/ToastPending.tsx index 7cf7f825bf..c1b3653a72 100644 --- a/packages/ui/src/components/toast/ToastPending.tsx +++ b/packages/ui/src/components/toast/ToastPending.tsx @@ -1,4 +1,4 @@ -import { ResolvedNotification } from '@sushiswap/dexie' +import type { ResolvedNotification } from '@sushiswap/dexie' import { FC } from 'react' import { Chain } from 'sushi/chain' From 3dd9675f203aba4e67abb1f9025cd952dcce6734 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sat, 8 Jun 2024 12:19:34 +0000 Subject: [PATCH 066/119] chore: remove some ethers deps --- packages/extractor/src/UniV2Extractor.ts | 11 +++- packages/extractor/src/UniV3Extractor.ts | 4 +- packages/hooks/package.json | 5 +- packages/hooks/src/useCustomTokens.ts | 2 +- packages/hooks/src/usePinnedTokens.ts | 2 +- packages/sushi/package.json | 3 -- packages/sushi/src/config/uniswap-v3.test.ts | 5 +- .../compute-sushiswap-v2-pool-address.ts | 28 +++++----- .../sushiswap-v3/entities/SushiSwapV3Pool.ts | 5 +- .../sushiswap-v3/utils/computePoolAddress.ts | 54 +++++++++---------- .../utils/validateAndParseAddress.ts | 2 +- .../compute-init-code-hash.ts | 28 +++++----- .../compute-trident-constant-pool-address.ts | 27 +++++----- .../compute-trident-stable-pool-address.ts | 22 ++++---- .../liquidity-providers/UniswapV2Base.ts | 15 +++--- .../liquidity-providers/UniswapV3Base.ts | 6 +-- packages/sushi/test/tines/snapshots/report | 22 ++++---- pnpm-lock.yaml | 23 +++----- 18 files changed, 128 insertions(+), 136 deletions(-) diff --git a/packages/extractor/src/UniV2Extractor.ts b/packages/extractor/src/UniV2Extractor.ts index d3ab95c4b9..00b29a59fe 100644 --- a/packages/extractor/src/UniV2Extractor.ts +++ b/packages/extractor/src/UniV2Extractor.ts @@ -3,7 +3,14 @@ import { getReservesAbi, tridentConstantPoolAbi } from 'sushi/abi' import { Token } from 'sushi/currency' import { ConstantProductPoolCode, LiquidityProviders } from 'sushi/router' import { ConstantProductRPool, RToken } from 'sushi/tines' -import { Address, Log, PublicClient, decodeEventLog, parseAbiItem } from 'viem' +import { + Address, + Hex, + Log, + PublicClient, + decodeEventLog, + parseAbiItem, +} from 'viem' import { Counter } from './Counter.js' import { LogFilter2 } from './LogFilter2.js' import { Logger } from './Logger.js' @@ -16,7 +23,7 @@ export interface FactoryV2 { address: Address provider: LiquidityProviders fee: number - initCodeHash: string + initCodeHash: Hex } enum PoolStatus { diff --git a/packages/extractor/src/UniV3Extractor.ts b/packages/extractor/src/UniV3Extractor.ts index 1c6d404e01..74ca622b0d 100644 --- a/packages/extractor/src/UniV3Extractor.ts +++ b/packages/extractor/src/UniV3Extractor.ts @@ -8,7 +8,7 @@ import { Abi } from 'abitype' import { computeSushiSwapV3PoolAddress } from 'sushi' import { Token } from 'sushi/currency' import { LiquidityProviders, PoolCode } from 'sushi/router' -import { Address, Log, PublicClient } from 'viem' +import type { Address, Hex, Log, PublicClient } from 'viem' import { Counter } from './Counter.js' import { LogFilter2 } from './LogFilter2.js' import { Logger, safeSerialize } from './Logger.js' @@ -34,7 +34,7 @@ export const uniswapFeeSpaceMap: FeeSpacingMap = { export interface FactoryV3 { address: Address provider: LiquidityProviders - initCodeHash: string + initCodeHash: Hex deployer?: Address feeSpacingMap?: FeeSpacingMap } diff --git a/packages/hooks/package.json b/packages/hooks/package.json index affeeb8faf..8f54ff37b0 100644 --- a/packages/hooks/package.json +++ b/packages/hooks/package.json @@ -27,10 +27,9 @@ "preset": "@sushiswap/jest-config" }, "dependencies": { - "@ethersproject/address": "5.7.0", - "@ethersproject/providers": "5.7.2", "copy-to-clipboard": "3.3.3", - "react-responsive": "9.0.0-beta.10" + "react-responsive": "9.0.0-beta.10", + "viem": "2.10.11" }, "devDependencies": { "@sushiswap/jest-config": "workspace:*", diff --git a/packages/hooks/src/useCustomTokens.ts b/packages/hooks/src/useCustomTokens.ts index 30b209410d..735d20edff 100644 --- a/packages/hooks/src/useCustomTokens.ts +++ b/packages/hooks/src/useCustomTokens.ts @@ -1,8 +1,8 @@ 'use client' -import { getAddress, isAddress } from '@ethersproject/address' import { useCallback, useMemo } from 'react' import { Token } from 'sushi/currency' +import { getAddress, isAddress } from 'viem/utils' import { useLocalStorage } from './useLocalStorage' diff --git a/packages/hooks/src/usePinnedTokens.ts b/packages/hooks/src/usePinnedTokens.ts index b6242a0785..64e41b96fe 100644 --- a/packages/hooks/src/usePinnedTokens.ts +++ b/packages/hooks/src/usePinnedTokens.ts @@ -1,6 +1,5 @@ 'use client' -import { getAddress as _getAddress, isAddress } from '@ethersproject/address' import { useCallback, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { @@ -36,6 +35,7 @@ import { axlWBTC, } from 'sushi/currency' import { type Currency, Native, Token } from 'sushi/currency' +import { getAddress as _getAddress, isAddress } from 'viem/utils' import { useLocalStorage } from './useLocalStorage' export const DEFAULT_BASES = { diff --git a/packages/sushi/package.json b/packages/sushi/package.json index 3e43764884..0e8e4ecd5b 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -200,8 +200,6 @@ }, "dependencies": { "@ethersproject/abi": "5.7.0", - "@ethersproject/address": "5.7.0", - "@ethersproject/solidity": "5.7.0", "@uniswap/token-lists": "1.0.0-beta.33", "@uniswap/v3-core": "1.0.1", "@uniswap/v3-periphery": "1.4.4", @@ -223,7 +221,6 @@ "@types/big.js": "6.2.0", "@types/seedrandom": "3.0.1", "@wagmi/core": "2.10.2", - "ts-node": "10.9.2", "typescript": "5.2.2", "viem": "2.10.11", "vitest": "0.34.6", diff --git a/packages/sushi/src/config/uniswap-v3.test.ts b/packages/sushi/src/config/uniswap-v3.test.ts index e94226fe96..530ca5655c 100644 --- a/packages/sushi/src/config/uniswap-v3.test.ts +++ b/packages/sushi/src/config/uniswap-v3.test.ts @@ -1,4 +1,5 @@ -import { keccak256 } from '@ethersproject/solidity' +import type { Hex } from 'viem' +import { keccak256 } from 'viem/utils' import { describe, expect, it } from 'vitest' import IUniswapV3Pool from '@uniswap/v3-core/artifacts/contracts/UniswapV3Pool.sol/UniswapV3Pool.json' assert { @@ -9,7 +10,7 @@ import { UNISWAP_V3_INIT_CODE_HASH } from './uniswap-v3.js' // this _could_ go in constants, except that it would cost every consumer of the sdk the CPU to compute the hash // and load the JSON. -const COMPUTED_INIT_CODE_HASH = keccak256(['bytes'], [IUniswapV3Pool.bytecode]) +const COMPUTED_INIT_CODE_HASH = keccak256(IUniswapV3Pool.bytecode as Hex) describe('constants', () => { describe('INIT_CODE_HASH', () => { diff --git a/packages/sushi/src/pool/sushiswap-v2/compute-sushiswap-v2-pool-address.ts b/packages/sushi/src/pool/sushiswap-v2/compute-sushiswap-v2-pool-address.ts index 18fbb57857..8986d7dd34 100644 --- a/packages/sushi/src/pool/sushiswap-v2/compute-sushiswap-v2-pool-address.ts +++ b/packages/sushi/src/pool/sushiswap-v2/compute-sushiswap-v2-pool-address.ts @@ -1,7 +1,6 @@ -import { getCreate2Address } from '@ethersproject/address' -import { keccak256, pack } from '@ethersproject/solidity' import invariant from 'tiny-invariant' -import { Address } from 'viem' +import type { Address, Hex } from 'viem' +import { encodePacked, getCreate2Address, keccak256 } from 'viem/utils' import { SUSHISWAP_V2_INIT_CODE_HASH, SushiSwapV2ChainId, @@ -22,22 +21,27 @@ export const computeSushiSwapV2PoolAddress = ({ tokenB, initCodeHashManualOverride, }: { - factoryAddress: string + factoryAddress: Address tokenA: Token tokenB: Token - initCodeHashManualOverride?: string + initCodeHashManualOverride?: Hex }): Address => { const [token0, token1] = tokenA.sortsBefore(tokenB) ? [tokenA, tokenB] : [tokenB, tokenA] // does safety checks + invariant(token0.chainId === token1.chainId, 'CHAIN_ID') - return getCreate2Address( - factoryAddress, - keccak256( - ['bytes'], - [pack(['address', 'address'], [token0.address, token1.address])], + + return getCreate2Address({ + from: factoryAddress, + salt: keccak256( + encodePacked( + ['address', 'address'], + [token0.address, token1.address], + ) as Hex, ), - initCodeHashManualOverride ?? + bytecodeHash: + initCodeHashManualOverride ?? SUSHISWAP_V2_INIT_CODE_HASH[token0.chainId as SushiSwapV2ChainId], - ) as Address + }) } diff --git a/packages/sushi/src/pool/sushiswap-v3/entities/SushiSwapV3Pool.ts b/packages/sushi/src/pool/sushiswap-v3/entities/SushiSwapV3Pool.ts index 9cbaa33787..378f11c423 100644 --- a/packages/sushi/src/pool/sushiswap-v3/entities/SushiSwapV3Pool.ts +++ b/packages/sushi/src/pool/sushiswap-v3/entities/SushiSwapV3Pool.ts @@ -1,4 +1,5 @@ import invariant from 'tiny-invariant' +import type { Address, Hex } from 'viem' import { SUSHISWAP_V3_FACTORY_ADDRESS, SushiSwapV3ChainId, @@ -54,8 +55,8 @@ export class SushiSwapV3Pool { tokenA: Token, tokenB: Token, fee: SushiSwapV3FeeAmount, - initCodeHashManualOverride?: string, - factoryAddressOverride?: string, + initCodeHashManualOverride?: Hex, + factoryAddressOverride?: Address, ): string { return computeSushiSwapV3PoolAddress({ factoryAddress: diff --git a/packages/sushi/src/pool/sushiswap-v3/utils/computePoolAddress.ts b/packages/sushi/src/pool/sushiswap-v3/utils/computePoolAddress.ts index 1b33d59593..3b5e601eb9 100644 --- a/packages/sushi/src/pool/sushiswap-v3/utils/computePoolAddress.ts +++ b/packages/sushi/src/pool/sushiswap-v3/utils/computePoolAddress.ts @@ -1,7 +1,6 @@ import { defaultAbiCoder } from '@ethersproject/abi' -import { getCreate2Address } from '@ethersproject/address' -import { keccak256 } from '@ethersproject/solidity' -import { Address } from 'viem' +import type { Address, Hex } from 'viem' +import { getCreate2Address, keccak256 } from 'viem/utils' import { SUSHISWAP_V3_INIT_CODE_HASH, SushiSwapV3ChainId, @@ -25,45 +24,42 @@ export function computeSushiSwapV3PoolAddress({ fee, initCodeHashManualOverride, }: { - factoryAddress: string + factoryAddress: Address tokenA: Token | string tokenB: Token | string fee: SushiSwapV3FeeAmount - initCodeHashManualOverride?: string | undefined + initCodeHashManualOverride?: Address | undefined }): Address { if (typeof tokenA !== 'string' && typeof tokenB !== 'string') { const [token0, token1] = tokenA.sortsBefore(tokenB) ? [tokenA, tokenB] : [tokenB, tokenA] // does safety checks - return getCreate2Address( - factoryAddress, - keccak256( - ['bytes'], - [ - defaultAbiCoder.encode( - ['address', 'address', 'uint24'], - [token0.address, token1.address, fee], - ), - ], + + return getCreate2Address({ + from: factoryAddress, + salt: keccak256( + defaultAbiCoder.encode( + ['address', 'address', 'uint24'], + [token0.address, token1.address, fee], + ) as Hex, ), - initCodeHashManualOverride ?? + bytecodeHash: + initCodeHashManualOverride ?? SUSHISWAP_V3_INIT_CODE_HASH[token0.chainId as SushiSwapV3ChainId], - ) as Address + }) } // FIXME: We shouldn't even allow sending strings into here, this means we have to assume init code hash is always the same for every chain - return getCreate2Address( - factoryAddress, - keccak256( - ['bytes'], - [ - defaultAbiCoder.encode( - ['address', 'address', 'uint24'], - [tokenA, tokenB, fee], - ), - ], + return getCreate2Address({ + from: factoryAddress, + salt: keccak256( + defaultAbiCoder.encode( + ['address', 'address', 'uint24'], + [tokenA, tokenB, fee], + ) as Hex, ), - initCodeHashManualOverride ?? + bytecodeHash: + initCodeHashManualOverride ?? '0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54', - ) as Address + }) } diff --git a/packages/sushi/src/pool/sushiswap-v3/utils/validateAndParseAddress.ts b/packages/sushi/src/pool/sushiswap-v3/utils/validateAndParseAddress.ts index 44fffe9304..74f793dd91 100644 --- a/packages/sushi/src/pool/sushiswap-v3/utils/validateAndParseAddress.ts +++ b/packages/sushi/src/pool/sushiswap-v3/utils/validateAndParseAddress.ts @@ -1,6 +1,6 @@ -import { getAddress } from '@ethersproject/address' import invariant from 'tiny-invariant' import warning from 'tiny-warning' +import { getAddress } from 'viem/utils' // warns if addresses are not checksummed export function validateAndParseAddress(address: string): string { diff --git a/packages/sushi/src/pool/trident-constant-product/compute-init-code-hash.ts b/packages/sushi/src/pool/trident-constant-product/compute-init-code-hash.ts index c41ed7a17e..74f1f91fe8 100644 --- a/packages/sushi/src/pool/trident-constant-product/compute-init-code-hash.ts +++ b/packages/sushi/src/pool/trident-constant-product/compute-init-code-hash.ts @@ -1,28 +1,26 @@ import { defaultAbiCoder } from '@ethersproject/abi' -import { keccak256, pack } from '@ethersproject/solidity' +import type { Hex } from 'viem' +import { encodePacked, keccak256 } from 'viem/utils' export const computeInitCodeHash = ({ creationCode, deployData, masterDeployerAddress, }: { - creationCode: string + creationCode: Hex deployData: string masterDeployerAddress: string }): string => { return keccak256( - ['bytes'], - [ - pack( - ['bytes', 'bytes'], - [ - creationCode, - defaultAbiCoder.encode( - ['bytes', 'address'], - [deployData, masterDeployerAddress], - ), - ], - ), - ], + encodePacked( + ['bytes', 'bytes'], + [ + creationCode, + defaultAbiCoder.encode( + ['bytes', 'address'], + [deployData, masterDeployerAddress], + ) as Hex, + ], + ), ) } diff --git a/packages/sushi/src/pool/trident-constant-product/compute-trident-constant-pool-address.ts b/packages/sushi/src/pool/trident-constant-product/compute-trident-constant-pool-address.ts index 6479de01dd..94a093cf60 100644 --- a/packages/sushi/src/pool/trident-constant-product/compute-trident-constant-pool-address.ts +++ b/packages/sushi/src/pool/trident-constant-product/compute-trident-constant-pool-address.ts @@ -1,6 +1,6 @@ import { defaultAbiCoder } from '@ethersproject/abi' -import { getCreate2Address } from '@ethersproject/address' -import { keccak256 } from '@ethersproject/solidity' +import type { Address, Hex } from 'viem' +import { getCreate2Address, keccak256 } from 'viem/utils' import { Token } from '../../currency/index.js' import { Fee } from '../../dex/index.js' @@ -11,7 +11,7 @@ export const computeTridentConstantPoolAddress = ({ fee, twap, }: { - factoryAddress: string + factoryAddress: Address tokenA: Token tokenB: Token fee: Fee @@ -25,19 +25,20 @@ export const computeTridentConstantPoolAddress = ({ const deployData = defaultAbiCoder.encode( ['address', 'address', 'uint256', 'bool'], [token0.address, token1.address, fee, twap], - ) + ) as Hex + const CONSTANT_PRODUCT_POOL_INIT_CODE_HASH = + '0x3172d82413be467c1130709f7479a07def9b99caf8e0059f248c131081e4ea09' + /* const CONSTANT_PRODUCT_POOL_INIT_CODE_HASH = keccak256( - ['bytes'], - [ - '0x6101a060405260016006553480156200001757600080fd5b50604080518082018252601f81527f537573686920436f6e7374616e742050726f64756374204c5020546f6b656e0060208083019182528351808501909452600584526405343504c560dc1b9084015281519192916012916200007e91600091906200042d565b508151620000949060019060208501906200042d565b5060ff81166080524660a052620000aa62000391565b60c08181525050505050600080336001600160a01b031663d039f6226040518163ffffffff1660e01b8152600401600060405180830381865afa158015620000f6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000120919081019062000514565b915091506000806000808580602001905181019062000140919062000605565b929650909450925090506001600160a01b038416620001725760405163d92e233d60e01b815260040160405180910390fd5b826001600160a01b0316846001600160a01b03161415620001a65760405163065af08d60e01b815260040160405180910390fd5b612710821115620001ca5760405163da7459b760e01b815260040160405180910390fd5b6001600160a01b03808516610160528381166101805260e083905261271083900361010052604080516360a56c0160e11b815290519187169163c14ad802916004808201926020929091908290030181865afa1580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000665565b600781905550846001600160a01b0316630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c091906200067f565b600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550846001600160a01b0316634da318276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034b91906200067f565b6001600160a01b039081166101205285166101405280156200038557600c80546001600160e01b0316600160e01b4263ffffffff16021790555b50505050505062000787565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620003c59190620006e3565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8280546200043b90620006a6565b90600052602060002090601f0160209004810192826200045f5760008555620004aa565b82601f106200047a57805160ff1916838001178555620004aa565b82800160010185558215620004aa579182015b82811115620004aa5782518255916020019190600101906200048d565b50620004b8929150620004bc565b5090565b5b80821115620004b85760008155600101620004bd565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004ff57600080fd5b50565b80516200050f81620004e9565b919050565b600080604083850312156200052857600080fd5b82516001600160401b03808211156200054057600080fd5b818501915085601f8301126200055557600080fd5b8151818111156200056a576200056a620004d3565b604051601f8201601f19908116603f01168101908382118183101715620005955762000595620004d3565b81604052828152602093508884848701011115620005b257600080fd5b600091505b82821015620005d65784820184015181830185015290830190620005b7565b82821115620005e85760008484830101525b9550620005fa91505085820162000502565b925050509250929050565b600080600080608085870312156200061c57600080fd5b84516200062981620004e9565b60208601519094506200063c81620004e9565b60408601516060870151919450925080151581146200065a57600080fd5b939692955090935050565b6000602082840312156200067857600080fd5b5051919050565b6000602082840312156200069257600080fd5b81516200069f81620004e9565b9392505050565b600181811c90821680620006bb57607f821691505b60208210811415620006dd57634e487b7160e01b600052602260045260246000fd5b50919050565b600080835481600182811c9150808316806200070057607f831692505b60208084108214156200072157634e487b7160e01b86526022600452602486fd5b8180156200073857600181146200074a5762000779565b60ff1986168952848901965062000779565b60008a81526020902060005b86811015620007715781548b82015290850190830162000756565b505084890196505b509498975050505050505050565b60805160a05160c05160e0516101005161012051610140516101605161018051613bad62000909600039600081816105ac015281816107df015281816108de0152818161098c015281816110350152818161113d015281816112f2015281816115d3015281816116420152818161195a01528181611aaa01528181611f03015281816121e40152818161226b0152612bb90152600081816103290152818161075b01528181610a4101528181610b4001528181611009015281816110d4015281816113780152818161157f015281816116f30152818161186301528181611a3c01528181611e84015281816122a00152818161235b0152612ade0152600081816105850152818161273e01526127d3015260008181610407015281816118b0015281816119a20152818161297101528181612a3e01528181612b110152612bea0152600081816128af01526131d601526000818161042e0152818161329801526133030152600061125901526000611224015260006103b30152613bad6000f3fe608060405234801561001057600080fd5b50600436106102415760003560e01c8063627dd56a11610145578063a8f1f52e116100bd578063cf58879a1161008c578063d505accf11610071578063d505accf146105ce578063dd62ed3e146105e3578063f1c49a391461060e57600080fd5b8063cf58879a14610580578063d21220a7146105a757600080fd5b8063a8f1f52e1461053e578063a9059cbb14610551578063af8c09bf14610564578063c14ad8021461057757600080fd5b80637464fc3d116101145780637ecebe00116100f95780637ecebe00146104ef57806395d89b411461050f578063a69840a81461051757600080fd5b80637464fc3d146104d35780637ba0e2e7146104dc57600080fd5b8063627dd56a1461046257806365dfc7671461047557806367e4ac2c1461049e57806370a08231146104b357600080fd5b80632a07b6c7116101d8578063499a3c50116101a757806354cf2aeb1161018c57806354cf2aeb146104295780635909c0d5146104505780635a3d54931461045957600080fd5b8063499a3c50146103ef5780634da318271461040257600080fd5b80632a07b6c71461036757806330adf81f14610387578063313ce567146103ae5780633644e515146103e757600080fd5b80630c0a0cd2116102145780630c0a0cd2146102df5780630dfe16811461032457806318160ddd1461034b57806323b872dd1461035457600080fd5b8063053da1c81461024657806306fdde031461026c5780630902f1ac14610281578063095ea7b3146102bc575b600080fd5b6102596102543660046133b1565b610616565b6040519081526020015b60405180910390f35b610274610bfc565b604051610263919061348e565b610289610c8a565b604080516dffffffffffffffffffffffffffff948516815293909216602084015263ffffffff1690820152606001610263565b6102cf6102ca3660046134cd565b610cf3565b6040519015158152602001610263565b6008546102ff9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610263565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b61025960025481565b6102cf6103623660046134f9565b610d6c565b61037a6103753660046133b1565b610eb0565b604051610263919061353a565b6102597f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103d57f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610263565b610259611220565b6102596103fd3660046133b1565b61127b565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6102597f000000000000000000000000000000000000000000000000000000000000000081565b61025960095481565b610259600a5481565b6102596104703660046133b1565b611433565b61047d6117c4565b60408051938452602084019290925263ffffffff1690820152606001610263565b6104a6611a1a565b604051610263919061359f565b6102596104c13660046135f9565b60036020526000908152604090205481565b610259600b5481565b6102596104ea3660046133b1565b611b19565b6102596104fd3660046135f9565b60056020526000908152604090205481565b610274611e00565b6102597f54726964656e743a436f6e7374616e7450726f6475637400000000000000000081565b61025961054c3660046133b1565b611e0d565b6102cf61055f3660046134cd565b611fb1565b6102596105723660046133b1565b612036565b61025960075481565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6105e16105dc366004613616565b612410565b005b6102596105f136600461368d565b600460209081526000928352604080842090915290825290205481565b6105e161273c565b6000600654600114610689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b60026006556000808080806106a087890189613705565b945094509450945094506000806000610708600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff1660001415610759576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16141561098a576107d885846dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166128a7565b98506108067f00000000000000000000000000000000000000000000000000000000000000008a898961290a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b19061084290879060040161348e565b600060405180830381600087803b15801561085c57600080fd5b505af1158015610870573d6000803e3d6000fd5b5050505060008061087f612aa1565b9150915086856dffffffffffffffffffffffffffff16830310156108cf576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108dc8282878787612c5d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f60405161097b929190918252602082015260400190565b60405180910390a45050610be8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3a85836dffffffffffffffffffffffffffff16856dffffffffffffffffffffffffffff166128a7565b9850610a687f00000000000000000000000000000000000000000000000000000000000000008a898961290a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b190610aa490879060040161348e565b600060405180830381600087803b158015610abe57600080fd5b505af1158015610ad2573d6000803e3d6000fd5b50505050600080610ae1612aa1565b9150915086846dffffffffffffffffffffffffffff1682031015610b31576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3e8282878787612c5d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f604051610bdd929190918252602082015260400190565b60405180910390a450505b505060016006555094979650505050505050565b60008054610c0990613814565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3590613814565b8015610c825780601f10610c5757610100808354040283529160200191610c82565b820191906000526020600020905b815481529060010190602001808311610c6557829003601f168201915b505050505081565b6000806000610ce8600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250909192565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d5b9086815260200190565b60405180910390a350600192915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0057610dce8382613897565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610e35908490613897565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e9d9087815260200190565b60405180910390a3506001949350505050565b6060600654600114610f1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080610f32848601866138ae565b915091506000806000610f94600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080610fa5612aa1565b30600090815260036020526040812054929450909250610fc58787612f0a565b509050600081610fd586856138e3565b610fdf919061394f565b9050600082610fee86866138e3565b610ff8919061394f565b90506110043085612fe9565b6110307f0000000000000000000000000000000000000000000000000000000000000000838d8d61290a565b61105c7f0000000000000000000000000000000000000000000000000000000000000000828d8d61290a565b8186039550808503945061107386868b8b8b612c5d565b61108561108086886138e3565b61307f565b600b556040805160028082526060820190925290816020015b604080518082019091526000808252602082015281526020019060019003908161109e579050509b5060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168152602001838152508c6000815181106111255761112561398a565b602002602001018190525060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168152602001828152508c60018151811061118e5761118e61398a565b60200260200101819052508a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d819364968484604051611201929190918252602082015260400190565b60405180910390a35050600160065550979a9950505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461125657611251613138565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6000808061128b848601866134cd565b915091506000806112eb600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113765761136f83836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff166131d2565b9450611429565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142683826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166131d2565b94505b5050505092915050565b60006006546001146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080806114b6858701876139b9565b925092509250600080600061151a600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff166000141561156b576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611576612aa1565b915091506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161415611640577f00000000000000000000000000000000000000000000000000000000000000009050866dffffffffffffffffffffffffffff168403915061163482886dffffffffffffffffffffffffffff16886dffffffffffffffffffffffffffff166128a7565b9a508a8303925061172c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050600c546dffffffffffffffffffffffffffff6e01000000000000000000000000000090910481168203907f000000000000000000000000000000000000000000000000000000000000000090611724908390888116908a166128a7565b9a508a840393505b611738818c8b8b61290a565b6117458484898989612c5d565b8073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e46062858f604051610bdd929190918252602082015260400190565b600080600080600080611826600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301526dffffffffffffffffffffffffffff851660248301526000604483015293965091945092507f000000000000000000000000000000000000000000000000000000000000000090911690635662311890606401602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d9190613a00565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301526dffffffffffffffffffffffffffff85166024830152600060448301529197507f000000000000000000000000000000000000000000000000000000000000000090911690635662311890606401602060405180830381865afa1580156119eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0f9190613a00565b959690945092505050565b60408051600280825260608083018452926020830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000081600081518110611a6e57611a6e61398a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611adc57611adc61398a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000600654600114611b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b60026006556000611b9a838501856135f9565b90506000806000611bfa600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080611c0b612aa1565b90925090506000611c1f61108083856138e3565b90506000611c3d6dffffffffffffffffffffffffffff881685613897565b90506000611c5b6dffffffffffffffffffffffffffff881685613897565b9050600080611c8c84848c6dffffffffffffffffffffffffffff168c6dffffffffffffffffffffffffffff1661323d565b9092509050611c9b828b613a19565b9950611ca7818a613a19565b9850600080611cb68c8c612f0a565b915091508160001415611d2557851580611cce575084155b15611d05576040517fd856fc5a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d116103e888613897565b9d50611d2060006103e8613340565b611d41565b80870381611d3384836138e3565b611d3d919061394f565b9e50505b8d611d78576040517fd226f9d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d828d8f613340565b611d8f89898e8e8e612c5d565b600b879055604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff8f169133917fdbba30eb0402b389513e87f51f4db2db80bed454384ec6925a24097c3548a02a910160405180910390a35050600160065550999c9b505050505050505050505050565b60018054610c0990613814565b60008080611e1d848601866134cd565b91509150600080611e7d600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f015761136f83836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff166128a7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142683826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166128a7565b33600090815260036020526040812080548391908390611fd2908490613897565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d5b9086815260200190565b60006006546001146120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080806120b9858701876139b9565b925092509250600080600061211d600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b30600090815260036020526040812054939650919450925061213f8585612f0a565b50905060008161215f6dffffffffffffffffffffffffffff8816856138e3565b612169919061394f565b90506000826121886dffffffffffffffffffffffffffff8816866138e3565b612192919061394f565b90506121d56121b1826dffffffffffffffffffffffffffff8916613897565b6121cb846dffffffffffffffffffffffffffff8b16613897565b61108091906138e3565b600b556121e23085612fe9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16141561229e576122658283896dffffffffffffffffffffffffffff160383896dffffffffffffffffffffffffffff16036128a7565b016122927f0000000000000000000000000000000000000000000000000000000000000000828b8b61290a565b809a5060009150612389565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123528182886dffffffffffffffffffffffffffff1603848a6dffffffffffffffffffffffffffff16036128a7565b820191506123827f0000000000000000000000000000000000000000000000000000000000000000838b8b61290a565b5098508860005b600080612394612aa1565b915091506123a582828b8b8b612c5d565b604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff8d169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050600160065550989b9a5050505050505050505050565b4284101561247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610680565b6000612484611220565b73ffffffffffffffffffffffffffffffffffffffff89811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938c166060840152608083018b905260a083019390935260c08083018a90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa1580156125e3573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81161580159061265e57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6126c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152606401610680565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208b8516808552908352928190208a905551898152919350918a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c14ad8026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cb9190613a00565b6007819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128609190613a4b565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806128d47f0000000000000000000000000000000000000000000000000000000000000000866138e3565b9050806128e3612710866138e3565b6128ed9190613a68565b6128f784836138e3565b612901919061394f565b95945050505050565b80156129e4576040517f97da6d3000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152306024830152838116604483015260006064830152608482018590527f000000000000000000000000000000000000000000000000000000000000000016906397da6d309060a40160408051808303816000875af11580156129b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129dd9190613a80565b5050612a9b565b6040517ff18d03cc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301523060248301528381166044830152606482018590527f0000000000000000000000000000000000000000000000000000000000000000169063f18d03cc90608401600060405180830381600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050505b50505050565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600483015230602483015260009182917f0000000000000000000000000000000000000000000000000000000000000000169063f7888aec90604401602060405180830381865afa158015612b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7c9190613a00565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301523060248301529193507f00000000000000000000000000000000000000000000000000000000000000009091169063f7888aec90604401602060405180830381865afa158015612c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c579190613a00565b90509091565b6dffffffffffffffffffffffffffff851180612c8657506dffffffffffffffffffffffffffff84115b15612cbd576040517f35278d1200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff8116612d1f57600c80546dffffffffffffffffffffffffffff8681166e010000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921690881617179055612eca565b4263ffffffff80821690831614801590612d4857506dffffffffffffffffffffffffffff841615155b8015612d6357506dffffffffffffffffffffffffffff831615155b15612e285781810360006dffffffffffffffffffffffffffff86167bffffffffffffffffffffffffffff0000000000000000000000000000607087901b1681612dae57612dae613920565b600980549290910463ffffffff851681029092019055905060006dffffffffffffffffffffffffffff8616607088901b7bffffffffffffffffffffffffffff00000000000000000000000000001681612e0957612e09613920565b0490508263ffffffff168102600a600082825401925050819055505050505b600c805463ffffffff9092167c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff8881166e010000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909516908a161793909317929092169190911790555b60408051868152602081018690527fcf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848a910160405180910390a15050505050565b600254600b546000908015612fe157612f396110806dffffffffffffffffffffffffffff8087169088166138e3565b915080821115612fe157600754600081612f538486613897565b612f5d90876138e3565b612f6791906138e3565b90506000612f7584846138e3565b85612f8285612710613897565b612f8c91906138e3565b612f969190613a68565b90506000612fa4828461394f565b90508015612fdc57600854612fcf9073ffffffffffffffffffffffffffffffffffffffff1682613340565b612fd98188613a68565b96505b505050505b509250929050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805483929061301e908490613897565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b60b5817101000000000000000000000000000000000081106130a65760409190911b9060801c5b690100000000000000000081106130c25760209190911b9060401c5b6501000000000081106130da5760109190911b9060201c5b630100000081106130f05760089190911b9060101c5b62010000010260121c80820401600190811c80830401811c80830401811c80830401811c80830401811c80830401811c80830401901c8082048111156131335781045b919050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161316a9190613aa4565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60007f00000000000000000000000000000000000000000000000000000000000000006131ff8584613897565b61320991906138e3565b61271061321686866138e3565b61322091906138e3565b61322a919061394f565b613235906001613a68565b949350505050565b60008083158061324b575082155b1561325b57506000905080613337565b60008461326885896138e3565b613272919061394f565b90508581116132cd5761328861271060026138e3565b6132928288613897565b6132bc907f00000000000000000000000000000000000000000000000000000000000000006138e3565b6132c6919061394f565b9150613335565b6000846132da87896138e3565b6132e4919061394f565b90506132f361271060026138e3565b6132fd828a613897565b613327907f00000000000000000000000000000000000000000000000000000000000000006138e3565b613331919061394f565b9350505b505b94509492505050565b80600260008282546133529190613a68565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101613073565b600080602083850312156133c457600080fd5b823567ffffffffffffffff808211156133dc57600080fd5b818501915085601f8301126133f057600080fd5b8135818111156133ff57600080fd5b86602082850101111561341157600080fd5b60209290920196919550909350505050565b6000815180845260005b818110156134495760208185018101518683018201520161342d565b8181111561345b576000602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006134a16020830184613423565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146134ca57600080fd5b50565b600080604083850312156134e057600080fd5b82356134eb816134a8565b946020939093013593505050565b60008060006060848603121561350e57600080fd5b8335613519816134a8565b92506020840135613529816134a8565b929592945050506040919091013590565b602080825282518282018190526000919060409081850190868401855b82811015613592578151805173ffffffffffffffffffffffffffffffffffffffff168552860151868501529284019290850190600101613557565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135ed57835173ffffffffffffffffffffffffffffffffffffffff16835292840192918401916001016135bb565b50909695505050505050565b60006020828403121561360b57600080fd5b81356134a1816134a8565b600080600080600080600060e0888a03121561363157600080fd5b873561363c816134a8565b9650602088013561364c816134a8565b95506040880135945060608801359350608088013560ff8116811461367057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156136a057600080fd5b82356136ab816134a8565b915060208301356136bb816134a8565b809150509250929050565b8035801515811461313357600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a0868803121561371d57600080fd5b8535613728816134a8565b94506020860135613738816134a8565b9350613746604087016136c6565b925060608601359150608086013567ffffffffffffffff8082111561376a57600080fd5b818801915088601f83011261377e57600080fd5b813581811115613790576137906136d6565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156137d6576137d66136d6565b816040528281528b60208487010111156137ef57600080fd5b8260208601602083013760006020848301015280955050505050509295509295909350565b600181811c9082168061382857607f821691505b60208210811415613862577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156138a9576138a9613868565b500390565b600080604083850312156138c157600080fd5b82356138cc816134a8565b91506138da602084016136c6565b90509250929050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391b5761391b613868565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613985577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000806000606084860312156139ce57600080fd5b83356139d9816134a8565b925060208401356139e9816134a8565b91506139f7604085016136c6565b90509250925092565b600060208284031215613a1257600080fd5b5051919050565b60006dffffffffffffffffffffffffffff808316818516808303821115613a4257613a42613868565b01949350505050565b600060208284031215613a5d57600080fd5b81516134a1816134a8565b60008219821115613a7b57613a7b613868565b500190565b60008060408385031215613a9357600080fd5b505080516020909101519092909150565b600080835481600182811c915080831680613ac057607f831692505b6020808410821415613af9577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613b0d5760018114613b3c57613b69565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613b69565b60008a81526020902060005b86811015613b615781548b820152908501908301613b48565b505084890196505b50949897505050505050505056fea2646970667358221220860e8cf8543ab713382b6536fca66307d46924b935d4b3b4d13f57dd57da62ae64736f6c634300080a0033', - ], + '0x6101a060405260016006553480156200001757600080fd5b50604080518082018252601f81527f537573686920436f6e7374616e742050726f64756374204c5020546f6b656e0060208083019182528351808501909452600584526405343504c560dc1b9084015281519192916012916200007e91600091906200042d565b508151620000949060019060208501906200042d565b5060ff81166080524660a052620000aa62000391565b60c08181525050505050600080336001600160a01b031663d039f6226040518163ffffffff1660e01b8152600401600060405180830381865afa158015620000f6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405262000120919081019062000514565b915091506000806000808580602001905181019062000140919062000605565b929650909450925090506001600160a01b038416620001725760405163d92e233d60e01b815260040160405180910390fd5b826001600160a01b0316846001600160a01b03161415620001a65760405163065af08d60e01b815260040160405180910390fd5b612710821115620001ca5760405163da7459b760e01b815260040160405180910390fd5b6001600160a01b03808516610160528381166101805260e083905261271083900361010052604080516360a56c0160e11b815290519187169163c14ad802916004808201926020929091908290030181865afa1580156200022f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000255919062000665565b600781905550846001600160a01b0316630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c091906200067f565b600860006101000a8154816001600160a01b0302191690836001600160a01b03160217905550846001600160a01b0316634da318276040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000325573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034b91906200067f565b6001600160a01b039081166101205285166101405280156200038557600c80546001600160e01b0316600160e01b4263ffffffff16021790555b50505050505062000787565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620003c59190620006e3565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8280546200043b90620006a6565b90600052602060002090601f0160209004810192826200045f5760008555620004aa565b82601f106200047a57805160ff1916838001178555620004aa565b82800160010185558215620004aa579182015b82811115620004aa5782518255916020019190600101906200048d565b50620004b8929150620004bc565b5090565b5b80821115620004b85760008155600101620004bd565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620004ff57600080fd5b50565b80516200050f81620004e9565b919050565b600080604083850312156200052857600080fd5b82516001600160401b03808211156200054057600080fd5b818501915085601f8301126200055557600080fd5b8151818111156200056a576200056a620004d3565b604051601f8201601f19908116603f01168101908382118183101715620005955762000595620004d3565b81604052828152602093508884848701011115620005b257600080fd5b600091505b82821015620005d65784820184015181830185015290830190620005b7565b82821115620005e85760008484830101525b9550620005fa91505085820162000502565b925050509250929050565b600080600080608085870312156200061c57600080fd5b84516200062981620004e9565b60208601519094506200063c81620004e9565b60408601516060870151919450925080151581146200065a57600080fd5b939692955090935050565b6000602082840312156200067857600080fd5b5051919050565b6000602082840312156200069257600080fd5b81516200069f81620004e9565b9392505050565b600181811c90821680620006bb57607f821691505b60208210811415620006dd57634e487b7160e01b600052602260045260246000fd5b50919050565b600080835481600182811c9150808316806200070057607f831692505b60208084108214156200072157634e487b7160e01b86526022600452602486fd5b8180156200073857600181146200074a5762000779565b60ff1986168952848901965062000779565b60008a81526020902060005b86811015620007715781548b82015290850190830162000756565b505084890196505b509498975050505050505050565b60805160a05160c05160e0516101005161012051610140516101605161018051613bad62000909600039600081816105ac015281816107df015281816108de0152818161098c015281816110350152818161113d015281816112f2015281816115d3015281816116420152818161195a01528181611aaa01528181611f03015281816121e40152818161226b0152612bb90152600081816103290152818161075b01528181610a4101528181610b4001528181611009015281816110d4015281816113780152818161157f015281816116f30152818161186301528181611a3c01528181611e84015281816122a00152818161235b0152612ade0152600081816105850152818161273e01526127d3015260008181610407015281816118b0015281816119a20152818161297101528181612a3e01528181612b110152612bea0152600081816128af01526131d601526000818161042e0152818161329801526133030152600061125901526000611224015260006103b30152613bad6000f3fe608060405234801561001057600080fd5b50600436106102415760003560e01c8063627dd56a11610145578063a8f1f52e116100bd578063cf58879a1161008c578063d505accf11610071578063d505accf146105ce578063dd62ed3e146105e3578063f1c49a391461060e57600080fd5b8063cf58879a14610580578063d21220a7146105a757600080fd5b8063a8f1f52e1461053e578063a9059cbb14610551578063af8c09bf14610564578063c14ad8021461057757600080fd5b80637464fc3d116101145780637ecebe00116100f95780637ecebe00146104ef57806395d89b411461050f578063a69840a81461051757600080fd5b80637464fc3d146104d35780637ba0e2e7146104dc57600080fd5b8063627dd56a1461046257806365dfc7671461047557806367e4ac2c1461049e57806370a08231146104b357600080fd5b80632a07b6c7116101d8578063499a3c50116101a757806354cf2aeb1161018c57806354cf2aeb146104295780635909c0d5146104505780635a3d54931461045957600080fd5b8063499a3c50146103ef5780634da318271461040257600080fd5b80632a07b6c71461036757806330adf81f14610387578063313ce567146103ae5780633644e515146103e757600080fd5b80630c0a0cd2116102145780630c0a0cd2146102df5780630dfe16811461032457806318160ddd1461034b57806323b872dd1461035457600080fd5b8063053da1c81461024657806306fdde031461026c5780630902f1ac14610281578063095ea7b3146102bc575b600080fd5b6102596102543660046133b1565b610616565b6040519081526020015b60405180910390f35b610274610bfc565b604051610263919061348e565b610289610c8a565b604080516dffffffffffffffffffffffffffff948516815293909216602084015263ffffffff1690820152606001610263565b6102cf6102ca3660046134cd565b610cf3565b6040519015158152602001610263565b6008546102ff9073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610263565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b61025960025481565b6102cf6103623660046134f9565b610d6c565b61037a6103753660046133b1565b610eb0565b604051610263919061353a565b6102597f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b6103d57f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff9091168152602001610263565b610259611220565b6102596103fd3660046133b1565b61127b565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6102597f000000000000000000000000000000000000000000000000000000000000000081565b61025960095481565b610259600a5481565b6102596104703660046133b1565b611433565b61047d6117c4565b60408051938452602084019290925263ffffffff1690820152606001610263565b6104a6611a1a565b604051610263919061359f565b6102596104c13660046135f9565b60036020526000908152604090205481565b610259600b5481565b6102596104ea3660046133b1565b611b19565b6102596104fd3660046135f9565b60056020526000908152604090205481565b610274611e00565b6102597f54726964656e743a436f6e7374616e7450726f6475637400000000000000000081565b61025961054c3660046133b1565b611e0d565b6102cf61055f3660046134cd565b611fb1565b6102596105723660046133b1565b612036565b61025960075481565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6102ff7f000000000000000000000000000000000000000000000000000000000000000081565b6105e16105dc366004613616565b612410565b005b6102596105f136600461368d565b600460209081526000928352604080842090915290825290205481565b6105e161273c565b6000600654600114610689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e43590000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b60026006556000808080806106a087890189613705565b945094509450945094506000806000610708600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff1660001415610759576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff16141561098a576107d885846dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166128a7565b98506108067f00000000000000000000000000000000000000000000000000000000000000008a898961290a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b19061084290879060040161348e565b600060405180830381600087803b15801561085c57600080fd5b505af1158015610870573d6000803e3d6000fd5b5050505060008061087f612aa1565b9150915086856dffffffffffffffffffffffffffff16830310156108cf576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108dc8282878787612c5d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f60405161097b929190918252602082015260400190565b60405180910390a45050610be8565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614610a0f576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a3a85836dffffffffffffffffffffffffffff16856dffffffffffffffffffffffffffff166128a7565b9850610a687f00000000000000000000000000000000000000000000000000000000000000008a898961290a565b6040517fbd50c7b1000000000000000000000000000000000000000000000000000000008152339063bd50c7b190610aa490879060040161348e565b600060405180830381600087803b158015610abe57600080fd5b505af1158015610ad2573d6000803e3d6000fd5b50505050600080610ae1612aa1565b9150915086846dffffffffffffffffffffffffffff1682031015610b31576040517fdf5b2ee600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b3e8282878787612c5d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e460628a8f604051610bdd929190918252602082015260400190565b60405180910390a450505b505060016006555094979650505050505050565b60008054610c0990613814565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3590613814565b8015610c825780601f10610c5757610100808354040283529160200191610c82565b820191906000526020600020905b815481529060010190602001808311610c6557829003601f168201915b505050505081565b6000806000610ce8600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250909192565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610d5b9086815260200190565b60405180910390a350600192915050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602090815260408083203384529091528120547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e0057610dce8382613897565b73ffffffffffffffffffffffffffffffffffffffff861660009081526004602090815260408083203384529091529020555b73ffffffffffffffffffffffffffffffffffffffff851660009081526003602052604081208054859290610e35908490613897565b909155505073ffffffffffffffffffffffffffffffffffffffff808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610e9d9087815260200190565b60405180910390a3506001949350505050565b6060600654600114610f1e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080610f32848601866138ae565b915091506000806000610f94600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080610fa5612aa1565b30600090815260036020526040812054929450909250610fc58787612f0a565b509050600081610fd586856138e3565b610fdf919061394f565b9050600082610fee86866138e3565b610ff8919061394f565b90506110043085612fe9565b6110307f0000000000000000000000000000000000000000000000000000000000000000838d8d61290a565b61105c7f0000000000000000000000000000000000000000000000000000000000000000828d8d61290a565b8186039550808503945061107386868b8b8b612c5d565b61108561108086886138e3565b61307f565b600b556040805160028082526060820190925290816020015b604080518082019091526000808252602082015281526020019060019003908161109e579050509b5060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168152602001838152508c6000815181106111255761112561398a565b602002602001018190525060405180604001604052807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168152602001828152508c60018151811061118e5761118e61398a565b60200260200101819052508a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d819364968484604051611201929190918252602082015260400190565b60405180910390a35050600160065550979a9950505050505050505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461125657611251613138565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6000808061128b848601866134cd565b915091506000806112eb600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156113765761136f83836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff166131d2565b9450611429565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142683826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166131d2565b94505b5050505092915050565b60006006546001146114a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080806114b6858701876139b9565b925092509250600080600061151a600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250826dffffffffffffffffffffffffffff166000141561156b576040517fd886367700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611576612aa1565b915091506000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff161415611640577f00000000000000000000000000000000000000000000000000000000000000009050866dffffffffffffffffffffffffffff168403915061163482886dffffffffffffffffffffffffffff16886dffffffffffffffffffffffffffff166128a7565b9a508a8303925061172c565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16146116c5576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050600c546dffffffffffffffffffffffffffff6e01000000000000000000000000000090910481168203907f000000000000000000000000000000000000000000000000000000000000000090611724908390888116908a166128a7565b9a508a840393505b611738818c8b8b61290a565b6117458484898989612c5d565b8073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fcd3829a3813dc3cdd188fd3d01dcf3268c16be2fdd2dd21d0665418816e46062858f604051610bdd929190918252602082015260400190565b600080600080600080611826600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301526dffffffffffffffffffffffffffff851660248301526000604483015293965091945092507f000000000000000000000000000000000000000000000000000000000000000090911690635662311890606401602060405180830381865afa1580156118f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191d9190613a00565b6040517f5662311800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301526dffffffffffffffffffffffffffff85166024830152600060448301529197507f000000000000000000000000000000000000000000000000000000000000000090911690635662311890606401602060405180830381865afa1580156119eb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a0f9190613a00565b959690945092505050565b60408051600280825260608083018452926020830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000081600081518110611a6e57611a6e61398a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110611adc57611adc61398a565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505090565b6000600654600114611b87576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b60026006556000611b9a838501856135f9565b90506000806000611bfa600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b925092509250600080611c0b612aa1565b90925090506000611c1f61108083856138e3565b90506000611c3d6dffffffffffffffffffffffffffff881685613897565b90506000611c5b6dffffffffffffffffffffffffffff881685613897565b9050600080611c8c84848c6dffffffffffffffffffffffffffff168c6dffffffffffffffffffffffffffff1661323d565b9092509050611c9b828b613a19565b9950611ca7818a613a19565b9850600080611cb68c8c612f0a565b915091508160001415611d2557851580611cce575084155b15611d05576040517fd856fc5a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d116103e888613897565b9d50611d2060006103e8613340565b611d41565b80870381611d3384836138e3565b611d3d919061394f565b9e50505b8d611d78576040517fd226f9d400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d828d8f613340565b611d8f89898e8e8e612c5d565b600b879055604080518781526020810187905273ffffffffffffffffffffffffffffffffffffffff8f169133917fdbba30eb0402b389513e87f51f4db2db80bed454384ec6925a24097c3548a02a910160405180910390a35050600160065550999c9b505050505050505050505050565b60018054610c0990613814565b60008080611e1d848601866134cd565b91509150600080611e7d600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b50915091507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f015761136f83836dffffffffffffffffffffffffffff16836dffffffffffffffffffffffffffff166128a7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f2df9739b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61142683826dffffffffffffffffffffffffffff16846dffffffffffffffffffffffffffff166128a7565b33600090815260036020526040812080548391908390611fd2908490613897565b909155505073ffffffffffffffffffffffffffffffffffffffff8316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610d5b9086815260200190565b60006006546001146120a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600a60248201527f5245454e5452414e4359000000000000000000000000000000000000000000006044820152606401610680565b6002600655600080806120b9858701876139b9565b925092509250600080600061211d600c546dffffffffffffffffffffffffffff808216926e01000000000000000000000000000083049091169163ffffffff7c01000000000000000000000000000000000000000000000000000000009091041690565b30600090815260036020526040812054939650919450925061213f8585612f0a565b50905060008161215f6dffffffffffffffffffffffffffff8816856138e3565b612169919061394f565b90506000826121886dffffffffffffffffffffffffffff8816866138e3565b612192919061394f565b90506121d56121b1826dffffffffffffffffffffffffffff8916613897565b6121cb846dffffffffffffffffffffffffffff8b16613897565b61108091906138e3565b600b556121e23085612fe9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff16141561229e576122658283896dffffffffffffffffffffffffffff160383896dffffffffffffffffffffffffffff16036128a7565b016122927f0000000000000000000000000000000000000000000000000000000000000000828b8b61290a565b809a5060009150612389565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f0620202000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123528182886dffffffffffffffffffffffffffff1603848a6dffffffffffffffffffffffffffff16036128a7565b820191506123827f0000000000000000000000000000000000000000000000000000000000000000838b8b61290a565b5098508860005b600080612394612aa1565b915091506123a582828b8b8b612c5d565b604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff8d169133917fdccd412f0b1252819cb1fd330b93224ca42612892bb3f4f789976e6d81936496910160405180910390a35050600160065550989b9a5050505050505050505050565b4284101561247a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f5045524d49545f444541444c494e455f455850495245440000000000000000006044820152606401610680565b6000612484611220565b73ffffffffffffffffffffffffffffffffffffffff89811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938c166060840152608083018b905260a083019390935260c08083018a90528151808403909101815260e0830190915280519201919091207f190100000000000000000000000000000000000000000000000000000000000061010083015261010282019290925261012281019190915261014201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa1580156125e3573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff81161580159061265e57508873ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6126c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152600e60248201527f494e56414c49445f5349474e45520000000000000000000000000000000000006044820152606401610680565b73ffffffffffffffffffffffffffffffffffffffff90811660009081526004602090815260408083208b8516808552908352928190208a905551898152919350918a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c14ad8026040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127cb9190613a00565b6007819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16630c0a0cd26040518163ffffffff1660e01b8152600401602060405180830381865afa15801561283c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128609190613a4b565b600880547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6000806128d47f0000000000000000000000000000000000000000000000000000000000000000866138e3565b9050806128e3612710866138e3565b6128ed9190613a68565b6128f784836138e3565b612901919061394f565b95945050505050565b80156129e4576040517f97da6d3000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8581166004830152306024830152838116604483015260006064830152608482018590527f000000000000000000000000000000000000000000000000000000000000000016906397da6d309060a40160408051808303816000875af11580156129b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129dd9190613a80565b5050612a9b565b6040517ff18d03cc00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85811660048301523060248301528381166044830152606482018590527f0000000000000000000000000000000000000000000000000000000000000000169063f18d03cc90608401600060405180830381600087803b158015612a8257600080fd5b505af1158015612a96573d6000803e3d6000fd5b505050505b50505050565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000008116600483015230602483015260009182917f0000000000000000000000000000000000000000000000000000000000000000169063f7888aec90604401602060405180830381865afa158015612b58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b7c9190613a00565b6040517ff7888aec00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000811660048301523060248301529193507f00000000000000000000000000000000000000000000000000000000000000009091169063f7888aec90604401602060405180830381865afa158015612c33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c579190613a00565b90509091565b6dffffffffffffffffffffffffffff851180612c8657506dffffffffffffffffffffffffffff84115b15612cbd576040517f35278d1200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b63ffffffff8116612d1f57600c80546dffffffffffffffffffffffffffff8681166e010000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090921690881617179055612eca565b4263ffffffff80821690831614801590612d4857506dffffffffffffffffffffffffffff841615155b8015612d6357506dffffffffffffffffffffffffffff831615155b15612e285781810360006dffffffffffffffffffffffffffff86167bffffffffffffffffffffffffffff0000000000000000000000000000607087901b1681612dae57612dae613920565b600980549290910463ffffffff851681029092019055905060006dffffffffffffffffffffffffffff8616607088901b7bffffffffffffffffffffffffffff00000000000000000000000000001681612e0957612e09613920565b0490508263ffffffff168102600a600082825401925050819055505050505b600c805463ffffffff9092167c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff6dffffffffffffffffffffffffffff8881166e010000000000000000000000000000027fffffffff00000000000000000000000000000000000000000000000000000000909516908a161793909317929092169190911790555b60408051868152602081018690527fcf2aa50876cdfbb541206f89af0ee78d44a2abf8d328e37fa4917f982149848a910160405180910390a15050505050565b600254600b546000908015612fe157612f396110806dffffffffffffffffffffffffffff8087169088166138e3565b915080821115612fe157600754600081612f538486613897565b612f5d90876138e3565b612f6791906138e3565b90506000612f7584846138e3565b85612f8285612710613897565b612f8c91906138e3565b612f969190613a68565b90506000612fa4828461394f565b90508015612fdc57600854612fcf9073ffffffffffffffffffffffffffffffffffffffff1682613340565b612fd98188613a68565b96505b505050505b509250929050565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600360205260408120805483929061301e908490613897565b909155505060028054829003905560405181815260009073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b60b5817101000000000000000000000000000000000081106130a65760409190911b9060801c5b690100000000000000000081106130c25760209190911b9060401c5b6501000000000081106130da5760109190911b9060201c5b630100000081106130f05760089190911b9060101c5b62010000010260121c80820401600190811c80830401811c80830401811c80830401811c80830401811c80830401811c80830401901c8082048111156131335781045b919050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f600060405161316a9190613aa4565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60007f00000000000000000000000000000000000000000000000000000000000000006131ff8584613897565b61320991906138e3565b61271061321686866138e3565b61322091906138e3565b61322a919061394f565b613235906001613a68565b949350505050565b60008083158061324b575082155b1561325b57506000905080613337565b60008461326885896138e3565b613272919061394f565b90508581116132cd5761328861271060026138e3565b6132928288613897565b6132bc907f00000000000000000000000000000000000000000000000000000000000000006138e3565b6132c6919061394f565b9150613335565b6000846132da87896138e3565b6132e4919061394f565b90506132f361271060026138e3565b6132fd828a613897565b613327907f00000000000000000000000000000000000000000000000000000000000000006138e3565b613331919061394f565b9350505b505b94509492505050565b80600260008282546133529190613a68565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101613073565b600080602083850312156133c457600080fd5b823567ffffffffffffffff808211156133dc57600080fd5b818501915085601f8301126133f057600080fd5b8135818111156133ff57600080fd5b86602082850101111561341157600080fd5b60209290920196919550909350505050565b6000815180845260005b818110156134495760208185018101518683018201520161342d565b8181111561345b576000602083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6020815260006134a16020830184613423565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff811681146134ca57600080fd5b50565b600080604083850312156134e057600080fd5b82356134eb816134a8565b946020939093013593505050565b60008060006060848603121561350e57600080fd5b8335613519816134a8565b92506020840135613529816134a8565b929592945050506040919091013590565b602080825282518282018190526000919060409081850190868401855b82811015613592578151805173ffffffffffffffffffffffffffffffffffffffff168552860151868501529284019290850190600101613557565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b818110156135ed57835173ffffffffffffffffffffffffffffffffffffffff16835292840192918401916001016135bb565b50909695505050505050565b60006020828403121561360b57600080fd5b81356134a1816134a8565b600080600080600080600060e0888a03121561363157600080fd5b873561363c816134a8565b9650602088013561364c816134a8565b95506040880135945060608801359350608088013560ff8116811461367057600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156136a057600080fd5b82356136ab816134a8565b915060208301356136bb816134a8565b809150509250929050565b8035801515811461313357600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080600080600060a0868803121561371d57600080fd5b8535613728816134a8565b94506020860135613738816134a8565b9350613746604087016136c6565b925060608601359150608086013567ffffffffffffffff8082111561376a57600080fd5b818801915088601f83011261377e57600080fd5b813581811115613790576137906136d6565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156137d6576137d66136d6565b816040528281528b60208487010111156137ef57600080fd5b8260208601602083013760006020848301015280955050505050509295509295909350565b600181811c9082168061382857607f821691505b60208210811415613862577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000828210156138a9576138a9613868565b500390565b600080604083850312156138c157600080fd5b82356138cc816134a8565b91506138da602084016136c6565b90509250929050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561391b5761391b613868565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613985577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000806000606084860312156139ce57600080fd5b83356139d9816134a8565b925060208401356139e9816134a8565b91506139f7604085016136c6565b90509250925092565b600060208284031215613a1257600080fd5b5051919050565b60006dffffffffffffffffffffffffffff808316818516808303821115613a4257613a42613868565b01949350505050565b600060208284031215613a5d57600080fd5b81516134a1816134a8565b60008219821115613a7b57613a7b613868565b500190565b60008060408385031215613a9357600080fd5b505080516020909101519092909150565b600080835481600182811c915080831680613ac057607f831692505b6020808410821415613af9577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b818015613b0d5760018114613b3c57613b69565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00861689528489019650613b69565b60008a81526020902060005b86811015613b615781548b820152908501908301613b48565b505084890196505b50949897505050505050505056fea2646970667358221220860e8cf8543ab713382b6536fca66307d46924b935d4b3b4d13f57dd57da62ae64736f6c634300080a0033', ) +*/ // Compute pool address - return getCreate2Address( - factoryAddress, - keccak256(['bytes'], [deployData]), - CONSTANT_PRODUCT_POOL_INIT_CODE_HASH, - ) + return getCreate2Address({ + from: factoryAddress, + salt: keccak256(deployData), + bytecodeHash: CONSTANT_PRODUCT_POOL_INIT_CODE_HASH, + }) } diff --git a/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts b/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts index 9eef5bb1e4..18f13aa033 100644 --- a/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts +++ b/packages/sushi/src/pool/trident-stable/compute-trident-stable-pool-address.ts @@ -1,8 +1,8 @@ import { defaultAbiCoder } from '@ethersproject/abi' -import { getCreate2Address } from '@ethersproject/address' -import { keccak256 } from '@ethersproject/solidity' -import { Token } from '../../currency/index.js' -import { Fee } from '../../dex/index.js' +import type { Address, Hex } from 'viem' +import { getCreate2Address, keccak256 } from 'viem/utils' +import type { Token } from '../../currency/index.js' +import type { Fee } from '../../dex/index.js' export const computeTridentStablePoolAddress = ({ factoryAddress, @@ -10,7 +10,7 @@ export const computeTridentStablePoolAddress = ({ tokenB, fee, }: { - factoryAddress: string + factoryAddress: Address tokenA: Token tokenB: Token fee: Fee @@ -23,7 +23,7 @@ export const computeTridentStablePoolAddress = ({ const deployData = defaultAbiCoder.encode( ['address', 'address', 'uint256'], [token0.address, token1.address, fee], - ) + ) as Hex const STABLE_POOL_INIT_CODE_HASH = '0xf12c5d0bd466e168fefdf789d5c48040e038cb71f6b1bcc741e9ae57205f3906' @@ -37,9 +37,9 @@ export const computeTridentStablePoolAddress = ({ */ // Compute pool address - return getCreate2Address( - factoryAddress, - keccak256(['bytes'], [deployData]), - STABLE_POOL_INIT_CODE_HASH, - ) + return getCreate2Address({ + from: factoryAddress, + salt: keccak256(deployData), + bytecodeHash: STABLE_POOL_INIT_CODE_HASH, + }) } diff --git a/packages/sushi/src/router/liquidity-providers/UniswapV2Base.ts b/packages/sushi/src/router/liquidity-providers/UniswapV2Base.ts index d9d31ec9b7..6b155d8936 100644 --- a/packages/sushi/src/router/liquidity-providers/UniswapV2Base.ts +++ b/packages/sushi/src/router/liquidity-providers/UniswapV2Base.ts @@ -1,6 +1,6 @@ -import { getCreate2Address } from '@ethersproject/address' import { add, getUnixTime } from 'date-fns' -import { Address, Hex, PublicClient, encodePacked, keccak256 } from 'viem' +import type { Address, Hex, PublicClient } from 'viem' +import { encodePacked, getCreate2Address, keccak256 } from 'viem/utils' import { getReservesAbi } from '../../abi/index.js' import { ChainId } from '../../chain/index.js' import { @@ -457,16 +457,17 @@ export abstract class UniswapV2BaseProvider extends LiquidityProvider { } _getPoolAddress(t1: Token, t2: Token): Address { - return getCreate2Address( - this.factory[this.chainId as keyof typeof this.factory]!, - keccak256( + return getCreate2Address({ + from: this.factory[this.chainId as keyof typeof this.factory]!, + salt: keccak256( encodePacked( ['address', 'address'], [t1.address as Address, t2.address as Address], ), ), - this.initCodeHash[this.chainId as keyof typeof this.initCodeHash]!, - ) as Address + bytecodeHash: + this.initCodeHash[this.chainId as keyof typeof this.initCodeHash]!, + }) } // TODO: Decide if this is worth keeping as fallback in case fetching top pools fails? only used on initial load. diff --git a/packages/sushi/src/router/liquidity-providers/UniswapV3Base.ts b/packages/sushi/src/router/liquidity-providers/UniswapV3Base.ts index c3ab1201b7..c5a5c2029b 100644 --- a/packages/sushi/src/router/liquidity-providers/UniswapV3Base.ts +++ b/packages/sushi/src/router/liquidity-providers/UniswapV3Base.ts @@ -1,4 +1,4 @@ -import { Address, PublicClient } from 'viem' +import type { Address, Hex, PublicClient } from 'viem' import { erc20Abi, tickLensAbi } from '../../abi/index.js' import { ChainId } from '../../chain/index.js' import { SushiSwapV3FeeAmount, TICK_SPACINGS } from '../../config/index.js' @@ -48,14 +48,14 @@ export abstract class UniswapV3BaseProvider extends LiquidityProvider { isInitialized = false factory: Record = {} - initCodeHash: Record = {} + initCodeHash: Record = {} tickLens: Record = {} constructor( chainId: ChainId, web3Client: PublicClient, factory: Record, - initCodeHash: Record, + initCodeHash: Record, tickLens: Record, isTest = false, ) { diff --git a/packages/sushi/test/tines/snapshots/report b/packages/sushi/test/tines/snapshots/report index 306557668b..6d24e5f0ff 100644 --- a/packages/sushi/test/tines/snapshots/report +++ b/packages/sushi/test/tines/snapshots/report @@ -1,44 +1,42 @@ -1:"bridge-1": 5528.94 -> 5528.94 (0%) avg:0% -2:"bridge-2": 7663 -> 7663 (0%) avg:0% -3:"bridge-3": 11953.94 -> 11953.94 (0%) avg:0% +1:"top20-0": 5.999999993733542 -> 5.999999993733542 (0%) avg:0% 4:"bridge-4": 5496.94 -> 5496.94 (0%) avg:0% 5:"bridge-5-1": 4260.964 -> 4260.964 (0%) avg:0% -2:"top20-1": 1.1195509365387262e+37 -> 1.1195509365387262e+37 (0%) avg:0% 6:"bridge-5-2": 5473.94 -> 5473.94 (0%) avg:0% 7:"bridge-5-3": 5501.94 -> 5501.94 (0%) avg:0% 8:"bridge-5-5": 5528.94 -> 5528.94 (0%) avg:0% 9:"bridge-5-10": 5528.94 -> 5528.94 (0%) avg:0% 10:"bridge-5-30": 5528.94 -> 5528.94 (0%) avg:0% 11:"bridge-5-100": 5528.94 -> 5528.94 (0%) avg:0% +12:"bridge-5-300": 5528.94 -> 5528.94 (0%) avg:0% +2:"top20-1": 1.1195509365387262e+37 -> 1.1195509365387262e+37 (0%) avg:0% 3:"top20-2": 96249232830474440000 -> 96249232830474440000 (0%) avg:0% 4:"top20-3": 467011582838851800000 -> 467011582838851800000 (0%) avg:0% 5:"top20-4": 14263706377454.916 -> 14263706377454.916 (0%) avg:0% -12:"bridge-5-300": 5528.94 -> 5528.94 (0%) avg:0% -6:"top20-5": 111208992328025 -> 111208992328025 (0%) avg:0% -7:"top20-6": 184056193599 -> 184056193599 (0%) avg:0% 13:"bridge-5-1000": 5528.94 -> 5528.94 (0%) avg:0% -8:"top20-7": 1.949010266471403e+21 -> 1.949010266471403e+21 (0%) avg:0% 14:"bridge-6": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% 15:"bridge-7-1": 567.9947198349995 -> 567.9947198349995 (0%) avg:0% 16:"bridge-7-2": 567.9947198349995 -> 567.9947198349995 (0%) avg:0% 17:"bridge-7-3": 569.9929597799993 -> 569.9929597799993 (0%) avg:0% -9:"top20-8": 5147698251 -> 5147698251 (0%) avg:0% 18:"bridge-7-5": 577.9911997249991 -> 577.9911997249991 (0%) avg:0% 19:"bridge-7-10": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% 20:"bridge-7-30": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% +6:"top20-5": 111208992328025 -> 111208992328025 (0%) avg:0% +7:"top20-6": 184056193599 -> 184056193599 (0%) avg:0% +21:"bridge-7-100": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% +8:"top20-7": 1.949010266471403e+21 -> 1.949010266471403e+21 (0%) avg:0% +9:"top20-8": 5147698251 -> 5147698251 (0%) avg:0% 10:"top20-9": 2.3146866045567974e+29 -> 2.3146866045567974e+29 (0%) avg:0% +22:"bridge-7-300": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% 11:"top20-10": 2.000939725061475e+25 -> 2.000939725061475e+25 (0%) avg:0% -21:"bridge-7-100": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% 12:"top20-11": 0 -> 0 (0%) avg:0% -22:"bridge-7-300": 579.9911997249991 -> 579.9911997249991 (0%) avg:0% 13:"top20-12": 5.998729978399937e+23 -> 5.998729978399937e+23 (0%) avg:0% 14:"top20-13": 14.999999999999975 -> 14.999999999999975 (0%) avg:0% 15:"top20-14": 242561332730 -> 242561332730 (0%) avg:0% 16:"top20-15": 20057219983855420 -> 20057219983855420 (0%) avg:0% 17:"top20-16": 1371193183.507006 -> 1371193183.507006 (0%) avg:0% +23:"bridge-7-1000": 578.9911997249991 -> 578.9911997249991 (0%) avg:0% 18:"top20-17": 618784869519468900000 -> 618784869519468900000 (0%) avg:0% 19:"top20-18": 13965130914 -> 13965130914 (0%) avg:0% -23:"bridge-7-1000": 578.9911997249991 -> 578.9911997249991 (0%) avg:0% 20:"top20-19": 1719221840266011.2 -> 1719221840266011.2 (0%) avg:0% 21:"top20-20": 1.1539072915253164e+27 -> 1.1539072915253164e+27 (0%) avg:0% 22:"top20-21": 1.4857010533172297e+22 -> 1.4857010533172297e+22 (0%) avg:0% diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b266d3cd22..218064ca45 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1736,18 +1736,15 @@ importers: packages/hooks: dependencies: - '@ethersproject/address': - specifier: 5.7.0 - version: 5.7.0 - '@ethersproject/providers': - specifier: 5.7.2 - version: 5.7.2 copy-to-clipboard: specifier: 3.3.3 version: 3.3.3 react-responsive: specifier: 9.0.0-beta.10 version: 9.0.0-beta.10(react@18.2.0) + viem: + specifier: 2.10.11 + version: 2.10.11(typescript@5.2.2)(zod@3.21.4) devDependencies: '@sushiswap/jest-config': specifier: workspace:* @@ -1923,12 +1920,6 @@ importers: '@ethersproject/abi': specifier: 5.7.0 version: 5.7.0 - '@ethersproject/address': - specifier: 5.7.0 - version: 5.7.0 - '@ethersproject/solidity': - specifier: 5.7.0 - version: 5.7.0 '@uniswap/token-lists': specifier: 1.0.0-beta.33 version: 1.0.0-beta.33 @@ -1987,9 +1978,6 @@ importers: '@wagmi/core': specifier: 2.10.2 version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) - ts-node: - specifier: 10.9.2 - version: 10.9.2(@swc/core@1.4.2)(@types/node@20.12.7)(typescript@5.2.2) typescript: specifier: 5.2.2 version: 5.2.2 @@ -16016,7 +16004,7 @@ packages: dependencies: '@noble/hashes': 1.2.0 '@noble/secp256k1': 1.7.1 - '@scure/base': 1.1.3 + '@scure/base': 1.1.6 /@scure/bip32@1.3.1: resolution: {integrity: sha512-osvveYtyzdEVbt3OfwwXFr4P2iVBL5u1Q3q4ONBfDY/UpOuXmOlbgwc1xECEboY8wIays8Yt6onaWMUdUbfl0A==} @@ -16051,7 +16039,7 @@ packages: resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==} dependencies: '@noble/hashes': 1.2.0 - '@scure/base': 1.1.3 + '@scure/base': 1.1.6 /@scure/bip39@1.2.1: resolution: {integrity: sha512-Z3/Fsz1yr904dduJD0NpiyRHhRYHdcnyh73FZWiV+/qhWi83wNJ3NWolYqCEN+ZWsUz2TWwajJggcRE9r1zUYg==} @@ -44489,6 +44477,7 @@ packages: typescript: 5.2.2 v8-compile-cache-lib: 3.0.1 yn: 3.1.1 + dev: false /ts-node@10.9.2(@types/node@20.10.0)(typescript@5.2.2): resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} From 18b28a4f88e1a999b1451fc0474deb2327aa5a84 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 17:32:00 +0200 Subject: [PATCH 067/119] fix: stringify, include error messages in retry exceed errors --- .../src/app/pool/api/graphPool/[id]/route.ts | 7 +- jobs/pool/src/pools.ts | 278 +++++++++++------- packages/graph-client-new/src/lib/request.ts | 7 +- 3 files changed, 182 insertions(+), 110 deletions(-) diff --git a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts index 52ca7db3c9..d6420cb451 100644 --- a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts +++ b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts @@ -1,3 +1,4 @@ +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server' import { getV2GraphPool } from 'src/lib/graph' import { z } from 'zod' @@ -19,5 +20,9 @@ export async function GET( } const pool = await getV2GraphPool(result.data.id) - return NextResponse.json(pool) + const stringified = JSONStringify(pool) + return new NextResponse(stringified, { + status: 200, + headers: { 'content-type': 'application/json' }, + }) } diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 14b2f5713e..a570398821 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -63,6 +63,10 @@ enum AprTimeRange { ONE_MONTH = 'ONE_MONTH', } +const SUBGRAPH_REQUEST_OPTIONS = { + retries: 3, // should probably be a reasonable timeout as well? +} + export async function execute(protocol: Protocol) { try { const startTime = performance.now() @@ -123,10 +127,10 @@ export async function execute(protocol: Protocol) { async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { const result: { chainId: ChainId; data: V2Data | V3Data }[] = [] - + const chainIds = - protocol === Protocol.SUSHISWAP_V2 ? [ChainId.BASE] : [ChainId.BASE] // leaving this here for testing, will remove later - // TODO: enable code below, commented out while testing + protocol === Protocol.SUSHISWAP_V2 ? [ChainId.ARBITRUM] : [ChainId.BASE] // leaving this here for testing, will remove later + // TODO: enable code below, commented out while testing // const chainIds = // protocol === Protocol.SUSHISWAP_V2 // ? SUSHISWAP_V2_SUPPORTED_CHAIN_IDS @@ -153,6 +157,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { hoursAgo: 1, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ @@ -161,6 +166,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { hoursAgo: 2, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -168,6 +174,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { daysAgo: 1, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -175,6 +182,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { daysAgo: 2, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -182,6 +190,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { weeksAgo: 1, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -189,6 +198,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { weeksAgo: 2, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -196,6 +206,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { monthsAgo: 1, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), fetchMultichain({ chainIds, @@ -203,6 +214,7 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { variables: { monthsAgo: 2, }, + options: SUBGRAPH_REQUEST_OPTIONS, }), ]) @@ -255,80 +267,107 @@ async function fetchPairs( pools1m, pools2m, ] = await Promise.all([ - getSushiV2Pools({ - chainId, - }), + getSushiV2Pools( + { + chainId, + }, + SUBGRAPH_REQUEST_OPTIONS, + ), blocks.oneHour - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.oneHour, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.oneHour, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.twoHour - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.twoHour, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.twoHour, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.oneDay - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.oneDay, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.oneDay, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.twoDay - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.twoDay, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.twoDay, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.oneWeek - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.oneWeek, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.oneWeek, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.twoWeek - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.twoWeek, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.twoWeek, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.oneMonth - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.oneMonth, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.oneMonth, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), blocks.twoMonth - ? getSushiV2Pools({ - chainId, - block: { - number: blocks.twoMonth, + ? getSushiV2Pools( + { + chainId, + block: { + number: blocks.twoMonth, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV2Pools), ]) @@ -367,81 +406,108 @@ async function fetchPairs( pools1m, pools2m, ] = await Promise.all([ - getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - first: Infinity, - }), + getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + first: Infinity, + }, + SUBGRAPH_REQUEST_OPTIONS, + ), blocks.oneHour - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.oneHour, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneHour, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.twoHour - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.twoHour, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoHour, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.oneDay - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.oneDay, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneDay, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.twoDay - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.twoDay, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoDay, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.oneWeek - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.oneWeek, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneWeek, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.twoWeek - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.twoWeek, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoWeek, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.oneMonth - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.oneMonth, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.oneMonth, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), blocks.twoMonth - ? getSushiV3Pools({ - chainId: chainId as SushiSwapV3ChainId, - block: { - number: blocks.twoMonth, + ? getSushiV3Pools( + { + chainId: chainId as SushiSwapV3ChainId, + block: { + number: blocks.twoMonth, + }, + first: Infinity, }, - first: Infinity, - }) + SUBGRAPH_REQUEST_OPTIONS, + ) : ([] as SushiV3Pools), ]) diff --git a/packages/graph-client-new/src/lib/request.ts b/packages/graph-client-new/src/lib/request.ts index 6b8e9aa7f0..5de997aad4 100644 --- a/packages/graph-client-new/src/lib/request.ts +++ b/packages/graph-client-new/src/lib/request.ts @@ -32,7 +32,7 @@ export async function request( options: RequestOptions = {}, ): Promise { let remainingRetries = options.retries ?? 1 - + let errorMessage = '' while (remainingRetries > 0) { try { if (options.timeout) { @@ -40,10 +40,11 @@ export async function request( } else { return await _request(params) } - } catch { + } catch (err: any) { remainingRetries-- + errorMessage = err.message } } - throw new Error('Retries exceeded') + throw new Error(`Retries exceeded. Last error: ${errorMessage}`) } From 104cfc888fe2ea53f352bbbf19032b0559eacf93 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 18:03:26 +0200 Subject: [PATCH 068/119] fix: user endpoint --- apps/evm/src/app/pool/api/user-with-pools/route.ts | 11 +++++++++-- apps/evm/src/app/pool/api/user/route.ts | 9 ++++++++- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/apps/evm/src/app/pool/api/user-with-pools/route.ts b/apps/evm/src/app/pool/api/user-with-pools/route.ts index 044f58df6b..f311e7fbf2 100644 --- a/apps/evm/src/app/pool/api/user-with-pools/route.ts +++ b/apps/evm/src/app/pool/api/user-with-pools/route.ts @@ -3,7 +3,10 @@ import type { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { NextResponse } from 'next/server' import { getUser, getV2GraphPools } from 'src/lib/graph' import { ChainId } from 'sushi/chain' + +import { JSONStringify } from 'json-with-bigint' import { isSushiSwapV2ChainId } from 'sushi/config' + import type { PoolBase, PoolIfIncentivized, @@ -12,6 +15,7 @@ import type { } from 'sushi/types' import { Address } from 'viem' import { z } from 'zod' +import { CORS } from '../cors' export const revalidate = 15 @@ -82,10 +86,13 @@ export async function GET(request: Request) { } }) .filter((pool): pool is NonNullable => pool !== undefined) - - return NextResponse.json(userPositions satisfies UserWithPool[], { + const stringified = JSONStringify(userPositions) + return new NextResponse(stringified, { + status: 200, headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', + 'content-type': 'application/json', + ...CORS, }, }) } diff --git a/apps/evm/src/app/pool/api/user/route.ts b/apps/evm/src/app/pool/api/user/route.ts index c8638778dd..d7d1b993a5 100644 --- a/apps/evm/src/app/pool/api/user/route.ts +++ b/apps/evm/src/app/pool/api/user/route.ts @@ -1,9 +1,11 @@ +import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server' import { getUser } from 'src/lib/graph' import { ChainId } from 'sushi/chain' import { isSushiSwapV2ChainId } from 'sushi/config' import { Address } from 'viem' import { z } from 'zod' +import { CORS } from '../cors' export const revalidate = 15 @@ -38,9 +40,14 @@ export async function GET(request: Request) { } const args = result.data const data = await getUser(args) - return NextResponse.json(data, { + + const stringified = JSONStringify(data) + return new NextResponse(stringified, { + status: 200, headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', + 'content-type': 'application/json', + ...CORS, }, }) } From 7882a4e6766d7a9196977cf17649b4d605fdb0c9 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 18:15:14 +0200 Subject: [PATCH 069/119] fix: add more json parse --- apps/evm/src/lib/hooks/api/useGraphPool.ts | 5 ++++- apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index d761eb4ff0..ab639fcc7d 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -7,6 +7,7 @@ import useSWR from 'swr' import type { PoolId } from 'sushi' import { getTokensFromPool } from '../useTokensFromPool' +import { JSONParse } from 'json-with-bigint' export function getGraphPoolUrl(poolId: string) { return `/pools/api/graphPool/${poolId}` @@ -19,7 +20,9 @@ export const useGraphPool = (pool: PoolId) => { isValidating, error, } = useSWR(getGraphPoolUrl(pool.id), async (url) => - fetch(url).then((data) => data.json()), + fetch(url) + .then((data) => data.json()) + .then((data) => JSONParse(data)), ) const { token0, token1, liquidityToken } = useMemo(() => { diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts index 8b92b7460b..f6b7ed6290 100644 --- a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -3,6 +3,7 @@ import { parseArgs } from '@sushiswap/client' import type { GetSushiV2StakedUnstakedPositions } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import { useQuery } from '@tanstack/react-query' +import { JSONParse } from 'json-with-bigint' import { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { ChainId } from 'sushi/chain' @@ -24,7 +25,9 @@ export function useSushiV2UserPositions( return useQuery({ queryKey: [getUserPositionsWithPoolsUrl(args)], queryFn: () => - fetch(getUserPositionsWithPoolsUrl(args)).then((data) => data.json()), + fetch(getUserPositionsWithPoolsUrl(args)) + .then((data) => data.json()) + .then((data) => JSONParse(data)), enabled: Boolean(shouldFetch && args.user), }) } From 351c33d862087fcb718d9ce67f0e0db8704c3307 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 20:49:59 +0200 Subject: [PATCH 070/119] fix: v2 positions --- .../src/app/pool/api/user-with-pools/route.ts | 30 ++++++++++++++++--- apps/evm/src/lib/graph.ts | 2 +- apps/evm/src/lib/hooks/api/useGraphPool.ts | 2 -- .../lib/hooks/api/useSushiV2UserPositions.ts | 6 ++-- apps/evm/src/ui/pool/PositionCardList.tsx | 2 +- apps/evm/src/ui/pool/PositionsTable.tsx | 4 +-- .../sushi-v2-staked-unstaked-positions.ts | 10 +++---- 7 files changed, 37 insertions(+), 19 deletions(-) diff --git a/apps/evm/src/app/pool/api/user-with-pools/route.ts b/apps/evm/src/app/pool/api/user-with-pools/route.ts index f311e7fbf2..356df5daef 100644 --- a/apps/evm/src/app/pool/api/user-with-pools/route.ts +++ b/apps/evm/src/app/pool/api/user-with-pools/route.ts @@ -10,6 +10,7 @@ import { isSushiSwapV2ChainId } from 'sushi/config' import type { PoolBase, PoolIfIncentivized, + PoolWithAprs, SushiPositionStaked, SushiPositionWithPool, } from 'sushi/types' @@ -41,7 +42,8 @@ export async function GET(request: Request) { const { searchParams } = new URL(request.url) const id = searchParams.get('id') const chainIds = searchParams.get('chainIds') - if (!id) return new Response(null, { status: 422 }) + + if (!id) return new Response('No user(id) provided', { status: 422 }) const result = schema.safeParse({ id, chainIds }) if (!result.success) { return new Response(result.error.message, { status: 400 }) @@ -50,6 +52,17 @@ export async function GET(request: Request) { const data = await getUser(args) const poolIds = data.map((position) => position.pool.id) + if (poolIds.length === 0) { + return new NextResponse(JSONStringify([]), { + status: 200, + headers: { + 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', + 'content-type': 'application/json', + ...CORS, + }, + }) + } + const [graphPoolsPromise, dbPoolsPromise] = await Promise.allSettled([ getV2GraphPools(poolIds), getPools({ @@ -69,12 +82,21 @@ export async function GET(request: Request) { (graphPool) => graphPool.id === position.pool.id, ) - const pool: PoolIfIncentivized | undefined = + const pool: PoolWithAprs> | undefined = dbPool || graphPool ? { ...graphPool!, - isIncentivized: true, - wasIncentivized: true, + isIncentivized: dbPool?.isIncentivized ?? false, + wasIncentivized: dbPool?.wasIncentivized ?? false, + incentiveApr: dbPool?.incentiveApr ?? 0, + feeApr1h: dbPool?.feeApr1h ?? 0, + feeApr1d: dbPool?.feeApr1d ?? 0, + feeApr1w: dbPool?.feeApr1w ?? 0, + feeApr1m: dbPool?.feeApr1m ?? 0, + totalApr1h: dbPool?.totalApr1h ?? 0, + totalApr1d: dbPool?.totalApr1d ?? 0, + totalApr1w: dbPool?.totalApr1w ?? 0, + totalApr1m: dbPool?.totalApr1m ?? 0, } : undefined diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index a9aabdc5fb..2f797d1a6e 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -28,7 +28,7 @@ export async function getUser(args: { const { data } = await getSushiV2StakedUnstakedPositions({ chainIds: args.chainIds || [...SUSHISWAP_V2_SUPPORTED_CHAIN_IDS], - user: args.id.toLowerCase() as Address, + id: args.id.toLowerCase() as Address, }) return data diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index ab639fcc7d..f4ea026e8f 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -7,7 +7,6 @@ import useSWR from 'swr' import type { PoolId } from 'sushi' import { getTokensFromPool } from '../useTokensFromPool' -import { JSONParse } from 'json-with-bigint' export function getGraphPoolUrl(poolId: string) { return `/pools/api/graphPool/${poolId}` @@ -22,7 +21,6 @@ export const useGraphPool = (pool: PoolId) => { } = useSWR(getGraphPoolUrl(pool.id), async (url) => fetch(url) .then((data) => data.json()) - .then((data) => JSONParse(data)), ) const { token0, token1, liquidityToken } = useMemo(() => { diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts index f6b7ed6290..551170ccd7 100644 --- a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -3,7 +3,6 @@ import { parseArgs } from '@sushiswap/client' import type { GetSushiV2StakedUnstakedPositions } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import { useQuery } from '@tanstack/react-query' -import { JSONParse } from 'json-with-bigint' import { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { ChainId } from 'sushi/chain' @@ -26,8 +25,7 @@ export function useSushiV2UserPositions( queryKey: [getUserPositionsWithPoolsUrl(args)], queryFn: () => fetch(getUserPositionsWithPoolsUrl(args)) - .then((data) => data.json()) - .then((data) => JSONParse(data)), - enabled: Boolean(shouldFetch && args.user), + .then((data) => data.json()), + enabled: Boolean(shouldFetch && args.id), }) } diff --git a/apps/evm/src/ui/pool/PositionCardList.tsx b/apps/evm/src/ui/pool/PositionCardList.tsx index 3d5f93a42b..95fbd60e44 100644 --- a/apps/evm/src/ui/pool/PositionCardList.tsx +++ b/apps/evm/src/ui/pool/PositionCardList.tsx @@ -22,7 +22,7 @@ const value = (position: UserWithPool) => export const PositionCardList: FC = ({ children }) => { const { address } = useAccount() const { data: userPositions, isLoading } = useSushiV2UserPositions({ - user: address!, + id: address!, chainIds: SUPPORTED_CHAIN_IDS, }) diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index 641b67917f..c26c67d6b4 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -37,7 +37,7 @@ export const PositionsTable: FC = ({ const { data: positions, isLoading } = useSushiV2UserPositions( { - user: address!, + id: address!, chainIds: SUPPORTED_CHAIN_IDS, }, !!address, @@ -60,7 +60,7 @@ export const PositionsTable: FC = ({ const chainFiltered = searchFiltered.filter((el) => chainIds.includes(el.pool.chainId as (typeof chainIds)[number]), ) - + console.log({chainFiltered}) return chainFiltered }, [positions, tokenSymbols, chainIds]) diff --git a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts index 111a2df0eb..f1b1c69207 100644 --- a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts +++ b/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts @@ -24,7 +24,7 @@ import { } from './chef-user-positions' export type GetSushiV2StakedUnstakedPositions = { - user: Hex + id: Hex } & ChainIdsVariable< | NonNullable[number] | GetSushiV2LiquidityPositions['chainId'] @@ -44,7 +44,7 @@ export async function getSushiV2StakedUnstakedPositions({ ...MINICHEF_SUPPORTED_CHAIN_IDS, ]), ], - user, + id, }: GetSushiV2StakedUnstakedPositions): Promise<{ data: SushiV2StakedUnstakedPosition[] errors: FetchError[] @@ -59,7 +59,7 @@ export async function getSushiV2StakedUnstakedPositions({ variables: { first: 1000, where: { - user, + user: id, liquidityTokenBalance_gt: '0', }, }, @@ -73,7 +73,7 @@ export async function getSushiV2StakedUnstakedPositions({ await getChefUserPositions({ chainIds: chefChainIds, where: { - address: user, + address: id, amount_gt: '0', }, }) @@ -99,7 +99,7 @@ export async function getSushiV2StakedUnstakedPositions({ if (!pool) return null return { - user, + user: id, unstakedBalance: BigInt(sushiSwapPosition?.balance ?? '0'), stakedBalance: BigInt(chefPosition?.balance ?? '0'), pool, From 411f1317d84de5aca32920cf6a1ce97b91f87fe9 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 21:41:55 +0200 Subject: [PATCH 071/119] fix: update rsk v2 subgraph, increase pool job retries 10, remove unused graphclient --- jobs/pool/.graphclientrc.yml | 142 ----- jobs/pool/cloudbuild.yaml | 41 -- jobs/pool/package.json | 18 - jobs/pool/query.graphql | 289 --------- .../pool/resolvers/blocks/blocksByChainIds.ts | 54 -- jobs/pool/resolvers/blocks/index.ts | 221 ------- jobs/pool/resolvers/index.ts | 7 - jobs/pool/src/pools.ts | 12 +- .../src/config/subgraph/subgraphs/blocks.ts | 8 +- .../config/subgraph/subgraphs/sushiswap-v2.ts | 2 +- pnpm-lock.yaml | 590 ++++-------------- 11 files changed, 126 insertions(+), 1258 deletions(-) delete mode 100644 jobs/pool/.graphclientrc.yml delete mode 100644 jobs/pool/cloudbuild.yaml delete mode 100644 jobs/pool/query.graphql delete mode 100644 jobs/pool/resolvers/blocks/blocksByChainIds.ts delete mode 100644 jobs/pool/resolvers/blocks/index.ts delete mode 100644 jobs/pool/resolvers/index.ts diff --git a/jobs/pool/.graphclientrc.yml b/jobs/pool/.graphclientrc.yml deleted file mode 100644 index e72314284b..0000000000 --- a/jobs/pool/.graphclientrc.yml +++ /dev/null @@ -1,142 +0,0 @@ -sources: - - name: SushiSwapV2 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/v2-arbitrum/version/latest} - retry: 2 - transforms: - - autoPagination: - validateSchema: true - - filterSchema: - mode: wrap - filters: - - Type.!{Factory} - - name: SushiSwapV3 - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/v3-ethereum/version/latest} - transforms: - - autoPagination: - validateSchema: true - - prefix: - value: V3_ - includeRootOperations: true - includeTypes: true - ignore: - - _SubgraphErrorPolicy_ - # - filterSchema: - # mode: wrap - # filters: - # - Type.!{Factory} - - name: MasterChef - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/32073/master-chefv2/version/latest} - transforms: - - prefix: - value: MasterChef_ - includeRootOperations: true - includeTypes: true - - name: MiniChef - handler: - graphql: - endpoint: https://{context.api:api.studio.thegraph.com/query/32073/minichef-arbitrum/version/latest} - transforms: - - prefix: - value: MiniChef_ - includeRootOperations: true - includeTypes: true - - name: Blocks - handler: - graphql: - endpoint: https://{context.url:api.studio.thegraph.com/query/72545/ethereum-blocks/version/latest} - retry: 3 - - name: Steer - handler: - graphql: - endpoint: https://{context.url:api.thegraph.com/subgraphs/name/steerprotocol/steer-protocol-polygon} - retry: 3 - transforms: - - prefix: - value: Steer_ - includeRootOperations: true - includeTypes: true - -additionalTypeDefs: | - # Type Extensions - extend type Block { - chainId: Int! - } - # Query Extensions - extend type Query { - blocksByChainIds( - skip: Int = 0 - first: Int = 100 - where: Block_filter - orderBy: Block_orderBy - orderDirection: OrderDirection - chainIds: [Int!]! - ): [Block!]! - oneHourBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - twoHourBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - oneDayBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - twoDayBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - oneWeekBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - twoWeekBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - oneMonthBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - twoMonthBlocks( - skip: Int = 0 - first: Int = 100 - chainIds: [Int!]! - ): [Block!]! - customBlocks( - skip: Int = 0 - first: Int = 100 - timestamp: Int! - chainIds: [Int!]! - ): [Block!]! - } -# Had to disable global transforms since we have a jsonSchema handler in here now... -transforms: - - autoPagination: - validateSchema: false - - autoTypeMerging: true - - addSourceName: true - -additionalResolvers: - - ./resolvers/index.ts - -documents: - - ./query.graphql - -codegen: - contextType: 'MeshContext & { chainId: string; subgraphName: string; subgraphHost: string }' - diff --git a/jobs/pool/cloudbuild.yaml b/jobs/pool/cloudbuild.yaml deleted file mode 100644 index de7c92812c..0000000000 --- a/jobs/pool/cloudbuild.yaml +++ /dev/null @@ -1,41 +0,0 @@ -steps: - - name: gcr.io/cloud-builders/docker - args: - - build - - '--build-arg' - - 'SCRIPT_PATH=./jobs/pool' - - '-t' - - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' - - '-f' - - './jobs/pool/Dockerfile' - - . - dir: /workspace - id: Build Docker Image - - name: gcr.io/cloud-builders/docker - args: - - push - - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' - id: Push Docker Image - - name: gcr.io/google.com/cloudsdktool/cloud-sdk - env: - - 'DATABASE_URL=${_DATABASE_URL}' - - 'SUSHI_GRAPH_KEY=${_SUSHI_GRAPH_KEY}' - - 'DPRC_ID=${_DPRC_ID}' - args: - - run - - deploy - - scripts-earn - - '--image' - - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' - - '--region' - - us-central1 - - '--set-env-vars=DATABASE_URL=$_DATABASE_URL' - - '--set-env-vars=SUSHI_GRAPH_KEY=$_SUSHI_GRAPH_KEY' - - '--set-env-vars=DPRC_ID=$_DPRC_ID' - id: Update Cloud Run Service - entrypoint: gcloud -timeout: 3600s -images: - - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' -options: - machineType: E2_HIGHCPU_8 diff --git a/jobs/pool/package.json b/jobs/pool/package.json index 894e30b79e..c165a90e8a 100644 --- a/jobs/pool/package.json +++ b/jobs/pool/package.json @@ -23,7 +23,6 @@ "dist" ], "scripts": { - "build": "graphclient build --fileType js && rm -f .graphclient/package.json", "check": "tsc --pretty --noEmit", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "lint": "TIMING=1 eslint src", @@ -39,22 +38,6 @@ "dependencies": { "@ethersproject/address": "5.7.0", "@ethersproject/bignumber": "5.7.0", - "@graphprotocol/client-add-source-name": "2.0.0", - "@graphprotocol/client-auto-pagination": "2.0.0", - "@graphprotocol/client-auto-type-merging": "2.0.0", - "@graphprotocol/client-cli": "3.0.0", - "@graphql-mesh/cache-localforage": "0.94.1", - "@graphql-mesh/cross-helpers": "0.4.0", - "@graphql-mesh/graphql": "0.94.2", - "@graphql-mesh/http": "0.94.4", - "@graphql-mesh/merger-stitching": "0.94.1", - "@graphql-mesh/runtime": "0.94.1", - "@graphql-mesh/store": "0.94.1", - "@graphql-mesh/transform-filter-schema": "0.94.1", - "@graphql-mesh/transform-prefix": "0.94.2", - "@graphql-mesh/transform-type-merging": "0.94.1", - "@graphql-mesh/utils": "0.94.1", - "@graphql-tools/merge": "9.0.0", "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/client": "workspace:*", "@sushiswap/database": "workspace:*", @@ -67,7 +50,6 @@ "date-fns": "2.29.3", "ethers": "5.7.2", "express": "4.18.2", - "graphql": "16.6.0", "lodash.zip": "4.2.0", "sushi": "workspace:*", "tsx": "^4.7.1", diff --git a/jobs/pool/query.graphql b/jobs/pool/query.graphql deleted file mode 100644 index ddfa07a1ec..0000000000 --- a/jobs/pool/query.graphql +++ /dev/null @@ -1,289 +0,0 @@ -query Pairs($first: Int = 1000, $skip: Int = 0, $where: Pair_filter, $block: Block_height) { - pairs(first: $first, skip: $skip, where: $where, block: $block) { - id - token0 { - id - name - symbol - decimals - } - token1 { - id - name - symbol - decimals - } - # name - # type - # source - # swapFee - # twapEnabled - reserve0 - reserve1 - liquidity: totalSupply - token0Price - token1Price - liquidityUSD: reserveUSD - liquidityNative: reserveETH - volumeUSD - createdAtTimestamp - createdAtBlock: createdAtBlockNumber - } - - bundle(id: 1, block: $block) { - ethPrice - } -} - -query V3Pools($first: Int = 1000, $skip: Int = 0, $where: V3_Pool_filter, $block: V3_Block_height) { - pools: V3_pools(first: $first, skip: $skip, where: $where, block: $block) { - id - token0 { - id - name - symbol - decimals - } - token1 { - id - name - symbol - decimals - } - # volumeToken0 - # volumeToken1 - liquidity - volumeUSD - untrackedVolumeUSD - feesUSD - feeTier - token0Price - token1Price - # txCount - collectedFeesToken0 - collectedFeesToken1 - collectedFeesUSD - totalValueLockedToken0 - totalValueLockedToken1 - totalValueLockedETH - totalValueLockedUSD - totalValueLockedUSDUntracked - liquidityProviderCount - createdAtBlockNumber - } -} - -query Tokens($first: Int = 1000, $skip: Int = 0, $where: Token_filter, $block: Block_height) { - tokens(first: $first, skip: $skip, where: $where, block: $block) { - id - symbol - name - decimals - liquidity: totalLiquidity - } - -} - -query MasterChefV2Rewarders( - $first: Int = 1000 - $skip: Int = 0 - $where: MasterChef_Rewarder_filter - $block: MasterChef_Block_height -) { - rewarders: MasterChef_rewarders(first: $first, skip: $skip, where: $where, block: $block) { - id - rewardToken - rewardPerSecond - } -} - -query MiniChefRewarders( - $first: Int = 1000 - $skip: Int = 0 - $where: MiniChef_Rewarder_filter - $block: MiniChef_Block_height -) { - rewarders: MiniChef_rewarders(first: $first, skip: $skip, where: $where, block: $block) { - id - rewardToken - rewardPerSecond - } -} - -query LatestBlock { - blocks(first: 1, orderBy: number, orderDirection: desc) { - id - number - timestamp - } -} - -query Block($id: ID!) { - block(id: $id) { - id - number - timestamp - } -} - -query Blocks( - $first: Int = 1 - $skip: Int = 0 - $where: Block_filter - $orderBy: Block_orderBy = timestamp - $orderDirection: OrderDirection = desc -) { - blocks(first: $first, skip: $skip, where: $where, orderBy: $orderBy, orderDirection: $orderDirection) { - id - number - timestamp - } -} - -query BlocksByChainIds( - $first: Int - $skip: Int - $where: Block_filter - $orderBy: Block_orderBy = timestamp - $orderDirection: OrderDirection = desc - $chainIds: [Int!]! -) { - blocks: blocksByChainIds( - first: $first - skip: $skip - where: $where - orderBy: $orderBy - orderDirection: $orderDirection - chainIds: $chainIds - ) { - id - chainId - number - timestamp - } -} - -query OneHourBlocks($chainIds: [Int!]!) { - oneHourBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query TwoHourBlocks($chainIds: [Int!]!) { - twoHourBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query OneDayBlocks($chainIds: [Int!]!) { - oneDayBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query TwoDayBlocks($chainIds: [Int!]!) { - twoDayBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query OneWeekBlocks($chainIds: [Int!]!) { - oneWeekBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query TwoWeekBlocks($chainIds: [Int!]!) { - twoWeekBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query OneMonthBlocks($chainIds: [Int!]!) { - oneMonthBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query TwoMonthBlocks($chainIds: [Int!]!) { - twoMonthBlocks(chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query CustomBlocks($timestamp: Int!, $chainIds: [Int!]!) { - customBlocks(timestamp: $timestamp, chainIds: $chainIds) { - id - chainId - number - timestamp - } -} - -query CurrentBlock($first: Int = 1000, $skip: Int = 0) { - _meta { - block { - number - } - } -} - -query SteerVaults($first: Int = 1000, $skip: Int = 0) { - vaults: Steer_vaults(first: $first, skip: $skip) { - id - feeTier - reserve0: token0Balance - reserve1: token1Balance - pool - state - payloadIpfs - strategyToken { - id - executionBundle - name # "Elastic Expansion Strategy" - - creator { - id - } - admin - # # creator: { - # # id - # # } - } - positions(first: 1000) { - lowerTick - upperTick - } - createdAt - token0 - token1 - fees0 - fees1 - - manager: vaultManager - } -} diff --git a/jobs/pool/resolvers/blocks/blocksByChainIds.ts b/jobs/pool/resolvers/blocks/blocksByChainIds.ts deleted file mode 100644 index 630f925134..0000000000 --- a/jobs/pool/resolvers/blocks/blocksByChainIds.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { GraphQLResolveInfo } from 'graphql' -import { BLOCKS_SUBGRAPH_URL } from 'sushi/config/subgraph' - -import { - Query, - QueryResolvers, - QueryblocksByChainIdsArgs, - RequireFields, -} from '../../.graphclient/index.js' -import { BlocksTypes } from '../../.graphclient/sources/Blocks/types.js' - -export const _blocksByChainIds = async ( - root: any, - args: RequireFields, - context: BlocksTypes.Context, - info: GraphQLResolveInfo, -): Promise => { - return Promise.all( - args.chainIds - .filter( - ( - chainId, - ): chainId is keyof typeof BLOCKS_SUBGRAPH_URL & - keyof typeof BLOCKS_SUBGRAPH_URL => chainId in BLOCKS_SUBGRAPH_URL, - ) - .map((chainId) => { - return context.Blocks.Query.blocks({ - root, - args, - context: { - ...context, - chainId, - api: BLOCKS_SUBGRAPH_URL[chainId], - }, - info, - }).then((blocks: BlocksTypes.Block[]) => { - if (!Array.isArray(blocks)) { - console.error(`Blocks query failed on ${chainId}`, blocks) - return [] - } - // console.debug(`Blocks ${chainId}`, blocks) - return blocks.map((block) => ({ ...block, chainId })) - }) - }), - ).then((blocks) => blocks.flat()) -} - -export const blocksByChainIds: QueryResolvers['blocksByChainIds'] = async ( - root, - args, - context, - info, -): Promise => - _blocksByChainIds(root, args, context, info) diff --git a/jobs/pool/resolvers/blocks/index.ts b/jobs/pool/resolvers/blocks/index.ts deleted file mode 100644 index 2d5f535883..0000000000 --- a/jobs/pool/resolvers/blocks/index.ts +++ /dev/null @@ -1,221 +0,0 @@ -import { - addSeconds, - getUnixTime, - startOfHour, - startOfMinute, - startOfSecond, - subDays, - subHours, - subMonths, -} from 'date-fns' - -import type { - Block, - ResolverTypeWrapper, - Resolvers, -} from '../../.graphclient/index.js' -import { _blocksByChainIds, blocksByChainIds } from './blocksByChainIds.js' - -export const resolvers: Resolvers = { - Block: { - chainId: (root, _args, context, _info) => - Number(root.chainId || context.chainId || 1), - }, - Query: { - blocksByChainIds, - oneHourBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subHours(Date.now(), 1))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - twoHourBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subHours(Date.now(), 2))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - oneDayBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 1))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - twoDayBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 2))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - oneWeekBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 7))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - twoWeekBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subDays(Date.now(), 14))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - oneMonthBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subMonths(Date.now(), 1))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - twoMonthBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const date = startOfSecond( - startOfMinute(startOfHour(subMonths(Date.now(), 2))), - ) - const start = getUnixTime(date) - const end = getUnixTime(addSeconds(date, 600)) - return _blocksByChainIds( - root, - { - ...args, - first: 1, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - customBlocks: async ( - root, - args, - context, - info, - ): Promise[]> => { - const start = args.timestamp - const end = start + 600 - return _blocksByChainIds( - root, - { - ...args, - where: { timestamp_gt: start, timestamp_lt: end }, - }, - context, - info, - ) - }, - }, -} diff --git a/jobs/pool/resolvers/index.ts b/jobs/pool/resolvers/index.ts deleted file mode 100644 index 250a995aa4..0000000000 --- a/jobs/pool/resolvers/index.ts +++ /dev/null @@ -1,7 +0,0 @@ -import { mergeResolvers } from '@graphql-tools/merge' - -import { Resolvers } from '../.graphclient/index.js' -import { resolvers as blocks } from './blocks/index.js' - -// export const resolvers: Resolvers = mergeResolvers([ -export const resolvers: Resolvers = mergeResolvers([blocks]) diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index a570398821..5847e2d799 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -64,7 +64,7 @@ enum AprTimeRange { } const SUBGRAPH_REQUEST_OPTIONS = { - retries: 3, // should probably be a reasonable timeout as well? + retries: 10, // should probably be a reasonable timeout as well? } export async function execute(protocol: Protocol) { @@ -129,12 +129,9 @@ async function extract(protocol: 'SUSHISWAP_V2' | 'SUSHISWAP_V3') { const result: { chainId: ChainId; data: V2Data | V3Data }[] = [] const chainIds = - protocol === Protocol.SUSHISWAP_V2 ? [ChainId.ARBITRUM] : [ChainId.BASE] // leaving this here for testing, will remove later - // TODO: enable code below, commented out while testing - // const chainIds = - // protocol === Protocol.SUSHISWAP_V2 - // ? SUSHISWAP_V2_SUPPORTED_CHAIN_IDS - // : SUSHISWAP_V3_SUPPORTED_CHAIN_IDS + protocol === Protocol.SUSHISWAP_V2 + ? SUSHISWAP_V2_SUPPORTED_CHAIN_IDS + : SUSHISWAP_V3_SUPPORTED_CHAIN_IDS console.log( `EXTRACT - ${protocol} - Extracting from ${ @@ -270,6 +267,7 @@ async function fetchPairs( getSushiV2Pools( { chainId, + first: Infinity, }, SUBGRAPH_REQUEST_OPTIONS, ), diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts index d760b6a884..0e46489fba 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -17,19 +17,19 @@ export const BLOCKS_SUBGRAPH_URL: Partial> = { [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/HHpzhtyGrTNSbhtjgZyYG4aG538fKpV21dsCBshLnKDg`, [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 52% synced + [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 88% synced + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 36% synced + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/9JvasV5RyonCHn4bFR22VtsXGNuHsQCUiMJPQoGxqeVX`, // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, // TODO: MIGHT NEED TO BE REPLACED. 2024-05-23: 62% synced + [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, [ChainId.KAVA]: `${WAGMI_KAVA_HOST}/sushiswap/blocks-kava`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/blocks-metis`, // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts index c64dfbb061..172c30a469 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts @@ -43,5 +43,5 @@ export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-blast/gn`, [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v2-skale-europa`, - [ChainId.ROOTSTOCK]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/sushiswap-rootstock/gn`, + [ChainId.ROOTSTOCK]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-rootstock/gn`, } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 218064ca45..8c78ca5915 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1284,54 +1284,9 @@ importers: '@ethersproject/bignumber': specifier: 5.7.0 version: 5.7.0 - '@graphprotocol/client-add-source-name': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-pagination': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-type-merging': - specifier: 2.0.0 - version: 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) '@graphprotocol/client-cli': specifier: 3.0.0 - version: 3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/cache-localforage': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/cross-helpers': - specifier: 0.4.0 - version: 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/graphql': - specifier: 0.94.2 - version: 0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/http': - specifier: 0.94.4 - version: 0.94.4(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/runtime@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/merger-stitching': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/runtime': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/store': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-filter-schema': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-prefix': - specifier: 0.94.2 - version: 0.94.2(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/transform-type-merging': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': - specifier: 0.94.1 - version: 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/merge': - specifier: 9.0.0 - version: 9.0.0(graphql@16.6.0) + version: 3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) '@sushiswap/bonds-sdk': specifier: workspace:* version: link:../../packages/bonds-sdk @@ -1368,9 +1323,6 @@ importers: express: specifier: 4.18.2 version: 4.18.2 - graphql: - specifier: 16.6.0 - version: 16.6.0 lodash.zip: specifier: 4.2.0 version: 4.2.0 @@ -7501,7 +7453,7 @@ packages: engines: {node: '>=16.0.0'} dependencies: '@envelop/types': 4.0.0 - tslib: 2.6.2 + tslib: 2.6.3 dev: false /@envelop/extended-validation@2.0.4(@envelop/core@3.0.4)(graphql@16.6.0): @@ -7528,19 +7480,6 @@ packages: tslib: 2.6.2 dev: false - /@envelop/extended-validation@3.0.3(@envelop/core@4.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-KYYzNTpccryoDq7NXCXXSG8iR0m+1p0QG1L9ud8mZL/A8bxsTyPniw7szM5B3B3VLzojbij9OIW4t7y5HXD90g==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@envelop/core': ^4.0.3 - graphql: 16.6.0 - dependencies: - '@envelop/core': 4.0.0 - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@envelop/parser-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.6.0): resolution: {integrity: sha512-+kp6nzCVLYI2WQExQcE3FSy6n9ZGB5GYi+ntyjYdxaXU41U1f8RVwiLdyh0Ewn5D/s/zaLin09xkFKITVSAKDw==} peerDependencies: @@ -7569,7 +7508,7 @@ packages: resolution: {integrity: sha512-dmBK16VVfKCkqYYemvE+gt1cPBP0d9CbYO4yjNhSSYy9K+w6+Lw48wOLK238mSR339PNAvwj/JW/qzNy2llggA==} engines: {node: '>=16.0.0'} dependencies: - tslib: 2.6.2 + tslib: 2.6.3 dev: false /@envelop/validation-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.6.0): @@ -8741,7 +8680,7 @@ packages: '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 graphql: 16.6.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) @@ -8760,7 +8699,7 @@ packages: '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 graphql: 16.6.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) @@ -8769,7 +8708,7 @@ packages: tslib: 2.6.2 dev: false - /@graphprotocol/client-auto-type-merging@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0): + /@graphprotocol/client-auto-type-merging@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0): resolution: {integrity: sha512-mxqXKHK2lO+k4r02Q44n3qhd5dufo+SSDduD8zGUDBsYcRQAtQD9PwmXRHyUoB9nw4A+NC+CtVh+76fueXCG1w==} engines: {node: '>=16.0.0'} peerDependencies: @@ -8777,8 +8716,8 @@ packages: '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 graphql: 16.6.0 dependencies: - '@graphql-mesh/transform-type-merging': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/transform-type-merging': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 @@ -8799,7 +8738,7 @@ packages: tslib: 2.6.2 dev: false - /@graphprotocol/client-cli@3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): + /@graphprotocol/client-cli@3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-hTISbOzKavlDifBNsR6JqQMfdYwY7++hflPy+c3WHRrZ4OMoxFmW7ZuvaP6LvgKdJV77O8w9dnT/uxeHs6a90g==} engines: {node: '>=16.0.0'} hasBin: true @@ -8808,11 +8747,11 @@ packages: dependencies: '@graphprotocol/client-add-source-name': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) '@graphprotocol/client-auto-pagination': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) + '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) '@graphprotocol/client-block-tracking': 2.0.0(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) '@graphprotocol/client-polling-live': 2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.6.0) '@graphql-mesh/cli': 0.82.35(@babel/core@7.24.4)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0) graphql: 16.6.0 tslib: 2.5.0 transitivePeerDependencies: @@ -9185,6 +9124,7 @@ packages: graphql: 16.6.0 object-inspect: 1.12.3 tslib: 2.5.3 + dev: true /@graphql-mesh/cache-localforage@0.7.3(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-YgWWYz88dvlvpC/n1SHd8hSofIrCf6Qhv+h6mjCOI7y51Q9sDk3phhYIz3iqhDhvuwEgzYal3X9FVrG8p6Ilxg==} @@ -9209,29 +9149,13 @@ packages: graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) graphql: 16.6.0 localforage: 1.10.0 tslib: 2.6.2 dev: false - /@graphql-mesh/cache-localforage@0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-0cix/UXVVw+EzDAI1mfrPMHNJ5lwKHqmp9DcyzB1XIffu6qZVHWvG9wEqn/yTd0BCAV8HoTcNuPaREh0YX3lAg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - graphql: 16.6.0 - localforage: 1.10.0 - tslib: 2.6.3 - dev: false - /@graphql-mesh/cli@0.82.3(@babel/core@7.24.4)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-y0ZXHH5gbcTMhwAEaZKAXpdIys8QV7KScJynkq3BOaJheKxbBfsBA1EeHDHm3hTQXbJP6FJ8G6MKEdCL8dT1GA==} hasBin: true @@ -9301,9 +9225,9 @@ packages: '@graphql-mesh/config': 0.93.1(@babel/core@7.24.4)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) '@graphql-mesh/http': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) ajv: 8.12.0 @@ -9357,9 +9281,9 @@ packages: '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) '@graphql-mesh/merger-bare': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.6.0) '@graphql-tools/graphql-file-loader': 7.5.17(graphql@16.6.0) @@ -9455,24 +9379,7 @@ packages: - react-native-windows dev: true - /@graphql-mesh/cross-helpers@0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-NgcuwLQelrnl6YmJdXk8GWctY7MUtgyLKBfXsFj1bRhzC6BR/r6DieWKWWrLG8DQu0eNUMtVrI0j0qUrlw7LdQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - path-browserify: 1.0.1 - react-native-fs: 2.20.0(react-native@0.73.7) - react-native-path: 0.0.5 - transitivePeerDependencies: - - react-native - - react-native-windows - dev: false - - /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0): + /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-1G2/1jkl1VPWhsZsUBwFQI5d9OxxEc+CMxy5ef0qI2WEXqIocOxMhEY53cc+tCSbuXR99rxos+KD/8Z6ZasaOQ==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -9483,11 +9390,11 @@ packages: graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/url-loader': 7.17.18(@types/node@20.12.7)(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -9502,37 +9409,6 @@ packages: - utf-8-validate dev: false - /@graphql-mesh/graphql@0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-uKPaHpnZqxU0pGa79xlfrJB85vbZ5rTfhdBK+HtYAp+1MCL4xB9Rjomyu2VG+KDvfdtu2sj9Bqql+5NGztZFMQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/store': ^0.94.1 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/string-interpolation': 0.5.1(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/url-loader': 8.0.0(@types/node@20.12.7)(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - lodash.get: 4.4.2 - tslib: 2.6.3 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-mesh/graphql@0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@10.1.3)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-uKPaHpnZqxU0pGa79xlfrJB85vbZ5rTfhdBK+HtYAp+1MCL4xB9Rjomyu2VG+KDvfdtu2sj9Bqql+5NGztZFMQ==} engines: {node: '>=16.0.0'} @@ -9598,8 +9474,8 @@ packages: tslib: ^2.4.0 dependencies: '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) fets: 0.1.5 graphql: 16.6.0 @@ -9607,27 +9483,6 @@ packages: tslib: 2.6.2 dev: false - /@graphql-mesh/http@0.94.4(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/runtime@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-eUye4S9tnp+BijW1ol7bD8TUyM7ptRqgxAhBej79pVlx/fs98z1IUxIgTb39HzNBBZaPaLdNtWv5Yqd/PImXEw==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/runtime': ^0.94.1 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/runtime': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@whatwg-node/server': 0.9.33 - graphql: 16.6.0 - graphql-yoga: 4.0.5(graphql@16.6.0) - tslib: 2.6.3 - dev: false - /@graphql-mesh/merger-bare@0.16.4(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-OwjqHYxzFtrwxS0sa5j7+f/JG10U/amIWt+ev+H9fdeUmjnztlp2rqnDqYNHQ3/sXmlM/+CJOPoC5DdEmLRnvg==} peerDependencies: @@ -9655,7 +9510,7 @@ packages: tslib: ^2.4.0 dependencies: '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-tools/schema': 9.0.19(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) @@ -9696,7 +9551,7 @@ packages: tslib: ^2.4.0 dependencies: '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/schema': 9.0.19(graphql@16.6.0) @@ -9707,29 +9562,6 @@ packages: tslib: 2.6.2 dev: false - /@graphql-mesh/merger-stitching@0.94.1(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-s9yPkX9mJG4Ceyl0kyMdwX/nmD+mxHU/SXW8xIo1+YkFOOogJbwEgiF2QZaxIsBJgsE1uB8vAc6FmUg6wNLgKg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/store': ^0.94.1 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/schema': 10.0.3(graphql@16.6.0) - '@graphql-tools/stitch': 9.1.0(graphql@16.6.0) - '@graphql-tools/stitching-directives': 3.0.0(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - dev: false - /@graphql-mesh/runtime@0.46.2(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-sVt2uGB8WCGx1vpT9gHk63qSxoYkuIJ5ieEhiIAByQRRbOKIS7WLplTqseBaS3W3FbKrLfbLh8d0Bl9Sl3Inkw==} peerDependencies: @@ -9755,7 +9587,7 @@ packages: - react-native-windows dev: true - /@graphql-mesh/runtime@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + /@graphql-mesh/runtime@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-8z9ag3jZLmkzawMzF6+i/+P1nQai+HmSZzNeJJen6fRkwprSM1Z7B4lfYBYhdiCbK11HHubDfw4LYwRuBcISMQ==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -9768,9 +9600,9 @@ packages: '@envelop/core': 3.0.6 '@envelop/extended-validation': 2.0.6(@envelop/core@3.0.6)(graphql@16.6.0) '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) '@graphql-tools/batch-execute': 8.5.22(graphql@16.6.0) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) @@ -9778,34 +9610,7 @@ packages: '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) '@whatwg-node/fetch': 0.8.4 graphql: 16.6.0 - tslib: 2.6.2 - dev: false - - /@graphql-mesh/runtime@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-C2f2XmdKD1j7SU/btRFGupJHFBkVJ25WyhHCOw6k31dbbK/o8zuwsD1bPTW5JIzs4zpGmAdEoNcs7G/axe5XJw==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@envelop/core': 4.0.0 - '@envelop/extended-validation': 3.0.3(@envelop/core@4.0.0)(graphql@16.6.0) - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.5.1(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/batch-delegate': 9.0.1(graphql@16.6.0) - '@graphql-tools/batch-execute': 9.0.4(graphql@16.6.0) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) - '@whatwg-node/fetch': 0.9.17 - graphql: 16.6.0 - tslib: 2.6.3 + tslib: 2.5.0 dev: false /@graphql-mesh/store@0.9.3(graphql@16.6.0)(react-native@0.73.7): @@ -9825,7 +9630,7 @@ packages: - react-native-windows dev: true - /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-OEljVuaZn2htU1rt4Yll/aJmynw3/Kvhd6eE8V0/del0u9iuLJqiKkzFJl8HUSMh0IkO10OnficJnTM0tCmxRw==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -9837,31 +9642,30 @@ packages: dependencies: '@graphql-inspector/core': 3.3.0(graphql@16.6.0) '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.5.0 dev: false - /@graphql-mesh/store@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-EbHLSPdlRqq0VYjdKXhKCAGdpP0n9qFPduugdGrd35Vk4UaBo4VdBhXQ1vkenAI3VK1VXWjCB+aaC2ikva/2yQ==} - engines: {node: '>=16.0.0'} + /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + resolution: {integrity: sha512-OEljVuaZn2htU1rt4Yll/aJmynw3/Kvhd6eE8V0/del0u9iuLJqiKkzFJl8HUSMh0IkO10OnficJnTM0tCmxRw==} peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 + '@graphql-mesh/cross-helpers': ^0.3.4 + '@graphql-mesh/types': ^0.93.1 + '@graphql-mesh/utils': ^0.93.1 + '@graphql-tools/utils': ^9.2.1 graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-inspector/core': 5.0.0(graphql@16.6.0) - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-inspector/core': 3.3.0(graphql@16.6.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.3 + tslib: 2.6.2 dev: false /@graphql-mesh/store@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): @@ -9933,48 +9737,9 @@ packages: json-pointer: 0.6.2 lodash.get: 4.4.2 tslib: 2.6.3 + dev: true - /@graphql-mesh/transform-filter-schema@0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-833mj7JsSJbP3797Ls+fS6SXzf13ZKe92ghOn+3b6CMSHpP7k3jacVjhvoMdmw7IdYo6OC0+XjbQzF/A6YE/cA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - minimatch: 9.0.3 - tslib: 2.6.3 - dev: false - - /@graphql-mesh/transform-prefix@0.94.2(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-1G9mscftMPIAnN3yZfOLka1lUQ38pXIzdxjg77SmkCt85BE0Asjsbn8hitdQGiCMd5urVvj/WmxGDx+iJt8y8g==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - graphql: 16.6.0 - graphql-scalars: 1.23.0(graphql@16.6.0) - tslib: 2.6.3 - dev: false - - /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.5.0): + /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-CUrqCMaEqO1LDusv59UPqmQju3f+LpEGxFu7CydMiIvbfKDDDrf8+dF3OVU7d/ZOMRxB6hR80JsQF0SVeXPCOQ==} peerDependencies: '@graphql-mesh/types': ^0.93.1 @@ -9982,31 +9747,14 @@ packages: graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/stitching-directives': 2.3.34(graphql@16.6.0) graphql: 16.6.0 tslib: 2.5.0 dev: false - /@graphql-mesh/transform-type-merging@0.94.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-VO/28veFKTAY1Ngd+jUxb6wo6XDManhpc+eQ6bL8OpsEU6viJkL/2Hxi7SoC37bXA9/5zAkPaMAP+tdQ26O6GQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.94.1 - '@graphql-mesh/utils': ^0.94.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/utils': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/stitching-directives': 3.0.0(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - dev: false - /@graphql-mesh/types@0.89.2(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-5Hrgmwb/enSu1Aj4E6G5lnQxtR99zUR/x82wVaQvqhXZCTTztHHzdHjQwNywJNqUVBxPUg1To8mGXhZQsu4NTQ==} peerDependencies: @@ -10024,7 +9772,7 @@ packages: - react-native-windows dev: true - /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): + /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-113DuJzmR7aj2EMnLPu33ktCe5k7+Mk0BxFfmQViUH+mkr6i4JMsWvPKs9dTODSYuSuwvAZ90Vw2l3QyMrbFVA==} peerDependencies: '@graphql-mesh/store': ^0.93.1 @@ -10032,13 +9780,30 @@ packages: graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-mesh/store': 0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.3 + tslib: 2.5.0 + dev: false + + /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + resolution: {integrity: sha512-113DuJzmR7aj2EMnLPu33ktCe5k7+Mk0BxFfmQViUH+mkr6i4JMsWvPKs9dTODSYuSuwvAZ90Vw2l3QyMrbFVA==} + peerDependencies: + '@graphql-mesh/store': ^0.93.1 + '@graphql-tools/utils': ^9.2.1 + graphql: 16.6.0 + tslib: ^2.4.0 + dependencies: + '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) + '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) + '@graphql-tools/utils': 9.2.1(graphql@16.6.0) + '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) + graphql: 16.6.0 + tslib: 2.6.2 dev: false /@graphql-mesh/types@0.94.6(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): @@ -10081,7 +9846,7 @@ packages: - react-native-windows dev: true - /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): resolution: {integrity: sha512-U+VytfSoqPofH/pmYZHFY10SkIFtHKrvE7Isxv1d0DiweVjdH3Qtojw13DWFpu/EKtgJY5bqoVnlcsZJYlKQoA==} peerDependencies: '@graphql-mesh/cross-helpers': ^0.3.4 @@ -10091,8 +9856,8 @@ packages: tslib: ^2.4.0 dependencies: '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dset: 3.1.3 @@ -10101,31 +9866,30 @@ packages: lodash.get: 4.4.2 lodash.topath: 4.5.2 tiny-lru: 8.0.2 - tslib: 2.6.2 + tslib: 2.5.0 dev: false - /@graphql-mesh/utils@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3): - resolution: {integrity: sha512-K5cGtD+zmYcikoprovANM0B1MDAHE3tadSM7fDoEbfy//vBCXYfLAVjzgAMVxeS0M7KEH1vVqtHHZJKCvSjAoQ==} - engines: {node: '>=16.0.0'} + /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): + resolution: {integrity: sha512-U+VytfSoqPofH/pmYZHFY10SkIFtHKrvE7Isxv1d0DiweVjdH3Qtojw13DWFpu/EKtgJY5bqoVnlcsZJYlKQoA==} peerDependencies: - '@graphql-mesh/cross-helpers': ^0.4.0 - '@graphql-mesh/types': ^0.94.1 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 + '@graphql-mesh/cross-helpers': ^0.3.4 + '@graphql-mesh/types': ^0.93.2 + '@graphql-tools/utils': ^9.2.1 graphql: 16.6.0 tslib: ^2.4.0 dependencies: - '@graphql-mesh/cross-helpers': 0.4.0(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.5.1(graphql@16.6.0)(tslib@2.6.3) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.3) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) + '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) + '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.6.2) + '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) + '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) '@graphql-tools/utils': 9.2.1(graphql@16.6.0) dset: 3.1.3 graphql: 16.6.0 js-yaml: 4.1.0 lodash.get: 4.4.2 lodash.topath: 4.5.2 - tiny-lru: 11.0.1 - tslib: 2.6.3 + tiny-lru: 8.0.2 + tslib: 2.6.2 dev: false /@graphql-mesh/utils@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): @@ -10184,11 +9948,12 @@ packages: graphql: 16.6.0 dependencies: '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) dataloader: 2.2.2 graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 value-or-promise: 1.0.12 + dev: true /@graphql-tools/batch-execute@8.5.14(graphql@16.6.0): resolution: {integrity: sha512-m6yXqqmFAH2V5JuSIC/geiGLBQA1Y6RddOJfUtkc9Z7ttkULRCd1W39TpYS6IlrCwYyTj+klO1/kdWiny38f5g==} @@ -10225,6 +9990,7 @@ packages: graphql: 16.6.0 tslib: 2.6.2 value-or-promise: 1.0.12 + dev: true /@graphql-tools/batch-execute@9.0.4(graphql@16.6.0): resolution: {integrity: sha512-kkebDLXgDrep5Y0gK1RN3DMUlLqNhg60OAz0lTCqrYeja6DshxLtLkj+zV4mVbBA4mQOEoBmw6g1LZs3dA84/w==} @@ -10232,10 +9998,10 @@ packages: peerDependencies: graphql: 16.6.0 dependencies: - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) dataloader: 2.2.2 graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 value-or-promise: 1.0.12 /@graphql-tools/code-file-loader@7.3.15(@babel/core@7.24.4)(graphql@16.6.0): @@ -10283,6 +10049,7 @@ packages: dataloader: 2.2.2 graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/delegate@10.0.4(graphql@16.6.0): resolution: {integrity: sha512-WswZRbQZMh/ebhc8zSomK9DIh6Pd5KbuiMsyiKkKz37TWTrlCOe+4C/fyrBFez30ksq6oFyCeSKMwfrCbeGo0Q==} @@ -10293,10 +10060,10 @@ packages: '@graphql-tools/batch-execute': 9.0.4(graphql@16.6.0) '@graphql-tools/executor': 1.2.6(graphql@16.6.0) '@graphql-tools/schema': 10.0.3(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) dataloader: 2.2.2 graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 /@graphql-tools/delegate@9.0.20(graphql@16.6.0): resolution: {integrity: sha512-m/de++kSxa/JABQ15tyt6SMlc4qfl3MgFFWmwbPcWgJxlAvZ7oIdGXcUvU6VJcXiyXfo6MZ/zr4V2E2UwMehew==} @@ -10362,6 +10129,7 @@ packages: transitivePeerDependencies: - bufferutil - utf-8-validate + dev: true /@graphql-tools/executor-http@0.1.10(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==} @@ -10399,24 +10167,6 @@ packages: - '@types/node' dev: true - /@graphql-tools/executor-http@1.0.2(@types/node@20.12.7)(graphql@16.6.0): - resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.9.17 - extract-files: 11.0.0 - graphql: 16.6.0 - meros: 1.3.0(@types/node@20.12.7) - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - dev: false - /@graphql-tools/executor-legacy-ws@0.0.11(graphql@16.6.0): resolution: {integrity: sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==} peerDependencies: @@ -10448,6 +10198,7 @@ packages: transitivePeerDependencies: - bufferutil - utf-8-validate + dev: true /@graphql-tools/executor@0.0.11(graphql@16.6.0): resolution: {integrity: sha512-GjtXW0ZMGZGKad6A1HXFPArkfxE0AIpznusZuQdy4laQx+8Ut3Zx8SAFJNnDfZJ2V5kU29B5Xv3Fr0/DiMBHOQ==} @@ -10513,6 +10264,7 @@ packages: graphql: 16.6.0 tslib: 2.6.2 value-or-promise: 1.0.12 + dev: true /@graphql-tools/executor@1.2.6(graphql@16.6.0): resolution: {integrity: sha512-+1kjfqzM5T2R+dCw7F4vdJ3CqG+fY/LYJyhNiWEFtq0ToLwYzR/KKyD8YuzTirEjSxWTVlcBh7endkx5n5F6ew==} @@ -10520,11 +10272,11 @@ packages: peerDependencies: graphql: 16.6.0 dependencies: - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) '@repeaterjs/repeater': 3.0.4 graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 value-or-promise: 1.0.12 /@graphql-tools/graphql-file-loader@7.5.13(graphql@16.6.0): @@ -10658,9 +10410,9 @@ packages: peerDependencies: graphql: 16.6.0 dependencies: - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 dev: false /@graphql-tools/merge@9.0.3(graphql@16.6.0): @@ -10705,6 +10457,7 @@ packages: graphql: 16.6.0 tslib: 2.6.2 value-or-promise: 1.0.12 + dev: true /@graphql-tools/schema@10.0.3(graphql@16.6.0): resolution: {integrity: sha512-p28Oh9EcOna6i0yLaCFOnkcBDQECVf3SCexT6ktb86QNj9idnkhI+tCxnwZDh58Qvjd2nURdkbevvoZkvxzCog==} @@ -10713,9 +10466,9 @@ packages: graphql: 16.6.0 dependencies: '@graphql-tools/merge': 9.0.3(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 value-or-promise: 1.0.12 /@graphql-tools/schema@9.0.12(graphql@16.6.0): @@ -10774,24 +10527,6 @@ packages: value-or-promise: 1.0.12 dev: false - /@graphql-tools/stitch@9.1.0(graphql@16.6.0): - resolution: {integrity: sha512-EEZn2BcvuOX+7DOSROv+3Td0SvuC/YnJ5+ua2xjhThOU7q8QFqL+JxgT4BOdI829ZR+rQqaX6do3VEY4UNo1Yg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/batch-delegate': 9.0.1(graphql@16.6.0) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/executor': 1.2.6(graphql@16.6.0) - '@graphql-tools/merge': 9.0.3(graphql@16.6.0) - '@graphql-tools/schema': 10.0.3(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/stitching-directives@2.3.23(graphql@16.6.0): resolution: {integrity: sha512-YqMmrtF6DEo45AWV5S5j0wtNE08j0unuLZMF16E6pmXbPzWP4Z2jLsAmjY6uDLaXccvK8b5dhyemIHC9dBNxkA==} peerDependencies: @@ -10814,18 +10549,6 @@ packages: tslib: 2.6.2 dev: false - /@graphql-tools/stitching-directives@3.0.0(graphql@16.6.0): - resolution: {integrity: sha512-3fElJYxeKO85Nw6G1gj7pCjcozoXuPvRPL7krKyo8jXx0OAvXkJS3XgR86W9+SRvJ+SjfAdceV7PmyGemoghsA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-tools/url-loader@7.17.18(@types/node@20.12.7)(graphql@16.6.0): resolution: {integrity: sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==} peerDependencies: @@ -10879,33 +10602,6 @@ packages: - utf-8-validate dev: true - /@graphql-tools/url-loader@8.0.0(@types/node@20.12.7)(graphql@16.6.0): - resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 10.0.2(graphql@16.6.0) - '@graphql-tools/executor-graphql-ws': 1.1.0(graphql@16.6.0) - '@graphql-tools/executor-http': 1.0.2(@types/node@20.12.7)(graphql@16.6.0) - '@graphql-tools/executor-legacy-ws': 1.0.1(graphql@16.6.0) - '@graphql-tools/utils': 10.0.5(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.0(graphql@16.6.0) - '@types/ws': 8.5.5 - '@whatwg-node/fetch': 0.9.17 - graphql: 16.6.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-tools/utils@10.0.5(graphql@16.6.0): resolution: {integrity: sha512-ZTioQqg9z9eCG3j+KDy54k1gp6wRIsLqkx5yi163KVvXVkfjsrdErCyZjrEug21QnKE9piP4tyxMpMMOT1RuRw==} engines: {node: '>=16.0.0'} @@ -10916,6 +10612,7 @@ packages: dset: 3.1.2 graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/utils@10.1.2(graphql@16.6.0): resolution: {integrity: sha512-fX13CYsDnX4yifIyNdiN0cVygz/muvkreWWem6BBw130+ODbRRgfiVveL0NizCEnKXkpvdeTy9Bxvo9LIKlhrw==} @@ -10940,7 +10637,6 @@ packages: dset: 3.1.3 graphql: 16.6.0 tslib: 2.6.3 - dev: true /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} @@ -10989,6 +10685,7 @@ packages: graphql: 16.6.0 tslib: 2.6.2 value-or-promise: 1.0.12 + dev: true /@graphql-tools/wrap@10.0.5(graphql@16.6.0): resolution: {integrity: sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==} @@ -10998,9 +10695,9 @@ packages: dependencies: '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) '@graphql-tools/schema': 10.0.3(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) + '@graphql-tools/utils': 10.1.3(graphql@16.6.0) graphql: 16.6.0 - tslib: 2.6.2 + tslib: 2.6.3 value-or-promise: 1.0.12 dev: false @@ -11051,13 +10748,6 @@ packages: tslib: 2.6.2 dev: false - /@graphql-yoga/logger@1.0.0: - resolution: {integrity: sha512-JYoxwnPggH2BfO+dWlWZkDeFhyFZqaTRGLvFhy+Pjp2UxitEW6nDrw+pEDw/K9tJwMjIFMmTT9VfTqrnESmBHg==} - engines: {node: '>=16.0.0'} - dependencies: - tslib: 2.6.2 - dev: false - /@graphql-yoga/subscription@3.1.0: resolution: {integrity: sha512-Vc9lh8KzIHyS3n4jBlCbz7zCjcbtQnOBpsymcRvHhFr2cuH+knmRn0EmzimMQ58jQ8kxoRXXC3KJS3RIxSdPIg==} dependencies: @@ -11066,30 +10756,12 @@ packages: '@whatwg-node/events': 0.0.2 tslib: 2.6.2 - /@graphql-yoga/subscription@4.0.0: - resolution: {integrity: sha512-0qsN/BPPZNMoC2CZ8i+P6PgiJyHh1H35aKDt37qARBDaIOKDQuvEOq7+4txUKElcmXi7DYFo109FkhSQoEajrg==} - engines: {node: '>=16.0.0'} - dependencies: - '@graphql-yoga/typed-event-target': 2.0.0 - '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/events': 0.1.1 - tslib: 2.6.2 - dev: false - /@graphql-yoga/typed-event-target@1.0.0: resolution: {integrity: sha512-Mqni6AEvl3VbpMtKw+TIjc9qS9a8hKhiAjFtqX488yq5oJtj9TkNlFTIacAVS3vnPiswNsmDiQqvwUOcJgi1DA==} dependencies: '@repeaterjs/repeater': 3.0.4 tslib: 2.6.2 - /@graphql-yoga/typed-event-target@2.0.0: - resolution: {integrity: sha512-oA/VGxGmaSDym1glOHrltw43qZsFwLLjBwvh57B79UKX/vo3+UQcRgOyE44c5RP7DCYjkrC2tuArZmb6jCzysw==} - engines: {node: '>=16.0.0'} - dependencies: - '@repeaterjs/repeater': 3.0.4 - tslib: 2.6.2 - dev: false - /@grpc/grpc-js@1.9.2: resolution: {integrity: sha512-Lf2pUhNTaviEdEaGgjU+29qw3arX7Qd/45q66F3z1EV5hroE6wM9xSHPvjB8EY+b1RmKZgwnLWXQorC6fZ9g5g==} engines: {node: ^8.13.0 || >=10.10.0} @@ -11760,6 +11432,7 @@ packages: /@kamilkisiela/fast-url-parser@1.1.4: resolution: {integrity: sha512-gbkePEBupNydxCelHCESvFSFM8XPh1Zs/OAVRW/rKpEqPAl5PbOM90Si8mv9bvnR53uPD2s/FiRxdvSejpRJew==} + dev: true /@kwsites/file-exists@1.1.1: resolution: {integrity: sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==} @@ -21353,6 +21026,7 @@ packages: /@whatwg-node/events@0.1.1: resolution: {integrity: sha512-AyQEn5hIPV7Ze+xFoXVU3QTHXVbWPrzaOkxtENMPMuNL6VVHrp4hHfDt9nrQpjO7BgvuM95dMtkycX5M/DZR3w==} engines: {node: '>=16.0.0'} + dev: true /@whatwg-node/fetch@0.5.3: resolution: {integrity: sha512-cuAKL3Z7lrJJuUrfF1wxkQTb24Qd1QO/lsjJpM5ZSZZzUMms5TPnbGeGUKWA3hVKNHh30lVfr2MyRCT5Jfkucw==} @@ -21400,6 +21074,7 @@ packages: dependencies: '@whatwg-node/node-fetch': 0.5.10 urlpattern-polyfill: 10.0.0 + dev: true /@whatwg-node/node-fetch@0.3.6: resolution: {integrity: sha512-w9wKgDO4C95qnXZRwZTfCmLWqyRnooGjcIwG0wADWjw9/HN0p7dtvtgSvItZtUyNteEvgTrd8QojNEqV6DAGTA==} @@ -21420,6 +21095,7 @@ packages: busboy: 1.6.0 fast-querystring: 1.1.2 tslib: 2.6.2 + dev: true /@whatwg-node/server@0.4.17(@types/node@20.10.0): resolution: {integrity: sha512-kq1AHyi87VWfiDqiSTAOY+py83HMJg42+fI8JAe1wjmMkJ8v/E5mKq5NpLNRM9Cnf7NHsQR0AwQgvX/RFuptaA==} @@ -21440,14 +21116,6 @@ packages: tslib: 2.6.2 dev: false - /@whatwg-node/server@0.9.33: - resolution: {integrity: sha512-bHWZi6YhVsDKAzjlPn5EN7u5j7SvHqDI6Acr37hgMBjKyCzqHivfPFgC/sRZ6LLxM9pJNsXpFoAF1kySXhAn6w==} - engines: {node: '>=16.0.0'} - dependencies: - '@whatwg-node/fetch': 0.9.17 - tslib: 2.6.2 - dev: false - /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -26055,6 +25723,7 @@ packages: /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} + dev: true /de-indent@1.0.2: resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==} @@ -31002,16 +30671,6 @@ packages: zod: 3.23.8 dev: false - /graphql-scalars@1.23.0(graphql@16.6.0): - resolution: {integrity: sha512-YTRNcwitkn8CqYcleKOx9IvedA8JIERn8BRq21nlKgOr4NEcTaWEG0sT+H92eF3ALTFbPgsqfft4cw+MGgv0Gg==} - engines: {node: '>=10'} - peerDependencies: - graphql: 16.6.0 - dependencies: - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /graphql-tag@2.12.6(graphql@16.6.0): resolution: {integrity: sha512-FdSNcu2QQcWnM2VNvSCCDCVS5PpPqpzgFT8+GXzqJuoDd0CBncxCY278u4mhRO7tMgo2JjgJA5aZ+nWSQ/Z+xg==} engines: {node: '>=10'} @@ -31089,26 +30748,6 @@ packages: tslib: 2.6.2 dev: false - /graphql-yoga@4.0.5(graphql@16.6.0): - resolution: {integrity: sha512-vIbJU9QX5RP4PoxbMCHcfOlt/3EsC/0uLdAOlKaiUvlwJDTFCaIHo2X10vL4i/27Gw8g90ECIwm2YbmeLDwcqg==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@envelop/core': 4.0.0 - '@graphql-tools/executor': 1.2.0(graphql@16.6.0) - '@graphql-tools/schema': 10.0.0(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - '@graphql-yoga/logger': 1.0.0 - '@graphql-yoga/subscription': 4.0.0 - '@whatwg-node/fetch': 0.9.17 - '@whatwg-node/server': 0.9.33 - dset: 3.1.2 - graphql: 16.6.0 - lru-cache: 10.1.0 - tslib: 2.6.2 - dev: false - /graphql@16.6.0: resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} @@ -44085,6 +43724,7 @@ packages: /tiny-lru@11.0.1: resolution: {integrity: sha512-iNgFugVuQgBKrqeO/mpiTTgmBsTP0WL6yeuLfLs/Ctf0pI/ixGqIRm8sDCwMcXGe9WWvt2sGXI5mNqZbValmJg==} engines: {node: '>=12'} + dev: true /tiny-lru@8.0.2: resolution: {integrity: sha512-ApGvZ6vVvTNdsmt676grvCkUCGwzG9IqXma5Z07xJgiC5L7akUMof5U8G2JTI9Rz/ovtVhJBlY6mNhEvtjzOIg==} @@ -45436,6 +45076,7 @@ packages: /urlpattern-polyfill@10.0.0: resolution: {integrity: sha512-H/A06tKD7sS1O1X2SshBVeA5FLycRpjqiBeqGKmBwBDBy28EnRjORxTNe269KSSr5un5qyWi1iL61wLxpd+ZOg==} + dev: true /urlpattern-polyfill@6.0.2: resolution: {integrity: sha512-5vZjFlH9ofROmuWmXM9yj2wljYKgWstGwe8YTyiqM7hVum/g9LyCizPZtb3UqsuppVwety9QJmfc42VggLpTgg==} @@ -46611,6 +46252,7 @@ packages: /web3-provider-engine@14.2.1: resolution: {integrity: sha512-iSv31h2qXkr9vrL6UZDm4leZMc32SjWJFGOp/D92JXfcEboCqraZyuExDkpxKw8ziTufXieNM7LSXNHzszYdJw==} + deprecated: 'This package has been deprecated, see the README for details: https://github.com/MetaMask/web3-provider-engine' dependencies: async: 2.6.4 backoff: 2.5.0 From 5d05eb170a75de97e61febd0f9bc51d37a4147a4 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 21:45:28 +0200 Subject: [PATCH 072/119] chore(jobs/pool): enable pool load stage --- jobs/pool/src/pools.ts | 49 +++++++++++++++++++++--------------------- 1 file changed, 24 insertions(+), 25 deletions(-) diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 5847e2d799..8485f2f883 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -86,32 +86,31 @@ export async function execute(protocol: Protocol) { // TRANSFORM const { tokens, pools } = transform(protocol, exchanges) - // TODO: enable code below, commented out while testing - // // LOAD - // const batchSize = 250 + // LOAD + const batchSize = 250 - // for (let i = 0; i < tokens.length; i += batchSize) { - // const batch = tokens.slice(i, i + batchSize) - // await createTokens(batch) - // } - // const concurrentBatches = 10 - // for (let i = 0; i < pools.length; i += batchSize * concurrentBatches) { - // const batches = [] - // for (let j = i; j < i + concurrentBatches * batchSize; j += batchSize) { - // if (j > pools.length) { - // break - // } - // batches.push(upsertPools(pools.slice(j, j + batchSize))) - // } - // const batchStartTime = performance.now() - // await Promise.all(batches) - // const batchEndTime = performance.now() - // console.log( - // `LOAD: ${protocol} - Batch completed in ${((batchEndTime - batchStartTime) / 1000).toFixed( - // 1, - // )} seconds. `, - // ) - // } + for (let i = 0; i < tokens.length; i += batchSize) { + const batch = tokens.slice(i, i + batchSize) + await createTokens(batch) + } + const concurrentBatches = 10 + for (let i = 0; i < pools.length; i += batchSize * concurrentBatches) { + const batches = [] + for (let j = i; j < i + concurrentBatches * batchSize; j += batchSize) { + if (j > pools.length) { + break + } + batches.push(upsertPools(pools.slice(j, j + batchSize))) + } + const batchStartTime = performance.now() + await Promise.all(batches) + const batchEndTime = performance.now() + console.log( + `LOAD: ${protocol} - Batch completed in ${((batchEndTime - batchStartTime) / 1000).toFixed( + 1, + )} seconds. `, + ) + } const endTime = performance.now() console.log( From d497ef30c9abe0eaa07f613924f67ae252057088 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sat, 8 Jun 2024 21:50:54 +0200 Subject: [PATCH 073/119] feat(jobs/pool): sorry cloudbuild welcome back --- jobs/pool/cloudbuild.yaml | 41 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 jobs/pool/cloudbuild.yaml diff --git a/jobs/pool/cloudbuild.yaml b/jobs/pool/cloudbuild.yaml new file mode 100644 index 0000000000..479bd3da6b --- /dev/null +++ b/jobs/pool/cloudbuild.yaml @@ -0,0 +1,41 @@ +steps: + - name: gcr.io/cloud-builders/docker + args: + - build + - '--build-arg' + - 'SCRIPT_PATH=./jobs/pool' + - '-t' + - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' + - '-f' + - './jobs/pool/Dockerfile' + - . + dir: /workspace + id: Build Docker Image + - name: gcr.io/cloud-builders/docker + args: + - push + - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' + id: Push Docker Image + - name: gcr.io/google.com/cloudsdktool/cloud-sdk + env: + - 'DATABASE_URL=${_DATABASE_URL}' + - 'SUSHI_GRAPH_KEY=${_SUSHI_GRAPH_KEY}' + - 'DPRC_ID=${_DPRC_ID}' + args: + - run + - deploy + - scripts-earn + - '--image' + - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' + - '--region' + - us-central1 + - '--set-env-vars=DATABASE_URL=$_DATABASE_URL' + - '--set-env-vars=SUSHI_GRAPH_KEY=$_SUSHI_GRAPH_KEY' + - '--set-env-vars=DPRC_ID=$_DPRC_ID' + id: Update Cloud Run Service + entrypoint: gcloud +timeout: 3600s +images: + - 'gcr.io/$PROJECT_ID/$TRIGGER_NAME:latest' +options: + machineType: E2_HIGHCPU_8 \ No newline at end of file From 17123b54a6dc08168ccc5c1c6b405e2ff18be37c Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sun, 9 Jun 2024 01:08:30 +0000 Subject: [PATCH 074/119] fix(apps/evm): serialization --- apps/aptos/package.json | 2 +- apps/evm/package.json | 1 - .../bonds/api/v1/bonds/[marketId]/route.ts | 4 +- apps/evm/src/app/bonds/api/v1/bonds/route.ts | 4 +- .../src/app/bonds/api/v1/positions/route.ts | 4 +- apps/evm/src/app/layout.tsx | 2 + .../src/app/pool/[id]/(landing)/add/page.tsx | 2 +- apps/evm/src/app/pool/[id]/(landing)/page.tsx | 12 +- .../app/pool/[id]/(landing)/remove/page.tsx | 2 +- .../app/pool/[id]/(landing)/stake/page.tsx | 2 +- .../app/pool/[id]/(landing)/unstake/page.tsx | 2 +- .../app/pool/[id]/smart/[vaultId]/page.tsx | 17 +- .../src/app/pool/api/graphPool/[id]/route.ts | 4 +- .../api/pools/[chainId]/[address]/route.ts | 4 +- .../evm/src/app/pool/api/pools/count/route.ts | 4 +- apps/evm/src/app/pool/api/pools/route.ts | 4 +- .../steer-vault/[chainId]/[address]/route.ts | 4 +- .../app/pool/api/steer-vault/count/route.ts | 4 +- .../evm/src/app/pool/api/steer-vault/route.ts | 4 +- .../src/app/pool/api/user-with-pools/route.ts | 6 +- apps/evm/src/app/pool/api/user/route.ts | 4 +- apps/evm/src/app/providers.tsx | 2 + apps/evm/src/lib/hooks/api/useGraphPool.ts | 4 +- .../evm/src/lib/hooks/api/usePoolGraphData.ts | 2 +- apps/evm/src/lib/serialization.ts | 27 + .../wagmi/hooks/master-chef/use-rewarder.ts | 75 +- apps/evm/src/ui/pool/PoolChartGraph.tsx | 26 +- .../ui/pool/PoolPositionRewardsProvider.tsx | 2 +- apps/evm/src/ui/pool/PositionView.tsx | 2 +- packages/client/package.json | 3 +- packages/client/src/functions.ts | 6 +- packages/sushi/package.json | 8 +- packages/sushi/src/bigint-serializer/index.ts | 122 ++ packages/sushi/src/index.ts | 1 + .../src/components/toast/ToastContainer.tsx | 2 + pnpm-lock.yaml | 1384 ++--------------- turbo.json | 1 + 37 files changed, 400 insertions(+), 1359 deletions(-) create mode 100644 apps/evm/src/lib/serialization.ts create mode 100644 packages/sushi/src/bigint-serializer/index.ts diff --git a/apps/aptos/package.json b/apps/aptos/package.json index 339d2f8dec..acafacf900 100644 --- a/apps/aptos/package.json +++ b/apps/aptos/package.json @@ -43,7 +43,7 @@ "lodash.uniqby": "^4.7.0", "next": "14.2.3", "next-axiom": "0.17.0", - "next-themes": "^0.2.1", + "next-themes": "0.2.1", "petra-plugin-wallet-adapter": "^0.4.5", "react": "18.2.0", "react-dom": "18.2.0", diff --git a/apps/evm/package.json b/apps/evm/package.json index 4cee1bd144..9b75458d6c 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -55,7 +55,6 @@ "fast-json-stable-stringify": "2.1.0", "framer-motion": "7.10.3", "ioredis": "5.3.2", - "json-with-bigint": "^2.1.2", "lodash.once": "4.1.1", "lodash.zip": "4.2.0", "nanoid": "4.0.0", diff --git a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts index 705d35bdee..4ecaf9ba7f 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts @@ -1,6 +1,6 @@ import { BondApiSchema, getBondFromSubgraph } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' export const revalidate = 3 @@ -24,7 +24,7 @@ export async function GET( return NextResponse.json({ error: 'Bond not found' }, { status: 404 }) } - const stringified = JSONStringify(bond) + const stringified = serialize(bond) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/bonds/api/v1/bonds/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/route.ts index 34843471fc..908929c349 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/route.ts @@ -1,6 +1,6 @@ import { BondsApiSchema, getBondsFromSubgraph } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 3 @@ -15,7 +15,7 @@ export async function GET(request: Request) { try { const bonds = await getBondsFromSubgraph(result.data) - const stringified = JSONStringify(bonds) + const stringified = serialize(bonds) return new NextResponse(stringified, { status: 200, diff --git a/apps/evm/src/app/bonds/api/v1/positions/route.ts b/apps/evm/src/app/bonds/api/v1/positions/route.ts index 9f4bd94d7c..62f15dfb29 100644 --- a/apps/evm/src/app/bonds/api/v1/positions/route.ts +++ b/apps/evm/src/app/bonds/api/v1/positions/route.ts @@ -2,8 +2,8 @@ import { BondsPositionsApiSchema, getBondPositionsFromSubgraph, } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 3 @@ -21,7 +21,7 @@ export async function GET(request: Request) { try { const positions = await getBondPositionsFromSubgraph(result.data) - const stringified = JSONStringify(positions) + const stringified = serialize(positions) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/layout.tsx b/apps/evm/src/app/layout.tsx index befefbb162..2ac42b985b 100644 --- a/apps/evm/src/app/layout.tsx +++ b/apps/evm/src/app/layout.tsx @@ -10,6 +10,8 @@ import { getWagmiInitialState } from 'src/lib/wagmi/config' import { Providers } from './providers' import { Trackers } from './trackers' +import '../lib/serialization' + const inter = Inter({ subsets: ['latin'], display: 'swap', diff --git a/apps/evm/src/app/pool/[id]/(landing)/add/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/add/page.tsx index 8425ac2e31..388fe82c55 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/add/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/add/page.tsx @@ -3,5 +3,5 @@ import PoolPage from '../page' export default async function PoolPageAdd({ params, }: { params: { id: string } }) { - return + return } diff --git a/apps/evm/src/app/pool/[id]/(landing)/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/page.tsx index d4b38685ce..03a7a51d60 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/page.tsx @@ -4,23 +4,21 @@ import { notFound } from 'next/navigation' import { PoolPageV2 } from 'src/ui/pool/PoolPageV2' import { PoolPageV3 } from 'src/ui/pool/PoolPageV3' -import { unsanitize } from 'sushi' +import { deserialize, serialize, unsanitize } from 'sushi' export default async function PoolPage({ params, - tab, }: { - params: { id: string } - tab: 'add' | 'remove' | 'unstake' | 'stake' + params: { id: string; tab: 'add' | 'remove' | 'unstake' | 'stake' } }) { const poolId = unsanitize(params.id) const pool = await unstable_cache( - async () => getPool(poolId), + async () => serialize(await getPool(poolId)), ['pool', poolId], { revalidate: 60 * 15, }, - )() + )().then(deserialize>>) if (!pool) { notFound() @@ -30,5 +28,5 @@ export default async function PoolPage({ return } - return + return } diff --git a/apps/evm/src/app/pool/[id]/(landing)/remove/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/remove/page.tsx index f564892814..e53610eaba 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/remove/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/remove/page.tsx @@ -3,5 +3,5 @@ import PoolPage from '../page' export default async function PoolPageRemove({ params, }: { params: { id: string } }) { - return + return } diff --git a/apps/evm/src/app/pool/[id]/(landing)/stake/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/stake/page.tsx index 4322934b1c..1322612519 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/stake/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/stake/page.tsx @@ -3,5 +3,5 @@ import PoolPage from '../page' export default async function PoolPageStake({ params, }: { params: { id: string } }) { - return + return } diff --git a/apps/evm/src/app/pool/[id]/(landing)/unstake/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/unstake/page.tsx index 10af6880e9..45259e807f 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/unstake/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/unstake/page.tsx @@ -3,5 +3,5 @@ import PoolPage from '../page' export default async function PoolPageUnstake({ params, }: { params: { id: string } }) { - return + return } diff --git a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx index 60c7a4bea1..39541b2116 100644 --- a/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx +++ b/apps/evm/src/app/pool/[id]/smart/[vaultId]/page.tsx @@ -6,7 +6,6 @@ import { getVaultPositions, } from '@sushiswap/steer-sdk' import { Container } from '@sushiswap/ui' -import { deserialize, serialize } from '@wagmi/core' import formatDistanceStrict from 'date-fns/formatDistanceStrict' import formatDistanceToNow from 'date-fns/formatDistanceToNow' import { unstable_cache } from 'next/cache' @@ -86,15 +85,13 @@ export default async function SteerVaultPage({ ['steer-vault', vaultId], { revalidate: 60 * 15 }, )() - const generics = deserialize( - await unstable_cache( - async () => serialize(await getGenerics(vault)), - ['steer-vault-generics', vaultId], - { - revalidate: 60 * 5, - }, - )(), - ) as Awaited> + const generics = await unstable_cache( + async () => await getGenerics(vault), + ['steer-vault-generics', vaultId], + { + revalidate: 60 * 5, + }, + )() const Component = SteerStrategyComponents[vault.strategy] diff --git a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts index d6420cb451..bf73b1dbbf 100644 --- a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts +++ b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts @@ -1,6 +1,6 @@ -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server' import { getV2GraphPool } from 'src/lib/graph' +import { serialize } from 'sushi/bigint-serializer' import { z } from 'zod' export const revalidate = 15 @@ -20,7 +20,7 @@ export async function GET( } const pool = await getV2GraphPool(result.data.id) - const stringified = JSONStringify(pool) + const stringified = serialize(pool) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json' }, diff --git a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts index dfbfce5512..d0d1a0324d 100644 --- a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts @@ -1,6 +1,6 @@ import { PoolApiSchema, getPoolFromDB } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' export const revalidate = 15 @@ -27,7 +27,7 @@ export async function GET( return NextResponse.json({ error: 'Failed to fetch pool' }, { status: 500 }) } - const stringified = JSONStringify(pool) + const stringified = serialize(pool) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/pools/count/route.ts b/apps/evm/src/app/pool/api/pools/count/route.ts index 8cc41380c9..0bb01319c3 100644 --- a/apps/evm/src/app/pool/api/pools/count/route.ts +++ b/apps/evm/src/app/pool/api/pools/count/route.ts @@ -1,6 +1,6 @@ import { PoolCountApiSchema, getPoolCountFromDB } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 15 @@ -14,7 +14,7 @@ export async function GET(request: Request) { } const count = await getPoolCountFromDB(result.data) - const stringified = JSONStringify(count) + const stringified = serialize(count) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/pools/route.ts b/apps/evm/src/app/pool/api/pools/route.ts index d1aa1c0732..e562bf36da 100644 --- a/apps/evm/src/app/pool/api/pools/route.ts +++ b/apps/evm/src/app/pool/api/pools/route.ts @@ -1,6 +1,6 @@ import { PoolsApiSchema, getPoolsFromDB } from '@sushiswap/client/api' -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../cors' export const revalidate = 15 @@ -15,7 +15,7 @@ export async function GET(request: Request) { const pools = await getPoolsFromDB(result.data) - const stringified = JSONStringify(pools) + const stringified = serialize(pools) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts index f924a8d8bc..4eda485100 100644 --- a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts @@ -1,7 +1,7 @@ import { SteerVaultApiSchema, getSteerVaultFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' -import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -19,7 +19,7 @@ export async function GET( } const vault = await getSteerVaultFromDB(result.data) - const stringified = JSONStringify(vault) + const stringified = serialize(vault) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/steer-vault/count/route.ts b/apps/evm/src/app/pool/api/steer-vault/count/route.ts index 20b8ba75b4..47cd8a45c0 100644 --- a/apps/evm/src/app/pool/api/steer-vault/count/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/count/route.ts @@ -3,8 +3,8 @@ import { getSteerVaultCountFromDB, } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' -import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -19,7 +19,7 @@ export async function GET(request: Request) { } const count = await getSteerVaultCountFromDB(result.data) - const stringified = JSONStringify(count) + const stringified = serialize(count) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/steer-vault/route.ts b/apps/evm/src/app/pool/api/steer-vault/route.ts index b85abb2b3d..47ac0f819c 100644 --- a/apps/evm/src/app/pool/api/steer-vault/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/route.ts @@ -3,8 +3,8 @@ import { getSteerVaultsFromDB, } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' +import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../cors' -import { JSONStringify } from 'json-with-bigint' export const revalidate = 15 @@ -19,7 +19,7 @@ export async function GET(request: Request) { } const vaults = await getSteerVaultsFromDB(result.data) - const stringified = JSONStringify(vaults) + const stringified = serialize(vaults) return new NextResponse(stringified, { status: 200, headers: { 'content-type': 'application/json', ...CORS }, diff --git a/apps/evm/src/app/pool/api/user-with-pools/route.ts b/apps/evm/src/app/pool/api/user-with-pools/route.ts index 356df5daef..2f72bb2adf 100644 --- a/apps/evm/src/app/pool/api/user-with-pools/route.ts +++ b/apps/evm/src/app/pool/api/user-with-pools/route.ts @@ -4,7 +4,7 @@ import { NextResponse } from 'next/server' import { getUser, getV2GraphPools } from 'src/lib/graph' import { ChainId } from 'sushi/chain' -import { JSONStringify } from 'json-with-bigint' +import { serialize } from 'sushi/bigint-serializer' import { isSushiSwapV2ChainId } from 'sushi/config' import type { @@ -53,7 +53,7 @@ export async function GET(request: Request) { const poolIds = data.map((position) => position.pool.id) if (poolIds.length === 0) { - return new NextResponse(JSONStringify([]), { + return new NextResponse(serialize([]), { status: 200, headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', @@ -108,7 +108,7 @@ export async function GET(request: Request) { } }) .filter((pool): pool is NonNullable => pool !== undefined) - const stringified = JSONStringify(userPositions) + const stringified = serialize(userPositions) return new NextResponse(stringified, { status: 200, headers: { diff --git a/apps/evm/src/app/pool/api/user/route.ts b/apps/evm/src/app/pool/api/user/route.ts index d7d1b993a5..cfa406900d 100644 --- a/apps/evm/src/app/pool/api/user/route.ts +++ b/apps/evm/src/app/pool/api/user/route.ts @@ -1,6 +1,6 @@ -import { JSONStringify } from 'json-with-bigint' import { NextResponse } from 'next/server' import { getUser } from 'src/lib/graph' +import { serialize } from 'sushi/bigint-serializer' import { ChainId } from 'sushi/chain' import { isSushiSwapV2ChainId } from 'sushi/config' import { Address } from 'viem' @@ -41,7 +41,7 @@ export async function GET(request: Request) { const args = result.data const data = await getUser(args) - const stringified = JSONStringify(data) + const stringified = serialize(data) return new NextResponse(stringified, { status: 200, headers: { diff --git a/apps/evm/src/app/providers.tsx b/apps/evm/src/app/providers.tsx index 9e3be71109..1c4e225a6c 100644 --- a/apps/evm/src/app/providers.tsx +++ b/apps/evm/src/app/providers.tsx @@ -6,6 +6,8 @@ import { WagmiStoreVersionCheck } from 'src/lib/wagmi/components/wagmi-store-ver import { QueryClientProvider } from '../providers/query-client-provider' import { WagmiConfig } from '../providers/wagmi-provider' +import '../lib/serialization' + export function Providers({ children, initialWagmiState, diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index f4ea026e8f..25cc5178ef 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -6,6 +6,7 @@ import { Amount } from 'sushi/currency' import useSWR from 'swr' import type { PoolId } from 'sushi' +import { deserialize } from 'sushi/bigint-serializer' import { getTokensFromPool } from '../useTokensFromPool' export function getGraphPoolUrl(poolId: string) { @@ -19,8 +20,7 @@ export const useGraphPool = (pool: PoolId) => { isValidating, error, } = useSWR(getGraphPoolUrl(pool.id), async (url) => - fetch(url) - .then((data) => data.json()) + fetch(url).then(async (data) => deserialize(await data.text())), ) const { token0, token1, liquidityToken } = useMemo(() => { diff --git a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts index ef4b0c09e7..4254097f00 100644 --- a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts +++ b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts @@ -65,7 +65,7 @@ export const usePoolGraphData = ({ }, keepPreviousData: true, staleTime: 0, - cacheTime: 86400000, // 24hs + cacheTime: 3600, // 1hr enabled: Boolean(poolAddress && chainId && enabled), }) } diff --git a/apps/evm/src/lib/serialization.ts b/apps/evm/src/lib/serialization.ts new file mode 100644 index 0000000000..7f9ee028dd --- /dev/null +++ b/apps/evm/src/lib/serialization.ts @@ -0,0 +1,27 @@ +declare global { + interface BigInt { + toJSON: () => { __type: 'bigint'; value: string } + } +} + +if (!BigInt.prototype.toJSON) { + Object.defineProperty(BigInt.prototype, 'toJSON', { + get() { + return () => ({ + __type: 'bigint', + value: this.toString(), + }) + }, + }) +} + +const parse = JSON.parse +JSON.parse = (text: string, reviver?: (key: any, value: any) => any) => { + return parse.bind(this)(text, (key, value_) => { + let value = value_ + if (value?.__type === 'bigint') value = BigInt(value.value) + return reviver?.(key, value) ?? value + }) +} + +export {} diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts index 4afcf48727..5e85328837 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts @@ -6,7 +6,7 @@ import { useEffect, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { Amount, Token } from 'sushi/currency' import { Address } from 'viem' -import { useBlockNumber, useReadContract, useReadContracts } from 'wagmi' +import { useBlockNumber, useReadContracts } from 'wagmi' import { getMasterChefContractConfig } from './use-master-chef-contract' interface UseRewarderPayload { @@ -19,20 +19,12 @@ interface UseRewarderPayload { chef: ChefType enabled?: boolean } - -interface UseRewarderData - extends Pick, 'isLoading' | 'isError'> { - data: (Amount | undefined)[] -} - -type UseRewarder = (payload: UseRewarderPayload) => UseRewarderData - export enum RewarderType { Primary = 'Primary', Secondary = 'Secondary', } -export const useRewarder: UseRewarder = ({ +export const useRewarder = ({ chainId, account, rewarderAddresses, @@ -41,7 +33,7 @@ export const useRewarder: UseRewarder = ({ farmId, chef, enabled, -}) => { +}: UseRewarderPayload) => { const config = getMasterChefContractConfig(chainId, chef) const contracts = useMemo(() => { @@ -143,7 +135,7 @@ export const useRewarder: UseRewarder = ({ const queryClient = useQueryClient() - const { isError, isLoading, data, queryKey } = useReadContracts({ + const { data, queryKey, ...rest } = useReadContracts({ contracts, allowFailure: true, query: { @@ -161,38 +153,37 @@ export const useRewarder: UseRewarder = ({ } }, [blockNumber, queryClient, queryKey]) - return useMemo(() => { - if (!data) - return { - data: rewardTokens.map(() => undefined), - isLoading, - isError, + return { + data: useMemo(() => { + if (!data) { + return rewardTokens.map(() => undefined) } - // ! POSSIBLY BROKE IT, TEST - return { - data: data.reduce<(Amount | undefined)[]>((acc, result, index) => { - if (typeof result === 'bigint') { - acc.push( - result - ? Amount.fromRawAmount(rewardTokens[index], result) - : undefined, - ) - } else if (typeof result !== 'undefined') { - acc.push( - ...result[1].map((rewardAmount, index2: number) => { - return Amount.fromRawAmount( - rewardTokens[index + index2], - rewardAmount, + // ! POSSIBLY BROKE IT, TEST + return data.reduce<(Amount | undefined)[]>( + (acc, result, index) => { + if (typeof result === 'bigint') { + acc.push( + result + ? Amount.fromRawAmount(rewardTokens[index], result) + : undefined, + ) + } else if (typeof result !== 'undefined') { + acc.push( + ...result[1].map((rewardAmount, index2: number) => { + return Amount.fromRawAmount( + rewardTokens[index + index2], + rewardAmount, + ) + }), ) - }), - ) - } + } - return acc - }, []), - isLoading, - isError, - } - }, [data, isError, isLoading, rewardTokens]) + return acc + }, + [], + ) + }, [data, rewardTokens]), + ...rest, + } } diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index 9f2bbb0d0b..61918e4a6b 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -18,9 +18,9 @@ import { formatUSD } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' import resolveConfig from 'tailwindcss/resolveConfig' +import { SushiSwapV2ChainId } from 'sushi/config' import { PoolChartPeriod, chartPeriods } from './PoolChartPeriods' import { PoolChartType } from './PoolChartTypes' -import { SushiSwapV2ChainId } from 'sushi/config' interface PoolChartProps { chart: PoolChartType.Volume | PoolChartType.Fees | PoolChartType.TVL @@ -37,7 +37,11 @@ export const PoolChartGraph: FC = ({ address, chainId, }) => { - const { data: graphPair, isLoading } = usePoolGraphData({ + const { + data: graphPair, + isInitialLoading: isLoading, + isError, + } = usePoolGraphData({ poolAddress: address, chainId, }) @@ -203,33 +207,35 @@ export const PoolChartGraph: FC = ({ [xData, chart, yData, onMouseOver, period], ) + const defaultValue = yData[yData.length - 1] || 0 + return ( <> - - {formatUSD(yData[yData.length - 1])} - {' '} + {formatUSD(defaultValue)}{' '} {chart === PoolChartType.Volume && ( {' '} - {formatUSD(Number(yData[yData.length - 1]) * Number(swapFee))} + {formatUSD(defaultValue * Number(swapFee))} {' '} earned )} - {xData.length ? ( + {isLoading ? ( + + ) : isError || !xData.length ? ( +
+ ) : (
{format( new Date(xData[xData.length - 1] * 1000), 'dd MMM yyyy HH:mm', )}
- ) : ( - )} @@ -240,6 +246,8 @@ export const PoolChartGraph: FC = ({ 'h-[400px] w-full dark:via-slate-800 dark:to-slate-900', )} /> + ) : isError ? ( +
) : ( )} diff --git a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx index 8841d94017..0557938dc3 100644 --- a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx @@ -93,7 +93,7 @@ export const _PoolPositionRewardsProvider: FC< const { data: pendingRewards, - isLoading, + isInitialLoading: isLoading, isError, } = useRewarder({ chainId: pool.chainId as ChainId, diff --git a/apps/evm/src/ui/pool/PositionView.tsx b/apps/evm/src/ui/pool/PositionView.tsx index 284eeeba64..937498a5cc 100644 --- a/apps/evm/src/ui/pool/PositionView.tsx +++ b/apps/evm/src/ui/pool/PositionView.tsx @@ -88,7 +88,7 @@ const Component: FC<{ id: string }> = ({ id }) => { address: positionDetails?.token1, }) - const { data: position, isLoading: isPositionLoading } = + const { data: position, isInitialLoading: isPositionLoading } = useConcentratedPositionInfo({ chainId, token0, diff --git a/packages/client/package.json b/packages/client/package.json index 516f55eb5f..441e723d9e 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -71,7 +71,7 @@ "@sushiswap/steer-sdk": "workspace:*", "@whatwg-node/fetch": "0.8.4", "deepmerge-ts": "^4.3.0", - "json-with-bigint": "^2.1.2", + "sushi": "workspace:*", "tslib": "latest", "viem": "2.10.11", "zod": "3.21.4" @@ -85,7 +85,6 @@ "@types/node": "20", "eslint": "8.43.0", "react": "18.2.0", - "sushi": "workspace:*", "swr": "2.1.5", "tsup": "7.2.0", "typescript": "5.2.2" diff --git a/packages/client/src/functions.ts b/packages/client/src/functions.ts index a85b0d1410..f4a055c443 100644 --- a/packages/client/src/functions.ts +++ b/packages/client/src/functions.ts @@ -1,4 +1,4 @@ -import { JSONParse } from 'json-with-bigint' +import { deserialize } from 'sushi/bigint-serializer' export function parseArgs(args?: Partial) { if (!args) return '' @@ -23,5 +23,7 @@ export async function get(url: string): Promise { throw new Error(`Failed to fetch ${url}: ${res.status} ${res.statusText}`) } - return JSONParse(await res.text()) + const text = await res.text() + + return deserialize(text) } diff --git a/packages/sushi/package.json b/packages/sushi/package.json index 0e8e4ecd5b..c361e4c618 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -29,6 +29,10 @@ "types": "./dist/abi/index.d.ts", "default": "./dist/abi/index.js" }, + "./bigint-serializer": { + "types": "./dist/bigint-serializer/index.d.ts", + "default": "./dist/bigint-serializer/index.js" + }, "./calculate": { "types": "./dist/calculate/index.d.ts", "default": "./dist/calculate/index.js" @@ -119,6 +123,9 @@ "abi": [ "./dist/abi/index.d.ts" ], + "bigint-serializer": [ + "./dist/bigint-serializer/index.d.ts" + ], "calculate": [ "./dist/calculate/index.d.ts" ], @@ -220,7 +227,6 @@ "@tsconfig/strictest": "2.0.2", "@types/big.js": "6.2.0", "@types/seedrandom": "3.0.1", - "@wagmi/core": "2.10.2", "typescript": "5.2.2", "viem": "2.10.11", "vitest": "0.34.6", diff --git a/packages/sushi/src/bigint-serializer/index.ts b/packages/sushi/src/bigint-serializer/index.ts new file mode 100644 index 0000000000..2b1adef1c2 --- /dev/null +++ b/packages/sushi/src/bigint-serializer/index.ts @@ -0,0 +1,122 @@ +// Stolen from https://github.com/wevm/wagmi/blob/main/packages/core/src/utils/ + +/** + * Get the reference key for the circular value + * + * @param keys the keys to build the reference key from + * @param cutoff the maximum number of keys to include + * @returns the reference key + */ +function getReferenceKey(keys: string[], cutoff: number) { + return keys.slice(0, cutoff).join('.') || '.' +} + +/** + * Faster `Array.prototype.indexOf` implementation build for slicing / splicing + * + * @param array the array to match the value in + * @param value the value to match + * @returns the matching index, or -1 + */ +function getCutoff(array: any[], value: any) { + const { length } = array + + for (let index = 0; index < length; ++index) { + if (array[index] === value) { + return index + 1 + } + } + + return 0 +} + +type StandardReplacer = (key: string, value: any) => any + +/** + * Create a replacer method that handles circular values + * + * @param [replacer] a custom replacer to use for non-circular values + * @param [circularReplacer] a custom replacer to use for circular methods + * @returns the value to stringify + */ +function createReplacer( + replacer?: StandardReplacer | null | undefined, +): StandardReplacer { + const hasReplacer = typeof replacer === 'function' + + const cache: any[] = [] + const keys: string[] = [] + + return function replace(this: any, key: string, value: any) { + if (typeof value === 'object') { + if (cache.length) { + const thisCutoff = getCutoff(cache, this) + + if (thisCutoff === 0) { + cache[cache.length] = this + } else { + cache.splice(thisCutoff) + keys.splice(thisCutoff) + } + + keys[keys.length] = key + + const valueCutoff = getCutoff(cache, value) + + if (valueCutoff !== 0) { + return `[ref=${getReferenceKey(keys, valueCutoff)}]` + } + } else { + cache[0] = value + keys[0] = key + } + } + + return hasReplacer ? replacer.call(this, key, value) : value + } +} + +/** + * Stringifier that handles circular values + * + * Forked from https://github.com/planttheidea/fast-stringify + * + * @param value to stringify + * @param [replacer] a custom replacer function for handling standard values + * @param [indent] the number of spaces to indent the output by + * @param [circularReplacer] a custom replacer function for handling circular values + * @returns the stringified output + */ +export function serialize( + value: any, + replacer?: StandardReplacer | (string | number)[] | null | undefined, + indent?: number | string | null | undefined, +) { + if (Array.isArray(replacer)) { + throw new Error('Array replacer is not supported') + } + + return JSON.stringify( + value, + createReplacer((key, value_) => { + let value = value_ + if (typeof value === 'bigint') + value = { __type: 'bigint', value: value_.toString() } + if (value instanceof Map) + value = { __type: 'Map', value: Array.from(value_.entries()) } + return replacer?.(key, value) ?? value + }), + indent ?? undefined, + ) +} + +type Reviver = (key: string, value: any) => any + +export function deserialize(value: string, reviver?: Reviver): type { + return JSON.parse(value, (key, value_) => { + let value = value_ + if (value?.__type === 'bigint') value = BigInt(value.value) + if (value?.__type === 'Map') value = new Map(value.value) + return reviver?.(key, value) ?? value + }) +} diff --git a/packages/sushi/src/index.ts b/packages/sushi/src/index.ts index 334d04e343..f3444a23df 100644 --- a/packages/sushi/src/index.ts +++ b/packages/sushi/src/index.ts @@ -1,3 +1,4 @@ +export * from './bigint-serializer' export * from './calculate/index.js' export * from './chain/index.js' // export * from './config.js' diff --git a/packages/ui/src/components/toast/ToastContainer.tsx b/packages/ui/src/components/toast/ToastContainer.tsx index 5f382bbda1..084d20f0a3 100644 --- a/packages/ui/src/components/toast/ToastContainer.tsx +++ b/packages/ui/src/components/toast/ToastContainer.tsx @@ -1,3 +1,5 @@ +'use client' + import 'react-toastify/dist/ReactToastify.css' import { FC } from 'react' diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8c78ca5915..1fda81c149 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -467,7 +467,7 @@ importers: specifier: 0.17.0 version: 0.17.0(next@14.2.3) next-themes: - specifier: ^0.2.1 + specifier: 0.2.1 version: 0.2.1(next@14.2.3)(react-dom@18.2.0)(react@18.2.0) petra-plugin-wallet-adapter: specifier: ^0.4.5 @@ -780,9 +780,6 @@ importers: ioredis: specifier: 5.3.2 version: 5.3.2 - json-with-bigint: - specifier: ^2.1.2 - version: 2.1.2 lodash.once: specifier: 4.1.1 version: 4.1.1 @@ -1284,9 +1281,6 @@ importers: '@ethersproject/bignumber': specifier: 5.7.0 version: 5.7.0 - '@graphprotocol/client-cli': - specifier: 3.0.0 - version: 3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) '@sushiswap/bonds-sdk': specifier: workspace:* version: link:../../packages/bonds-sdk @@ -1371,7 +1365,7 @@ importers: version: 8.43.0 jest: specifier: 29.3.1 - version: 29.3.1(@types/node@20.12.7) + version: 29.3.1(@types/node@20.10.0) typescript: specifier: 5.2.2 version: 5.2.2 @@ -1440,9 +1434,9 @@ importers: deepmerge-ts: specifier: ^4.3.0 version: 4.3.0 - json-with-bigint: - specifier: ^2.1.2 - version: 2.1.2 + sushi: + specifier: workspace:* + version: link:../sushi tslib: specifier: latest version: 2.6.2 @@ -1477,9 +1471,6 @@ importers: react: specifier: 18.2.0 version: 18.2.0 - sushi: - specifier: workspace:* - version: link:../sushi swr: specifier: 2.1.5 version: 2.1.5(react@18.2.0) @@ -1927,9 +1918,6 @@ importers: '@types/seedrandom': specifier: 3.0.1 version: 3.0.1 - '@wagmi/core': - specifier: 2.10.2 - version: 2.10.2(@types/react@18.2.14)(react@18.2.0)(typescript@5.2.2)(viem@2.10.11)(zod@3.21.4) typescript: specifier: 5.2.2 version: 5.2.2 @@ -2886,19 +2874,6 @@ packages: - webpack-plugin-serve dev: false - /@ardatan/fast-json-stringify@0.0.6(ajv-formats@2.1.1)(ajv@8.12.0): - resolution: {integrity: sha512-//BefMIP6U1ptNeBf44Le4vqThejTwZndtYLtAuFBwA/DmbVbbYTCLNIMhZ96WZnhI92EvTXneT5tKJrgINE9A==} - peerDependencies: - ajv: ^8.10.0 - ajv-formats: ^2.1.1 - dependencies: - '@fastify/deepmerge': 1.3.0 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - fast-deep-equal: 3.1.3 - rfdc: 1.3.0 - dev: false - /@ardatan/relay-compiler@12.0.0(graphql@16.6.0): resolution: {integrity: sha512-9anThAaj1dQr6IGmzBMcfzOQKTa5artjuPmw8NYK/fiGEMjADbSguBY2FMDykt+QhilR3wc9VA/3yVju7JHg7Q==} hasBin: true @@ -2926,6 +2901,7 @@ packages: transitivePeerDependencies: - encoding - supports-color + dev: true /@ardatan/sync-fetch@0.0.1: resolution: {integrity: sha512-xhlTqH0m31mnsG0tIP4ETgfSB6gXDaYYsUWTrlUV93fFQPI9dd8hE0Ot6MHLCtqgB32hwJAC3YZMWlXZw7AleA==} @@ -2934,6 +2910,7 @@ packages: node-fetch: 2.7.0 transitivePeerDependencies: - encoding + dev: true /@artilleryio/int-commons@2.0.4: resolution: {integrity: sha512-pi4hkKhpT7pyydH7GxZGWnYM+a2fM1WysCDlKsH7UJTy2xqlqmujd5iY+G/74NHsxQUxd8osAHFu+bnkbjMinw==} @@ -4306,6 +4283,7 @@ packages: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.2) '@babel/plugin-transform-parameters': 7.24.1(@babel/core@7.23.2) + dev: true /@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.4): resolution: {integrity: sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==} @@ -4561,6 +4539,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.24.0 + dev: true /@babel/plugin-syntax-flow@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==} @@ -4591,16 +4570,6 @@ packages: '@babel/helper-plugin-utils': 7.22.5 dev: true - /@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.24.4): - resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==} - engines: {node: '>=6.9.0'} - peerDependencies: - '@babel/core': ^7.0.0-0 - dependencies: - '@babel/core': 7.24.4 - '@babel/helper-plugin-utils': 7.22.5 - dev: false - /@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==} engines: {node: '>=6.9.0'} @@ -4704,6 +4673,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.24.0 + dev: true /@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==} @@ -4961,6 +4931,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==} @@ -5027,6 +4998,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==} @@ -5045,6 +5017,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-block-scoping@7.24.4(@babel/core@7.24.4): resolution: {integrity: sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==} @@ -5115,6 +5088,7 @@ packages: '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.2) '@babel/helper-split-export-declaration': 7.22.6 globals: 11.12.0 + dev: true /@babel/plugin-transform-classes@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==} @@ -5141,6 +5115,7 @@ packages: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/template': 7.22.15 + dev: true /@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==} @@ -5160,6 +5135,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-destructuring@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==} @@ -5292,6 +5268,7 @@ packages: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-flow': 7.24.1(@babel/core@7.23.2) + dev: true /@babel/plugin-transform-flow-strip-types@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==} @@ -5311,6 +5288,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==} @@ -5332,6 +5310,7 @@ packages: '@babel/helper-compilation-targets': 7.22.15 '@babel/helper-function-name': 7.23.0 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==} @@ -5373,6 +5352,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==} @@ -5412,6 +5392,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==} @@ -5640,6 +5621,7 @@ packages: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.2) + dev: true /@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==} @@ -5703,6 +5685,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.23.2): resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} @@ -5712,6 +5695,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.24.0 + dev: true /@babel/plugin-transform-parameters@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==} @@ -5776,6 +5760,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==} @@ -5804,6 +5789,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.24.0 + dev: true /@babel/plugin-transform-react-display-name@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==} @@ -5874,6 +5860,7 @@ packages: '@babel/helper-plugin-utils': 7.24.0 '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.23.2) '@babel/types': 7.24.0 + dev: true /@babel/plugin-transform-react-jsx@7.23.4(@babel/core@7.24.4): resolution: {integrity: sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==} @@ -5963,6 +5950,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==} @@ -5982,6 +5970,7 @@ packages: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 '@babel/helper-skip-transparent-expression-wrappers': 7.22.5 + dev: true /@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==} @@ -6020,6 +6009,7 @@ packages: dependencies: '@babel/core': 7.23.2 '@babel/helper-plugin-utils': 7.22.5 + dev: true /@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.4): resolution: {integrity: sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==} @@ -6497,6 +6487,7 @@ packages: globals: 11.12.0 transitivePeerDependencies: - supports-color + dev: true /@babel/traverse@7.23.2: resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} @@ -7441,21 +7432,6 @@ packages: tslib: 2.4.0 dev: true - /@envelop/core@3.0.6: - resolution: {integrity: sha512-06t1xCPXq6QFN7W1JUEf68aCwYN0OUDNAIoJe7bAqhaoa2vn7NCcuX1VHkJ/OWpmElUgCsRO6RiBbIru1in0Ig==} - dependencies: - '@envelop/types': 3.0.2 - tslib: 2.6.2 - dev: false - - /@envelop/core@4.0.0: - resolution: {integrity: sha512-6usEZO86hWT0ZajAbhOX0QXlV++lrlEmu8br6KQVvyXOxttiHADIibgfzb3GtSI7RnnJDnrcRb7Jynv6Lca3iQ==} - engines: {node: '>=16.0.0'} - dependencies: - '@envelop/types': 4.0.0 - tslib: 2.6.3 - dev: false - /@envelop/extended-validation@2.0.4(@envelop/core@3.0.4)(graphql@16.6.0): resolution: {integrity: sha512-23B6VgizjItYehAGB4ZDT9VVmYCHxYVnbJ4XPvlT5R0KSEmTAzoCHTJ5Y+hnQ/lP3wk5OgZZI5HTDSi8CcSNug==} peerDependencies: @@ -7468,18 +7444,6 @@ packages: tslib: 2.6.2 dev: true - /@envelop/extended-validation@2.0.6(@envelop/core@3.0.6)(graphql@16.6.0): - resolution: {integrity: sha512-aXAf1bg5Z71YfEKLCZ8OMUZAOYPGHV/a+7avd5TIMFNDxl5wJTmIonep3T+kdMpwRInDphfNPGFD0GcGdGxpHg==} - peerDependencies: - '@envelop/core': ^3.0.6 - graphql: 16.6.0 - dependencies: - '@envelop/core': 3.0.6 - '@graphql-tools/utils': 8.13.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@envelop/parser-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.6.0): resolution: {integrity: sha512-+kp6nzCVLYI2WQExQcE3FSy6n9ZGB5GYi+ntyjYdxaXU41U1f8RVwiLdyh0Ewn5D/s/zaLin09xkFKITVSAKDw==} peerDependencies: @@ -7498,19 +7462,6 @@ packages: tslib: 2.6.2 dev: true - /@envelop/types@3.0.2: - resolution: {integrity: sha512-pOFea9ha0EkURWxJ/35axoH9fDGP5S2cUu/5Mmo9pb8zUf+TaEot8vB670XXihFEn/92759BMjLJNWBKmNhyng==} - dependencies: - tslib: 2.6.2 - dev: false - - /@envelop/types@4.0.0: - resolution: {integrity: sha512-dmBK16VVfKCkqYYemvE+gt1cPBP0d9CbYO4yjNhSSYy9K+w6+Lw48wOLK238mSR339PNAvwj/JW/qzNy2llggA==} - engines: {node: '>=16.0.0'} - dependencies: - tslib: 2.6.3 - dev: false - /@envelop/validation-cache@5.0.4(@envelop/core@3.0.4)(graphql@16.6.0): resolution: {integrity: sha512-7b4BWtNMxSdXspwzFN2qmkEaaHfmuDz60uMlVFaMN4nA1Vc5duAV7GQWfAKl56VoePU6UwQ0i49Dm/plJfwxIQ==} peerDependencies: @@ -7523,19 +7474,6 @@ packages: tslib: 2.6.2 dev: true - /@envelop/validation-cache@5.1.3(@envelop/core@3.0.6)(graphql@16.6.0): - resolution: {integrity: sha512-MkzcScQHJJQ/9YCAPdWShEi3xZv4F4neTs+NszzSrZOdlU8z/THuRt7gZ0sO0y2be+sx+SKjHQP8Gq3VXXcTTg==} - peerDependencies: - '@envelop/core': ^3.0.6 - graphql: 16.6.0 - dependencies: - '@envelop/core': 3.0.6 - graphql: 16.6.0 - hash-it: 6.0.0 - lru-cache: 6.0.0 - tslib: 2.6.2 - dev: false - /@esbuild/aix-ppc64@0.19.12: resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} engines: {node: '>=12'} @@ -8582,10 +8520,6 @@ packages: resolution: {integrity: sha512-JUFJad5lv7jxj926GPgymrWQxxjPYuJNiNjNMzqT+HiuP6Vl3dk5xzG+8sTX96np0ZAluvaMzPsjhHZ5rNuNQQ==} engines: {node: '>=14'} - /@fastify/deepmerge@1.3.0: - resolution: {integrity: sha512-J8TOSBq3SoZbDhM9+R/u77hP93gz/rajSA+K2kGyijPpORPWUXHUpTaleoj+92As0S9uPRP7Oi8IqMf0u+ro6A==} - dev: false - /@fewcha/web3@0.1.38: resolution: {integrity: sha512-t39g9V5zAiYZPGSahp4a0B4WM5IqxQJxr5ednv0f0l5amJZMPyOinFeZDgkLqTIzhe7yq6yIndKbqzPfdu1rng==} dependencies: @@ -8670,128 +8604,6 @@ packages: graphql: 16.6.0 typescript: 5.2.2 - /@graphprotocol/client-add-source-name@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0): - resolution: {integrity: sha512-3vX8mVPIEJFwAoRhjTPd9IjQrBuE+Gv+JB7IEf8/9222qiU9EzHVFUekKxVtcxQXD40CfageS41CxOreWQ1enA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 - '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 - graphql: 16.6.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) - graphql: 16.6.0 - lodash: 4.17.21 - tslib: 2.6.2 - dev: false - - /@graphprotocol/client-auto-pagination@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0): - resolution: {integrity: sha512-TouHgs6rQLpZSgnMoPdes8/ZTtMMEoxWeUUCkfho/xfSi49prb5DcsI83pykln0OEAUnNPnaX0MhP+xA5LtFSg==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 - '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 - '@graphql-tools/utils': ^9.2.1 || ^10.0.0 - '@graphql-tools/wrap': ^9.4.2 || ^10.0.0 - graphql: 16.6.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 10.0.5(graphql@16.6.0) - graphql: 16.6.0 - lodash: 4.17.21 - tslib: 2.6.2 - dev: false - - /@graphprotocol/client-auto-type-merging@2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0): - resolution: {integrity: sha512-mxqXKHK2lO+k4r02Q44n3qhd5dufo+SSDduD8zGUDBsYcRQAtQD9PwmXRHyUoB9nw4A+NC+CtVh+76fueXCG1w==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-mesh/types': ^0.78.0 || ^0.79.0 || ^0.80.0 || ^0.81.0 || ^0.82.0 || ^0.83.0 || ^0.84.0 || ^0.85.0 || ^0.89.0 || ^0.90.0 || ^0.91.0 || ^0.93.0 - '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 - graphql: 16.6.0 - dependencies: - '@graphql-mesh/transform-type-merging': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.0 - transitivePeerDependencies: - - '@graphql-mesh/utils' - dev: false - - /@graphprotocol/client-block-tracking@2.0.0(@graphql-tools/delegate@10.0.4)(graphql@16.6.0): - resolution: {integrity: sha512-mpr0JAlefFGhxeb25ndeRKZ+t9cDHcUKGfRKIsoDzCclUEh5tBVTiQCDVGt6Eu+pxnrHPF2v/NQWktaB3+6twQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@graphql-tools/delegate': ^9.0.32 || ^10.0.0 - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/utils': 10.1.2(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - - /@graphprotocol/client-cli@3.0.0(@babel/core@7.24.4)(@envelop/core@4.0.0)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/merge@9.0.0)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-hTISbOzKavlDifBNsR6JqQMfdYwY7++hflPy+c3WHRrZ4OMoxFmW7ZuvaP6LvgKdJV77O8w9dnT/uxeHs6a90g==} - engines: {node: '>=16.0.0'} - hasBin: true - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphprotocol/client-add-source-name': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-pagination': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-tools/delegate@10.0.4)(@graphql-tools/utils@9.2.1)(@graphql-tools/wrap@10.0.5)(graphql@16.6.0) - '@graphprotocol/client-auto-type-merging': 2.0.0(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) - '@graphprotocol/client-block-tracking': 2.0.0(@graphql-tools/delegate@10.0.4)(graphql@16.6.0) - '@graphprotocol/client-polling-live': 2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.6.0) - '@graphql-mesh/cli': 0.82.35(@babel/core@7.24.4)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/graphql': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0) - graphql: 16.6.0 - tslib: 2.5.0 - transitivePeerDependencies: - - '@babel/core' - - '@envelop/core' - - '@graphql-mesh/cross-helpers' - - '@graphql-mesh/store' - - '@graphql-mesh/types' - - '@graphql-mesh/utils' - - '@graphql-tools/delegate' - - '@graphql-tools/merge' - - '@graphql-tools/utils' - - '@graphql-tools/wrap' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - graphql-tag - - react-native - - react-native-windows - - supports-color - - utf-8-validate - dev: false - - /@graphprotocol/client-polling-live@2.0.0(@envelop/core@4.0.0)(@graphql-tools/merge@9.0.0)(graphql@16.6.0): - resolution: {integrity: sha512-JQ0sKiFCX+ErR0fynBNUg/WDiVaaEndlS12fkgrFZrQA2vVpSyow9pW0nKMGVZJa4cN+VDskgwqK5BWXMvdeRA==} - engines: {node: '>=16.0.0'} - peerDependencies: - '@envelop/core': ^2.4.2 || ^3.0.0 || ^4.0.0 - '@graphql-tools/merge': ^8.3.14 || ^9.0.0 - graphql: 16.6.0 - dependencies: - '@envelop/core': 4.0.0 - '@graphql-tools/merge': 9.0.0(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-codegen/core@2.6.8(graphql@16.6.0): resolution: {integrity: sha512-JKllNIipPrheRgl+/Hm/xuWMw9++xNQ12XJR/OHHgFopOg4zmN3TdlRSyYcv/K90hCFkkIwhlHFUQTfKrm8rxQ==} peerDependencies: @@ -8804,18 +8616,6 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/core@3.1.0(graphql@16.6.0): - resolution: {integrity: sha512-DH1/yaR7oJE6/B+c6ZF2Tbdh7LixF1K8L+8BoSubjNyQ8pNwR4a70mvc1sv6H7qgp6y1bPQ9tKE+aazRRshysw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.3 - dev: false - /@graphql-codegen/plugin-helpers@2.7.2(graphql@16.6.0): resolution: {integrity: sha512-kln2AZ12uii6U59OQXdjLk5nOlh1pHis1R98cDZGFnfaiAbX9V3fxcZ1MMJkB7qFUymTALzyjZoXXdyVmPMfRg==} peerDependencies: @@ -8828,6 +8628,7 @@ packages: import-from: 4.0.0 lodash: 4.17.21 tslib: 2.4.1 + dev: true /@graphql-codegen/plugin-helpers@3.1.2(graphql@16.6.0): resolution: {integrity: sha512-emOQiHyIliVOIjKVKdsI5MXj312zmRDwmHpyUTZMjfpvxq/UVAHUJIVdVf+lnjjrI+LXBTgMlTWTgHQfmICxjg==} @@ -8841,20 +8642,7 @@ packages: import-from: 4.0.0 lodash: 4.17.21 tslib: 2.4.1 - - /@graphql-codegen/plugin-helpers@4.2.0(graphql@16.6.0): - resolution: {integrity: sha512-THFTCfg+46PXlXobYJ/OoCX6pzjI+9woQqCjdyKtgoI0tn3Xq2HUUCiidndxUpEYVrXb5pRiRXb7b/ZbMQqD0A==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - change-case-all: 1.0.15 - common-tags: 1.8.2 - graphql: 16.6.0 - import-from: 4.0.0 - lodash: 4.17.21 - tslib: 2.5.3 - dev: false + dev: true /@graphql-codegen/schema-ast@2.6.1(graphql@16.6.0): resolution: {integrity: sha512-5TNW3b1IHJjCh07D2yQNGDQzUpUl2AD+GVe1Dzjqyx/d2Fn0TPMxLsHsKPS4Plg4saO8FK/QO70wLsP7fdbQ1w==} @@ -8867,17 +8655,6 @@ packages: tslib: 2.4.1 dev: true - /@graphql-codegen/schema-ast@3.0.1(graphql@16.6.0): - resolution: {integrity: sha512-rTKTi4XiW4QFZnrEqetpiYEWVsOFNoiR/v3rY9mFSttXFbIwNXPme32EspTiGWmEEdHY8UuTDtZN3vEcs/31zw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.3 - dev: false - /@graphql-codegen/typed-document-node@2.3.10(graphql@16.6.0): resolution: {integrity: sha512-FcEKubvEl2bHZG2N7u0AwioRYQmhBDRb/JXNBoNXjv9hg32juwejbilS9WWxgcxS13nPj14byEPfHs6GDrKZLw==} peerDependencies: @@ -8894,22 +8671,6 @@ packages: - supports-color dev: true - /@graphql-codegen/typed-document-node@4.0.1(graphql@16.6.0): - resolution: {integrity: sha512-mQNYCd12JsFSaK6xLry4olY9TdYG7GxQPexU6qU4Om++eKhseGwk2eGmQDRG4Qp8jEDFLMXuHMVUKqMQ1M+F/A==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.6.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - graphql: 16.6.0 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-codegen/typescript-generic-sdk@3.0.4(graphql-tag@2.12.6)(graphql@16.6.0): resolution: {integrity: sha512-0bPfoifMTaVP0Jh9g/pG6FsDHei2BHiO4f73Qz+XYgP/TNKq3R5AGPd7NzHeabdoO3lhuRvjKqafc5WtjZC/Dw==} peerDependencies: @@ -8927,23 +8688,6 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-generic-sdk@3.1.0(graphql-tag@2.12.6)(graphql@16.6.0): - resolution: {integrity: sha512-nQZi/YGRI1+qCZZsh0V5nz6+hCHSN4OU9tKyOTDsEPyDFnGEukDuRdCH2IZasGn22a3Iu5TUDkgp5w9wEQwGmg==} - peerDependencies: - graphql: 16.6.0 - graphql-tag: ^2.0.0 - dependencies: - '@graphql-codegen/plugin-helpers': 3.1.2(graphql@16.6.0) - '@graphql-codegen/visitor-plugin-common': 2.13.1(graphql@16.6.0) - auto-bind: 4.0.0 - graphql: 16.6.0 - graphql-tag: 2.12.6(graphql@16.6.0) - tslib: 2.4.1 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-codegen/typescript-operations@2.5.10(graphql@16.6.0): resolution: {integrity: sha512-N5H7JhcMRzjM2KdvCitqkOd4hphzD9q3NVWGLvBe3Xgqx5Cs3Y4GUcCJbRolSXdQcYBVgZpLZrUe/qoxwYyfeg==} peerDependencies: @@ -8960,22 +8704,6 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-operations@3.0.4(graphql@16.6.0): - resolution: {integrity: sha512-6yE2OL2+WJ1vd5MwFEGXpaxsFGzjAGUytPVHDML3Bi3TwP1F3lnQlIko4untwvHW0JhZEGQ7Ck30H9HjcxpdKA==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.6.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.6.0) - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-codegen/typescript-resolvers@2.7.10(graphql@16.6.0): resolution: {integrity: sha512-MCts4Vq4l8j5zxbfSjm3bkqYOsMWF9yzzNakYSTWsQZqxqAggsiMz18GTdhQvWCtFt6eKYadVrX3WDZBLuAHOA==} peerDependencies: @@ -8993,23 +8721,6 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript-resolvers@3.2.1(graphql@16.6.0): - resolution: {integrity: sha512-2ZIHk5J6HTuylse5ZIxw+aega54prHxvj7vM8hiKJ6vejZ94kvVPAq4aWmSFOkZ5lqU3YnM/ZyWfnhT5CUDj1g==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.6.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-codegen/typescript@2.8.5(graphql@16.6.0): resolution: {integrity: sha512-5w3zNlnNKM9tI5ZRbhESmsJ4G16rSiFmNQX6Ot56fmcYUC6bnAt5fqvSqs2C+8fVGIIjeWuwjQA5Xn1VkaLY8A==} peerDependencies: @@ -9026,22 +8737,6 @@ packages: - supports-color dev: true - /@graphql-codegen/typescript@3.0.4(graphql@16.6.0): - resolution: {integrity: sha512-x4O47447DZrWNtE/l5CU9QzzW4m1RbmCEdijlA3s2flG/y1Ckqdemob4CWfilSm5/tZ3w1junVDY616RDTSvZw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-codegen/schema-ast': 3.0.1(graphql@16.6.0) - '@graphql-codegen/visitor-plugin-common': 3.1.1(graphql@16.6.0) - auto-bind: 4.0.0 - graphql: 16.6.0 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-codegen/visitor-plugin-common@2.13.1(graphql@16.6.0): resolution: {integrity: sha512-mD9ufZhDGhyrSaWQGrU1Q1c5f01TeWtSWy/cDwXYjJcHIj1Y/DG2x0tOflEfCvh5WcnmHNIw4lzDsg1W7iFJEg==} peerDependencies: @@ -9061,6 +8756,7 @@ packages: transitivePeerDependencies: - encoding - supports-color + dev: true /@graphql-codegen/visitor-plugin-common@2.13.5(graphql@16.6.0): resolution: {integrity: sha512-OV/mGnSvB/WkEqFu/3bPkAPDNRGRB3xONww5+06CObl383yGrasqM04shYYK4cpcCn9PVWFe8u0SLSEeGmMVrg==} @@ -9083,27 +8779,6 @@ packages: - supports-color dev: true - /@graphql-codegen/visitor-plugin-common@3.1.1(graphql@16.6.0): - resolution: {integrity: sha512-uAfp+zu/009R3HUAuTK2AamR1bxIltM6rrYYI6EXSmkM3rFtFsLTuJhjUDj98HcUCszJZrADppz8KKLGRUVlNg==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/plugin-helpers': 4.2.0(graphql@16.6.0) - '@graphql-tools/optimize': 1.4.0(graphql@16.6.0) - '@graphql-tools/relay-operation-optimizer': 6.5.18(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - auto-bind: 4.0.0 - change-case-all: 1.0.15 - dependency-graph: 0.11.0 - graphql: 16.6.0 - graphql-tag: 2.12.6(graphql@16.6.0) - parse-filepath: 1.0.2 - tslib: 2.5.3 - transitivePeerDependencies: - - encoding - - supports-color - dev: false - /@graphql-inspector/core@3.3.0(graphql@16.6.0): resolution: {integrity: sha512-LRtk9sHgj9qqVPIkkThAVq3iZ7QxgHCx6elEwd0eesZBCmaIYQxD/BFu+VT8jr10YfOURBZuAnVdyGu64vYpBg==} peerDependencies: @@ -9113,6 +8788,7 @@ packages: graphql: 16.6.0 object-inspect: 1.10.3 tslib: 2.6.2 + dev: true /@graphql-inspector/core@5.0.0(graphql@16.6.0): resolution: {integrity: sha512-Pj5F03EdU8K3yfd5uo0BoxG1HSiZhqG5MvAdFDiA60vHfkD/t0UOXveR6vQnbThNrSzJY8vSt0NTwlSURw0kZQ==} @@ -9141,21 +8817,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/cache-localforage@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-cY/LJ+XC8kiyPoLxqPAMlOAvaeB81CZafdadLNyNDFuu66qDiZqWTYPw/lnhp2nyeukC8o/P69oP7d2OqVaCZA==} - peerDependencies: - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - graphql: 16.6.0 - localforage: 1.10.0 - tslib: 2.6.2 - dev: false - /@graphql-mesh/cli@0.82.3(@babel/core@7.24.4)(@types/node@20.10.0)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-y0ZXHH5gbcTMhwAEaZKAXpdIys8QV7KScJynkq3BOaJheKxbBfsBA1EeHDHm3hTQXbJP6FJ8G6MKEdCL8dT1GA==} hasBin: true @@ -9210,96 +8871,6 @@ packages: - utf-8-validate dev: true - /@graphql-mesh/cli@0.82.35(@babel/core@7.24.4)(@swc/core@1.4.2)(@types/node@20.12.7)(graphql-tag@2.12.6)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-5IuXpk+Zpg05u6qNPX19VzC5/HCiLdDRF6EPZ3ze57FIRgGA3YsB1CUGga6Ky3inalURYwx0kWqmdjbdKZYx1w==} - hasBin: true - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-codegen/core': 3.1.0(graphql@16.6.0) - '@graphql-codegen/typed-document-node': 4.0.1(graphql@16.6.0) - '@graphql-codegen/typescript': 3.0.4(graphql@16.6.0) - '@graphql-codegen/typescript-generic-sdk': 3.1.0(graphql-tag@2.12.6)(graphql@16.6.0) - '@graphql-codegen/typescript-operations': 3.0.4(graphql@16.6.0) - '@graphql-codegen/typescript-resolvers': 3.2.1(graphql@16.6.0) - '@graphql-mesh/config': 0.93.1(@babel/core@7.24.4)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/http': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - ajv: 8.12.0 - change-case: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.2.2) - dnscache: 1.0.2 - dotenv: 16.3.1 - graphql: 16.6.0 - graphql-import-node: 0.0.5(graphql@16.6.0) - graphql-ws: 5.14.0(graphql@16.6.0) - json-bigint-patch: 0.0.8 - json5: 2.2.3 - mkdirp: 3.0.1 - open: 7.4.2 - pascal-case: 3.1.2 - rimraf: 5.0.1 - ts-node: 10.9.2(@swc/core@1.4.2)(@types/node@20.12.7)(typescript@5.2.2) - tsconfig-paths: 4.2.0 - tslib: 2.6.2 - typescript: 5.2.2 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - yargs: 17.7.2 - transitivePeerDependencies: - - '@babel/core' - - '@swc/core' - - '@swc/wasm' - - '@types/node' - - bufferutil - - encoding - - graphql-tag - - react-native - - react-native-windows - - supports-color - - utf-8-validate - dev: false - - /@graphql-mesh/config@0.93.1(@babel/core@7.24.4)(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-g4omjuBBVPtyhEDeEa6uwfSSvUehV3zcwZVNbk+UJuFJEYPO4yBLsxfEZBpoeO6EriiPX2WnQyn5kiHbC3YTRA==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/runtime': ^0.93.1 - '@graphql-mesh/store': ^0.93.1 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@envelop/core': 3.0.6 - '@graphql-mesh/cache-localforage': 0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/merger-bare': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/code-file-loader': 7.3.23(@babel/core@7.24.4)(graphql@16.6.0) - '@graphql-tools/graphql-file-loader': 7.5.17(graphql@16.6.0) - '@graphql-tools/load': 7.8.14(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@whatwg-node/fetch': 0.8.4 - camel-case: 4.1.2 - graphql: 16.6.0 - param-case: 3.0.4 - pascal-case: 3.1.2 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/core' - - supports-color - dev: false - /@graphql-mesh/config@10.0.3(@babel/core@7.24.4)(@graphql-mesh/runtime@0.46.2)(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-AxvWALfvquWJhfVMmj//jyS6ZFufZhwuEDhTYqUGeRvYYr7TXI3qPiYIB5vpxCeQt1t4LnXF1fDHMK/YgurWcg==} peerDependencies: @@ -9346,22 +8917,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/cross-helpers@0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7): - resolution: {integrity: sha512-jseNppSNEwNWjcjDDwsxmRBK+ub8tz2qc/ca2ZfCTebuCk/+D3dI3LJ95ceNFOIhInK0g2HVq8BO8lMMX1pQtg==} - peerDependencies: - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - path-browserify: 1.0.1 - react-native-fs: 2.20.0(react-native@0.73.7) - react-native-path: 0.0.5 - transitivePeerDependencies: - - react-native - - react-native-windows - dev: false - /@graphql-mesh/cross-helpers@0.4.0(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-NgcuwLQelrnl6YmJdXk8GWctY7MUtgyLKBfXsFj1bRhzC6BR/r6DieWKWWrLG8DQu0eNUMtVrI0j0qUrlw7LdQ==} engines: {node: '>=16.0.0'} @@ -9379,36 +8934,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/graphql@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(@types/node@20.12.7)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-1G2/1jkl1VPWhsZsUBwFQI5d9OxxEc+CMxy5ef0qI2WEXqIocOxMhEY53cc+tCSbuXR99rxos+KD/8Z6ZasaOQ==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/store': ^0.93.1 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/url-loader': 7.17.18(@types/node@20.12.7)(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - graphql: 16.6.0 - lodash.get: 4.4.2 - tslib: 2.5.0 - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-mesh/graphql@0.94.2(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/store@0.94.1)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@10.1.3)(@types/node@20.10.0)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-uKPaHpnZqxU0pGa79xlfrJB85vbZ5rTfhdBK+HtYAp+1MCL4xB9Rjomyu2VG+KDvfdtu2sj9Bqql+5NGztZFMQ==} engines: {node: '>=16.0.0'} @@ -9463,26 +8988,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/http@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/runtime@0.93.2)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-tdGEvijb3w2YJsncoh59ZobWLWpYPDmTd07XOYroJTg3m95zloFRJr/IzklKOsAa57zVIuRLCOfDju5m1m47CQ==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/runtime': ^0.93.2 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/runtime': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - fets: 0.1.5 - graphql: 16.6.0 - graphql-yoga: 3.9.1(graphql@16.6.0) - tslib: 2.6.2 - dev: false - /@graphql-mesh/merger-bare@0.16.4(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-OwjqHYxzFtrwxS0sa5j7+f/JG10U/amIWt+ev+H9fdeUmjnztlp2rqnDqYNHQ3/sXmlM/+CJOPoC5DdEmLRnvg==} peerDependencies: @@ -9500,26 +9005,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/merger-bare@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-S/G3WSSa4+9YT320iRL/tODK4hTvepkQNUSzmddf3oz10xeyQD7hPJyOAnB6D+2dGVhaOTwmXJIueqevcAcP6Q==} - peerDependencies: - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/merger-stitching': 0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@graphql-mesh/store' - dev: false - /@graphql-mesh/merger-stitching@0.18.4(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-c4sX2h1sxECcEBdfFBxqY9L6NpikFYQX/TvS8vWpaCRJ59cDP5MVV9XIacIAZGOP78YVmwuLtasZNi/2TMZEAA==} peerDependencies: @@ -9540,28 +9025,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/merger-stitching@0.93.1(@graphql-mesh/store@0.93.1)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-8km5UFhKQGd0XY8bTBpHoBhVx/7qCkflPHLoTAguIWN8nJrcXJoqPamodci/U+2hudLAtRqhWosHu/8z7ctZpg==} - peerDependencies: - '@graphql-mesh/store': ^0.93.1 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/stitch': 8.7.50(graphql@16.6.0) - '@graphql-tools/stitching-directives': 2.3.34(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-mesh/runtime@0.46.2(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-sVt2uGB8WCGx1vpT9gHk63qSxoYkuIJ5ieEhiIAByQRRbOKIS7WLplTqseBaS3W3FbKrLfbLh8d0Bl9Sl3Inkw==} peerDependencies: @@ -9587,32 +9050,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/runtime@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-8z9ag3jZLmkzawMzF6+i/+P1nQai+HmSZzNeJJen6fRkwprSM1Z7B4lfYBYhdiCbK11HHubDfw4LYwRuBcISMQ==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@envelop/core': 3.0.6 - '@envelop/extended-validation': 2.0.6(@envelop/core@3.0.6)(graphql@16.6.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) - '@graphql-tools/batch-execute': 8.5.22(graphql@16.6.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - '@whatwg-node/fetch': 0.8.4 - graphql: 16.6.0 - tslib: 2.5.0 - dev: false - /@graphql-mesh/store@0.9.3(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-CzuB2wY4p75hkpSL1rKH8vBB/0QurvDrC1UKWtIOjz26cVXCq6EJ4JtC93T32fOc/y1x/e4OyAAOgoz6csCXiw==} peerDependencies: @@ -9630,44 +9067,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-OEljVuaZn2htU1rt4Yll/aJmynw3/Kvhd6eE8V0/del0u9iuLJqiKkzFJl8HUSMh0IkO10OnficJnTM0tCmxRw==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-inspector/core': 3.3.0(graphql@16.6.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.0 - dev: false - - /@graphql-mesh/store@0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-OEljVuaZn2htU1rt4Yll/aJmynw3/Kvhd6eE8V0/del0u9iuLJqiKkzFJl8HUSMh0IkO10OnficJnTM0tCmxRw==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-inspector/core': 3.3.0(graphql@16.6.0) - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-mesh/store@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.94.6)(@graphql-mesh/utils@0.94.1)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-EbHLSPdlRqq0VYjdKXhKCAGdpP0n9qFPduugdGrd35Vk4UaBo4VdBhXQ1vkenAI3VK1VXWjCB+aaC2ikva/2yQ==} engines: {node: '>=16.0.0'} @@ -9699,32 +9098,6 @@ packages: lodash.get: 4.4.2 dev: true - /@graphql-mesh/string-interpolation@0.4.4(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-IotswBYZRaPswOebcr2wuOFuzD3dHIJxVEkPiiQubqjUIR8HhQI22XHJv0WNiQZ65z8NR9+GYWwEDIc2JRCNfQ==} - peerDependencies: - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - dayjs: 1.11.7 - graphql: 16.6.0 - json-pointer: 0.6.2 - lodash.get: 4.4.2 - tslib: 2.5.0 - dev: false - - /@graphql-mesh/string-interpolation@0.4.4(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-IotswBYZRaPswOebcr2wuOFuzD3dHIJxVEkPiiQubqjUIR8HhQI22XHJv0WNiQZ65z8NR9+GYWwEDIc2JRCNfQ==} - peerDependencies: - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - dayjs: 1.11.7 - graphql: 16.6.0 - json-pointer: 0.6.2 - lodash.get: 4.4.2 - tslib: 2.6.2 - dev: false - /@graphql-mesh/string-interpolation@0.5.1(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-xrShpJ4silpWekpeVntDNt6NY6RxEMMbZ1CenIkLsl/QN3mMjxWa3rQX0qrByBeyDn7SorSN3lrClCCsPvmWZw==} engines: {node: '>=16.0.0'} @@ -9739,22 +9112,6 @@ packages: tslib: 2.6.3 dev: true - /@graphql-mesh/transform-type-merging@0.93.1(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-CUrqCMaEqO1LDusv59UPqmQju3f+LpEGxFu7CydMiIvbfKDDDrf8+dF3OVU7d/ZOMRxB6hR80JsQF0SVeXPCOQ==} - peerDependencies: - '@graphql-mesh/types': ^0.93.1 - '@graphql-mesh/utils': ^0.93.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/utils': 0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/stitching-directives': 2.3.34(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.0 - dev: false - /@graphql-mesh/types@0.89.2(graphql@16.6.0)(react-native@0.73.7): resolution: {integrity: sha512-5Hrgmwb/enSu1Aj4E6G5lnQxtR99zUR/x82wVaQvqhXZCTTztHHzdHjQwNywJNqUVBxPUg1To8mGXhZQsu4NTQ==} peerDependencies: @@ -9772,40 +9129,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-113DuJzmR7aj2EMnLPu33ktCe5k7+Mk0BxFfmQViUH+mkr6i4JMsWvPKs9dTODSYuSuwvAZ90Vw2l3QyMrbFVA==} - peerDependencies: - '@graphql-mesh/store': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.5.0 - dev: false - - /@graphql-mesh/types@0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-113DuJzmR7aj2EMnLPu33ktCe5k7+Mk0BxFfmQViUH+mkr6i4JMsWvPKs9dTODSYuSuwvAZ90Vw2l3QyMrbFVA==} - peerDependencies: - '@graphql-mesh/store': ^0.93.1 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/store': 0.93.1(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-mesh/utils@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - /@graphql-mesh/types@0.94.6(@graphql-mesh/store@0.94.1)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-Dir0ETwXhNK0Du5CHQ51xnBu/t5PhcTBbQVniPq/zgM02FJZRvbRHqlg2/Q1g3X3M9dIjs787XLhEarG4imL2g==} engines: {node: '>=16.0.0'} @@ -9846,52 +9169,6 @@ packages: - react-native-windows dev: true - /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0): - resolution: {integrity: sha512-U+VytfSoqPofH/pmYZHFY10SkIFtHKrvE7Isxv1d0DiweVjdH3Qtojw13DWFpu/EKtgJY5bqoVnlcsZJYlKQoA==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/types': ^0.93.2 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.5.0) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.5.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - dset: 3.1.3 - graphql: 16.6.0 - js-yaml: 4.1.0 - lodash.get: 4.4.2 - lodash.topath: 4.5.2 - tiny-lru: 8.0.2 - tslib: 2.5.0 - dev: false - - /@graphql-mesh/utils@0.93.2(@graphql-mesh/cross-helpers@0.3.4)(@graphql-mesh/types@0.93.2)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2): - resolution: {integrity: sha512-U+VytfSoqPofH/pmYZHFY10SkIFtHKrvE7Isxv1d0DiweVjdH3Qtojw13DWFpu/EKtgJY5bqoVnlcsZJYlKQoA==} - peerDependencies: - '@graphql-mesh/cross-helpers': ^0.3.4 - '@graphql-mesh/types': ^0.93.2 - '@graphql-tools/utils': ^9.2.1 - graphql: 16.6.0 - tslib: ^2.4.0 - dependencies: - '@graphql-mesh/cross-helpers': 0.3.4(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(react-native@0.73.7) - '@graphql-mesh/string-interpolation': 0.4.4(graphql@16.6.0)(tslib@2.6.2) - '@graphql-mesh/types': 0.93.2(@graphql-mesh/store@0.93.1)(@graphql-tools/utils@9.2.1)(graphql@16.6.0)(tslib@2.6.2) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - dset: 3.1.3 - graphql: 16.6.0 - js-yaml: 4.1.0 - lodash.get: 4.4.2 - lodash.topath: 4.5.2 - tiny-lru: 8.0.2 - tslib: 2.6.2 - dev: false - /@graphql-mesh/utils@0.94.1(@graphql-mesh/cross-helpers@0.4.0)(@graphql-mesh/types@0.94.6)(@graphql-tools/utils@10.1.3)(graphql@16.6.0)(tslib@2.6.3): resolution: {integrity: sha512-K5cGtD+zmYcikoprovANM0B1MDAHE3tadSM7fDoEbfy//vBCXYfLAVjzgAMVxeS0M7KEH1vVqtHHZJKCvSjAoQ==} engines: {node: '>=16.0.0'} @@ -9928,19 +9205,6 @@ packages: tslib: 2.6.2 dev: true - /@graphql-tools/batch-delegate@8.4.27(graphql@16.6.0): - resolution: {integrity: sha512-efgDDJhljma9d3Ky/LswIu1xm/if2oS27XA1sOcxcShW+Ze+Qxi0hZZ6iyI4eQxVDX5Lyy/n+NvQEZAK1riqnQ==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - dataloader: 2.2.2 - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/batch-delegate@9.0.1(graphql@16.6.0): resolution: {integrity: sha512-a5DWcrjPLvLCT1PvDetWfwxWHAxupGW9xDesMJOcM7NvBktBWMDheD0qHHvEBLmCL4dimWpvilmQaowQx7oJJw==} engines: {node: '>=16.0.0'} @@ -9967,18 +9231,6 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/batch-execute@8.5.22(graphql@16.6.0): - resolution: {integrity: sha512-hcV1JaY6NJQFQEwCKrYhpfLK8frSXDbtNMoTur98u10Cmecy1zrqNKSqhEyGetpgHxaJRqszGzKeI3RuroDN6A==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - dataloader: 2.2.2 - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/batch-execute@9.0.1(graphql@16.6.0): resolution: {integrity: sha512-cc96n/JNARtnYjru6KQl3u3MLrQLfFBu8VoDRRG2BQmShodw4QJ8fn7MzFABjkBHFQPydNGN1QOKBCjq6ui/3g==} engines: {node: '>=16.0.0'} @@ -10003,6 +9255,7 @@ packages: graphql: 16.6.0 tslib: 2.6.3 value-or-promise: 1.0.12 + dev: true /@graphql-tools/code-file-loader@7.3.15(@babel/core@7.24.4)(graphql@16.6.0): resolution: {integrity: sha512-cF8VNc/NANTyVSIK8BkD/KSXRF64DvvomuJ0evia7tJu4uGTXgDjimTMWsTjKRGOOBSTEbL6TA8e4DdIYq6Udw==} @@ -10020,22 +9273,6 @@ packages: - supports-color dev: true - /@graphql-tools/code-file-loader@7.3.23(@babel/core@7.24.4)(graphql@16.6.0): - resolution: {integrity: sha512-8Wt1rTtyTEs0p47uzsPJ1vAtfAx0jmxPifiNdmo9EOCuUPyQGEbMaik/YkqZ7QUFIEYEQu+Vgfo8tElwOPtx5Q==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/graphql-tag-pluck': 7.5.2(@babel/core@7.24.4)(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - globby: 11.1.0 - graphql: 16.6.0 - tslib: 2.6.2 - unixify: 1.0.0 - transitivePeerDependencies: - - '@babel/core' - - supports-color - dev: false - /@graphql-tools/delegate@10.0.2(graphql@16.6.0): resolution: {integrity: sha512-ZU7VnR2xFgHrGnsuw6+nRJkcvSucn7w5ooxb/lTKlVfrNJfTwJevNcNKMnbtPUSajG3+CaFym/nU6v44GXCmNw==} engines: {node: '>=16.0.0'} @@ -10064,6 +9301,7 @@ packages: dataloader: 2.2.2 graphql: 16.6.0 tslib: 2.6.3 + dev: true /@graphql-tools/delegate@9.0.20(graphql@16.6.0): resolution: {integrity: sha512-m/de++kSxa/JABQ15tyt6SMlc4qfl3MgFFWmwbPcWgJxlAvZ7oIdGXcUvU6VJcXiyXfo6MZ/zr4V2E2UwMehew==} @@ -10080,39 +9318,6 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/delegate@9.0.35(graphql@16.6.0): - resolution: {integrity: sha512-jwPu8NJbzRRMqi4Vp/5QX1vIUeUPpWmlQpOkXQD2r1X45YsVceyUUBnktCrlJlDB4jPRVy7JQGwmYo3KFiOBMA==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/batch-execute': 8.5.22(graphql@16.6.0) - '@graphql-tools/executor': 0.0.20(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - dataloader: 2.2.2 - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - - /@graphql-tools/executor-graphql-ws@0.0.14(graphql@16.6.0): - resolution: {integrity: sha512-P2nlkAsPZKLIXImFhj0YTtny5NQVGSsKnhi7PzXiaHSXc6KkzqbWZHKvikD4PObanqg+7IO58rKFpGXP7eeO+w==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - '@types/ws': 8.5.5 - graphql: 16.6.0 - graphql-ws: 5.12.1(graphql@16.6.0) - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - /@graphql-tools/executor-graphql-ws@1.1.0(graphql@16.6.0): resolution: {integrity: sha512-yM67SzwE8rYRpm4z4AuGtABlOp9mXXVy6sxXnTJRoYIdZrmDbKVfIY+CpZUJCqS0FX3xf2+GoHlsj7Qswaxgcg==} engines: {node: '>=16.0.0'} @@ -10131,24 +9336,6 @@ packages: - utf-8-validate dev: true - /@graphql-tools/executor-http@0.1.10(@types/node@20.12.7)(graphql@16.6.0): - resolution: {integrity: sha512-hnAfbKv0/lb9s31LhWzawQ5hghBfHS+gYWtqxME6Rl0Aufq9GltiiLBcl7OVVOnkLF0KhwgbYP1mB5VKmgTGpg==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - '@whatwg-node/fetch': 0.8.4 - dset: 3.1.2 - extract-files: 11.0.0 - graphql: 16.6.0 - meros: 1.3.0(@types/node@20.12.7) - tslib: 2.6.2 - value-or-promise: 1.0.12 - transitivePeerDependencies: - - '@types/node' - dev: false - /@graphql-tools/executor-http@1.0.2(@types/node@20.10.0)(graphql@16.6.0): resolution: {integrity: sha512-JKTB4E3kdQM2/1NEcyrVPyQ8057ZVthCV5dFJiKktqY9IdmF00M8gupFcW3jlbM/Udn78ickeUBsUzA3EouqpA==} engines: {node: '>=16.0.0'} @@ -10167,22 +9354,6 @@ packages: - '@types/node' dev: true - /@graphql-tools/executor-legacy-ws@0.0.11(graphql@16.6.0): - resolution: {integrity: sha512-4ai+NnxlNfvIQ4c70hWFvOZlSUN8lt7yc+ZsrwtNFbFPH/EroIzFMapAxM9zwyv9bH38AdO3TQxZ5zNxgBdvUw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@types/ws': 8.5.5 - graphql: 16.6.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - bufferutil - - utf-8-validate - dev: false - /@graphql-tools/executor-legacy-ws@1.0.1(graphql@16.6.0): resolution: {integrity: sha512-PQrTJ+ncHMEQspBARc2lhwiQFfRAX/z/CsOdZTFjIljOHgRWGAA1DAx7pEN0j6PflbLCfZ3NensNq2jCBwF46w==} engines: {node: '>=16.0.0'} @@ -10213,32 +9384,6 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/executor@0.0.18(graphql@16.6.0): - resolution: {integrity: sha512-xZC0C+/npXoSHBB5bsJdwxDLgtl1Gu4fL9J2TPQmXoZC3L2N506KJoppf9LgWdHU/xK04luJrhP6WjhfkIN0pQ==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - - /@graphql-tools/executor@0.0.20(graphql@16.6.0): - resolution: {integrity: sha512-GdvNc4vszmfeGvUqlcaH1FjBoguvMYzxAfT6tDd4/LgwymepHhinqLNA5otqwVLW+JETcDaK7xGENzFomuE6TA==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) - '@repeaterjs/repeater': 3.0.4 - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/executor@0.0.9(graphql@16.6.0): resolution: {integrity: sha512-qLhQWXTxTS6gbL9INAQa4FJIqTd2tccnbs4HswOx35KnyLaLtREuQ8uTfU+5qMrRIBhuzpGdkP2ssqxLyOJ5rA==} peerDependencies: @@ -10278,6 +9423,7 @@ packages: graphql: 16.6.0 tslib: 2.6.3 value-or-promise: 1.0.12 + dev: true /@graphql-tools/graphql-file-loader@7.5.13(graphql@16.6.0): resolution: {integrity: sha512-VWFVnw3aB6sykGfpb/Dn3sxQswqvp2FsVwDy8ubH1pgLuxlDuurhHjRHvMG2+p7IaHC7q8T3Vk/rLtZftrwOBQ==} @@ -10292,19 +9438,6 @@ packages: unixify: 1.0.0 dev: true - /@graphql-tools/graphql-file-loader@7.5.17(graphql@16.6.0): - resolution: {integrity: sha512-hVwwxPf41zOYgm4gdaZILCYnKB9Zap7Ys9OhY1hbwuAuC4MMNY9GpUjoTU3CQc3zUiPoYStyRtUGkHSJZ3HxBw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/import': 6.7.18(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - globby: 11.1.0 - graphql: 16.6.0 - tslib: 2.6.2 - unixify: 1.0.0 - dev: false - /@graphql-tools/graphql-tag-pluck@7.4.2(@babel/core@7.24.4)(graphql@16.6.0): resolution: {integrity: sha512-SXM1wR5TExrxocQTxZK5r74jTbg8GxSYLY3mOPCREGz6Fu7PNxMxfguUzGUAB43Mf44Dn8oVztzd2eitv2Qgww==} peerDependencies: @@ -10322,23 +9455,6 @@ packages: - supports-color dev: true - /@graphql-tools/graphql-tag-pluck@7.5.2(@babel/core@7.24.4)(graphql@16.6.0): - resolution: {integrity: sha512-RW+H8FqOOLQw0BPXaahYepVSRjuOHw+7IL8Opaa5G5uYGOBxoXR7DceyQ7BcpMgktAOOmpDNQ2WtcboChOJSRA==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@babel/parser': 7.23.0 - '@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.24.4) - '@babel/traverse': 7.23.2 - '@babel/types': 7.23.0 - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - transitivePeerDependencies: - - '@babel/core' - - supports-color - dev: false - /@graphql-tools/import@6.7.14(graphql@16.6.0): resolution: {integrity: sha512-lRX/MHM0Km497kg4VXMvtV1DeG/AfPJFO2ovaL0kDujWEdyCsWxsB4whY7nPeiNaPA/nT3mQ8MU7yFzVjogF/Q==} peerDependencies: @@ -10350,29 +9466,6 @@ packages: tslib: 2.6.2 dev: true - /@graphql-tools/import@6.7.18(graphql@16.6.0): - resolution: {integrity: sha512-XQDdyZTp+FYmT7as3xRWH/x8dx0QZA2WZqfMF5EWb36a0PiH7WwlRQYIdyYXj8YCLpiWkeBXgBRHmMnwEYR8iQ==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - resolve-from: 5.0.0 - tslib: 2.6.2 - dev: false - - /@graphql-tools/load@7.8.14(graphql@16.6.0): - resolution: {integrity: sha512-ASQvP+snHMYm+FhIaLxxFgVdRaM0vrN9wW2BKInQpktwWTXVyk+yP5nQUCEGmn0RTdlPKrffBaigxepkEAJPrg==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - p-limit: 3.1.0 - tslib: 2.6.2 - dev: false - /@graphql-tools/load@7.8.8(graphql@16.6.0): resolution: {integrity: sha512-gMuQdO2jXmI0BNUc1MafxRQTWVMUtuH500pZAQtOdDdNJppV7lJdY6mMhITQ2qnhYDuMrcZPHhIkcftyQfkgUg==} peerDependencies: @@ -10403,17 +9496,7 @@ packages: '@graphql-tools/utils': 9.2.1(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 - - /@graphql-tools/merge@9.0.0(graphql@16.6.0): - resolution: {integrity: sha512-J7/xqjkGTTwOJmaJQJ2C+VDBDOWJL3lKrHJN4yMaRLAJH3PosB7GiPRaSDZdErs0+F77sH2MKs2haMMkywzx7Q==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/utils': 10.1.3(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - dev: false + dev: true /@graphql-tools/merge@9.0.3(graphql@16.6.0): resolution: {integrity: sha512-FeKv9lKLMwqDu0pQjPpF59GY3HReUkWXKsMIuMuJQOKh9BETu7zPEFUELvcw8w+lwZkl4ileJsHXC9+AnsT2Lw==} @@ -10424,6 +9507,7 @@ packages: '@graphql-tools/utils': 10.1.2(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/optimize@1.4.0(graphql@16.6.0): resolution: {integrity: sha512-dJs/2XvZp+wgHH8T5J2TqptT9/6uVzIYvA6uFACha+ufvdMBedkfR4b4GbT8jAKLRARiqRTxy3dctnwkTM2tdw==} @@ -10432,6 +9516,7 @@ packages: dependencies: graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/relay-operation-optimizer@6.5.18(graphql@16.6.0): resolution: {integrity: sha512-mc5VPyTeV+LwiM+DNvoDQfPqwQYhPV/cl5jOBjTgSniyaq8/86aODfMkrE2OduhQ5E00hqrkuL2Fdrgk0w1QJg==} @@ -10445,6 +9530,7 @@ packages: transitivePeerDependencies: - encoding - supports-color + dev: true /@graphql-tools/schema@10.0.0(graphql@16.6.0): resolution: {integrity: sha512-kf3qOXMFcMs2f/S8Y3A8fm/2w+GaHAkfr3Gnhh2LOug/JgpY/ywgFVxO3jOeSpSEdoYcDKLcXVjMigNbY4AdQg==} @@ -10470,6 +9556,7 @@ packages: graphql: 16.6.0 tslib: 2.6.3 value-or-promise: 1.0.12 + dev: true /@graphql-tools/schema@9.0.12(graphql@16.6.0): resolution: {integrity: sha512-DmezcEltQai0V1y96nwm0Kg11FDS/INEFekD4nnVgzBqawvznWqK6D6bujn+cw6kivoIr3Uq//QmU/hBlBzUlQ==} @@ -10493,6 +9580,7 @@ packages: graphql: 16.6.0 tslib: 2.6.2 value-or-promise: 1.0.12 + dev: true /@graphql-tools/stitch@8.7.32(graphql@16.6.0): resolution: {integrity: sha512-d53Ka836AqEpSK6P56DQxPNvqaXu9yCKjVO9JZC9pGNzWbavVBQsYdV36KXZjB09/3VgPnftvW6CchZKIvcckg==} @@ -10510,23 +9598,6 @@ packages: value-or-promise: 1.0.12 dev: true - /@graphql-tools/stitch@8.7.50(graphql@16.6.0): - resolution: {integrity: sha512-VB1/uZyXjj1P5Wj0c4EKX3q8Q1Maj4dy6uNwodEPaO3EHMpaJU/DqyN0Bvnhxu0ol7RzdY3kgsvsdUjU2QMImw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/batch-delegate': 8.4.27(graphql@16.6.0) - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/executor': 0.0.20(graphql@16.6.0) - '@graphql-tools/merge': 8.4.2(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/stitching-directives@2.3.23(graphql@16.6.0): resolution: {integrity: sha512-YqMmrtF6DEo45AWV5S5j0wtNE08j0unuLZMF16E6pmXbPzWP4Z2jLsAmjY6uDLaXccvK8b5dhyemIHC9dBNxkA==} peerDependencies: @@ -10538,43 +9609,6 @@ packages: tslib: 2.6.2 dev: true - /@graphql-tools/stitching-directives@2.3.34(graphql@16.6.0): - resolution: {integrity: sha512-DVlo1/SW9jN6jN1IL279c7voEJiEHsLbYRD7tYsAW472zrHqn0rpB6jRzZDzLOlCpm7JRWPsegXVlkqf0qvqFQ==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - dev: false - - /@graphql-tools/url-loader@7.17.18(@types/node@20.12.7)(graphql@16.6.0): - resolution: {integrity: sha512-ear0CiyTj04jCVAxi7TvgbnGDIN2HgqzXzwsfcqiVg9cvjT40NcMlZ2P1lZDgqMkZ9oyLTV8Bw6j+SyG6A+xPw==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@ardatan/sync-fetch': 0.0.1 - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/executor-graphql-ws': 0.0.14(graphql@16.6.0) - '@graphql-tools/executor-http': 0.1.10(@types/node@20.12.7)(graphql@16.6.0) - '@graphql-tools/executor-legacy-ws': 0.0.11(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-tools/wrap': 9.4.2(graphql@16.6.0) - '@types/ws': 8.5.5 - '@whatwg-node/fetch': 0.8.4 - graphql: 16.6.0 - isomorphic-ws: 5.0.0(ws@8.13.0) - tslib: 2.6.2 - value-or-promise: 1.0.12 - ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) - transitivePeerDependencies: - - '@types/node' - - bufferutil - - encoding - - utf-8-validate - dev: false - /@graphql-tools/url-loader@8.0.0(@types/node@20.10.0)(graphql@16.6.0): resolution: {integrity: sha512-rPc9oDzMnycvz+X+wrN3PLrhMBQkG4+sd8EzaFN6dypcssiefgWKToXtRKI8HHK68n2xEq1PyrOpkjHFJB+GwA==} engines: {node: '>=16.0.0'} @@ -10625,6 +9659,7 @@ packages: dset: 3.1.2 graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/utils@10.1.3(graphql@16.6.0): resolution: {integrity: sha512-loco2ctrrMQzdpSHbcOo6+Ecp21BV67cQ2pNGhuVKAexruu01RdLn3LgtK47B9BpLz3cUD6U0u1R0rur7xMOOg==} @@ -10637,6 +9672,7 @@ packages: dset: 3.1.3 graphql: 16.6.0 tslib: 2.6.3 + dev: true /@graphql-tools/utils@8.13.1(graphql@16.6.0): resolution: {integrity: sha512-qIh9yYpdUFmctVqovwMdheVNJqFh+DQNWIhX87FJStfXYnmweBUDATok9fWPleKeFwxnW8IapKmY8m8toJEkAw==} @@ -10645,6 +9681,7 @@ packages: dependencies: graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/utils@9.1.1(graphql@16.6.0): resolution: {integrity: sha512-DXKLIEDbihK24fktR2hwp/BNIVwULIHaSTNTNhXS+19vgT50eX9wndx1bPxGwHnVBOONcwjXy0roQac49vdt/w==} @@ -10672,6 +9709,7 @@ packages: '@graphql-typed-document-node/core': 3.2.0(graphql@16.6.0) graphql: 16.6.0 tslib: 2.6.2 + dev: true /@graphql-tools/wrap@10.0.0(graphql@16.6.0): resolution: {integrity: sha512-HDOeUUh6UhpiH0WPJUQl44ODt1x5pnMUbOJZ7GjTdGQ7LK0AgVt3ftaAQ9duxLkiAtYJmu5YkULirfZGj4HzDg==} @@ -10687,20 +9725,6 @@ packages: value-or-promise: 1.0.12 dev: true - /@graphql-tools/wrap@10.0.5(graphql@16.6.0): - resolution: {integrity: sha512-Cbr5aYjr3HkwdPvetZp1cpDWTGdD1Owgsb3z/ClzhmrboiK86EnQDxDvOJiQkDCPWE9lNBwj8Y4HfxroY0D9DQ==} - engines: {node: '>=16.0.0'} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 10.0.4(graphql@16.6.0) - '@graphql-tools/schema': 10.0.3(graphql@16.6.0) - '@graphql-tools/utils': 10.1.3(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.3 - value-or-promise: 1.0.12 - dev: false - /@graphql-tools/wrap@9.2.21(graphql@16.6.0): resolution: {integrity: sha512-h4S9x9Rh8aSKkBGv+nq43Z0qK7CH8ySl+9RDO0MluscWlqNNECJ34FytwPVd8sXSrS7JwgwmVNcT51EH1n0wRw==} peerDependencies: @@ -10714,19 +9738,6 @@ packages: value-or-promise: 1.0.11 dev: true - /@graphql-tools/wrap@9.4.2(graphql@16.6.0): - resolution: {integrity: sha512-DFcd9r51lmcEKn0JW43CWkkI2D6T9XI1juW/Yo86i04v43O9w2/k4/nx2XTJv4Yv+iXwUw7Ok81PGltwGJSDSA==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@graphql-tools/delegate': 9.0.35(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - graphql: 16.6.0 - tslib: 2.6.2 - value-or-promise: 1.0.12 - dev: false - /@graphql-typed-document-node/core@3.1.1(graphql@16.6.0): resolution: {integrity: sha512-NQ17ii0rK1b34VZonlmT2QMJFI70m0TRwbknO/ihlbatXyaktDhN/98vBiUU6kNBPljqGqyIrl2T4nY2RpFANg==} peerDependencies: @@ -10742,12 +9753,6 @@ packages: dependencies: graphql: 16.6.0 - /@graphql-yoga/logger@0.0.1: - resolution: {integrity: sha512-6npFz7eZz33mXgSm1waBLMjUNG0D5hTc/p5Hcs1mojkT3KsLpCOFokzTEKboNsBhKevYcaVa/xeA7WBj4UYMLg==} - dependencies: - tslib: 2.6.2 - dev: false - /@graphql-yoga/subscription@3.1.0: resolution: {integrity: sha512-Vc9lh8KzIHyS3n4jBlCbz7zCjcbtQnOBpsymcRvHhFr2cuH+knmRn0EmzimMQ58jQ8kxoRXXC3KJS3RIxSdPIg==} dependencies: @@ -10755,12 +9760,14 @@ packages: '@repeaterjs/repeater': 3.0.4 '@whatwg-node/events': 0.0.2 tslib: 2.6.2 + dev: true /@graphql-yoga/typed-event-target@1.0.0: resolution: {integrity: sha512-Mqni6AEvl3VbpMtKw+TIjc9qS9a8hKhiAjFtqX488yq5oJtj9TkNlFTIacAVS3vnPiswNsmDiQqvwUOcJgi1DA==} dependencies: '@repeaterjs/repeater': 3.0.4 tslib: 2.6.2 + dev: true /@grpc/grpc-js@1.9.2: resolution: {integrity: sha512-Lf2pUhNTaviEdEaGgjU+29qw3arX7Qd/45q66F3z1EV5hroE6wM9xSHPvjB8EY+b1RmKZgwnLWXQorC6fZ9g5g==} @@ -15428,6 +14435,7 @@ packages: /@repeaterjs/repeater@3.0.4: resolution: {integrity: sha512-AW8PKd6iX3vAZ0vA43nOUOnbq/X5ihgU+mSXXqunMkeQADGiqw/PY0JNeYtD5sr0PAy51YPgAPbDoeapv9r8WA==} + dev: true /@resolver-engine/core@0.3.3: resolution: {integrity: sha512-eB8nEbKDJJBi5p5SrvrvILn4a0h42bKtbCTri3ZxCGt6UvoQyp7HnGOfki944bUjBSHKK3RvgfViHn+kqdXtnQ==} @@ -18034,6 +17042,7 @@ packages: cpu: [arm64] os: [darwin] requiresBuild: true + dev: true optional: true /@swc/core-darwin-x64@1.4.2: @@ -18042,6 +17051,7 @@ packages: cpu: [x64] os: [darwin] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm-gnueabihf@1.4.2: @@ -18050,6 +17060,7 @@ packages: cpu: [arm] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm64-gnu@1.4.2: @@ -18058,6 +17069,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-arm64-musl@1.4.2: @@ -18066,6 +17078,7 @@ packages: cpu: [arm64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-x64-gnu@1.4.2: @@ -18074,6 +17087,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-linux-x64-musl@1.4.2: @@ -18082,6 +17096,7 @@ packages: cpu: [x64] os: [linux] requiresBuild: true + dev: true optional: true /@swc/core-win32-arm64-msvc@1.4.2: @@ -18090,6 +17105,7 @@ packages: cpu: [arm64] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core-win32-ia32-msvc@1.4.2: @@ -18098,6 +17114,7 @@ packages: cpu: [ia32] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core-win32-x64-msvc@1.4.2: @@ -18106,6 +17123,7 @@ packages: cpu: [x64] os: [win32] requiresBuild: true + dev: true optional: true /@swc/core@1.4.2(@swc/helpers@0.5.6): @@ -18132,6 +17150,7 @@ packages: '@swc/core-win32-arm64-msvc': 1.4.2 '@swc/core-win32-ia32-msvc': 1.4.2 '@swc/core-win32-x64-msvc': 1.4.2 + dev: true /@swc/counter@0.1.3: resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==} @@ -18146,11 +17165,13 @@ packages: resolution: {integrity: sha512-aYX01Ke9hunpoCexYAgQucEpARGQ5w/cqHFrIR+e9gdKb1QWTsVJuTJ2ozQzIAxLyRQe/m+2RqzkyOOGiMKRQA==} dependencies: tslib: 2.6.2 + dev: true /@swc/types@0.1.6: resolution: {integrity: sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==} dependencies: '@swc/counter': 0.1.3 + dev: true /@szmarczak/http-timer@1.1.2: resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==} @@ -21009,15 +20030,9 @@ packages: '@webassemblyjs/ast': 1.12.1 '@xtuc/long': 4.2.2 - /@whatwg-node/cookie-store@0.0.1: - resolution: {integrity: sha512-uoti8QU5xd+X+9PULOGpPpOqPDdwkz+ukMc4kyQG1GwXeKVGktr4FSllr6dBotjOjNVPSBPpmj5V6zrUdDcLaw==} - dependencies: - '@whatwg-node/events': 0.0.3 - tslib: 2.6.2 - dev: false - /@whatwg-node/events@0.0.2: resolution: {integrity: sha512-WKj/lI4QjnLuPrim0cfO7i+HsDSXHxNv1y0CrJhdntuO3hxWZmnXCwNDnwOvry11OjRin6cgWNF+j/9Pn8TN4w==} + dev: true /@whatwg-node/events@0.0.3: resolution: {integrity: sha512-IqnKIDWfXBJkvy/k6tzskWTc2NK3LcqHlb+KHGCrjOCH4jfQckRX0NAiIcC/vIqQkzLYw2r2CTSwAxcrtcD6lA==} @@ -21109,13 +20124,6 @@ packages: - encoding dev: true - /@whatwg-node/server@0.7.7: - resolution: {integrity: sha512-aHURgNDFm/48WVV3vhTMfnEKCYwYgdaRdRhZsQZx4UVFjGGkGay7Ys0+AYu9QT/jpoImv2oONkstoTMUprDofg==} - dependencies: - '@whatwg-node/fetch': 0.8.4 - tslib: 2.6.2 - dev: false - /@xtuc/ieee754@1.2.0: resolution: {integrity: sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==} @@ -22219,6 +21227,7 @@ packages: /auto-bind@4.0.0: resolution: {integrity: sha512-Hdw8qdNiqdJ8LqT0iK0sVzkFbzg6fhnQqqfWhBDxcHZvU75+B+ayzTy8x+k5Ix0Y92XOhOUlx74ps+bA6BeYMQ==} engines: {node: '>=8'} + dev: true /autocannon@7.14.0: resolution: {integrity: sha512-lusP43BAwrTwQhihLjKwy7LceyX01eKSvFJUsBktASGqcR1g1ySYSPxCoCGDX08uLEs9oaqEKBBUFMenK3B3lQ==} @@ -22705,6 +21714,7 @@ packages: /babel-plugin-syntax-trailing-function-commas@7.0.0-beta.0: resolution: {integrity: sha512-Xj9XuRuz3nTSbaTXWv3itLOcxyF4oPD8douBBmj7U9BBC6nEBYfyOJYQMf/8PJAFotC62UY5dFfIGEPr7WswzQ==} + dev: true /babel-plugin-transform-async-to-generator@6.24.1: resolution: {integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==} @@ -23039,6 +22049,7 @@ packages: '@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.2) '@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.2) babel-plugin-syntax-trailing-function-commas: 7.0.0-beta.0 + dev: true /babel-preset-jest@27.5.1(@babel/core@7.24.4): resolution: {integrity: sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==} @@ -23164,6 +22175,7 @@ packages: /base-64@0.1.0: resolution: {integrity: sha512-Y5gU45svrR5tI2Vt/X9GPd3L0HNIKzGu202EjxrXMpuc2V2CiKgemAbUUsqYmZJvPtCXoUKjNZwBJzsNScUbXA==} + dev: true /base-x@3.0.9: resolution: {integrity: sha512-H7JU6iBHTal1gp56aKoaa//YUxEaAOUiydvrV/pILqIHXTtqxSkATOnDA2u+jZ/61sD+L/412+7kzXRtWukhpQ==} @@ -23874,6 +22886,7 @@ packages: no-case: 3.0.4 tslib: 2.6.2 upper-case-first: 2.0.2 + dev: true /cardinal@2.1.1: resolution: {integrity: sha512-JSr5eOgoEymtYHBjNWyjrMqet9Am2miJhlfKNdqLp6zoeAh0KN5dRAcxlecj5mAJrmQomgiOBj35xHLrFjqBpw==} @@ -23988,6 +23001,7 @@ packages: title-case: 3.0.3 upper-case: 2.0.2 upper-case-first: 2.0.2 + dev: true /change-case-all@1.0.15: resolution: {integrity: sha512-3+GIFhk3sNuvFAJKU46o26OdzudQlPNBCu1ZQi3cMeMHhty1bhDxu2WrEilVNYaGvqUtR1VSigFcJOiS13dRhQ==} @@ -24002,6 +23016,7 @@ packages: title-case: 3.0.3 upper-case: 2.0.2 upper-case-first: 2.0.2 + dev: true /change-case@4.1.2: resolution: {integrity: sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==} @@ -24018,6 +23033,7 @@ packages: sentence-case: 3.0.4 snake-case: 3.0.4 tslib: 2.6.2 + dev: true /char-regex@1.0.2: resolution: {integrity: sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==} @@ -24723,6 +23739,7 @@ packages: no-case: 3.0.4 tslib: 2.6.2 upper-case: 2.0.2 + dev: true /content-disposition@0.5.2: resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==} @@ -24908,6 +23925,7 @@ packages: parse-json: 5.2.0 path-type: 4.0.0 typescript: 5.2.2 + dev: true /cosmjs-types@0.8.0: resolution: {integrity: sha512-Q2Mj95Fl0PYMWEhA2LuGEIhipF7mQwd9gTQ85DdP9jjjopeoGaDxvmPa5nakNzsq7FnO1DMTatXTAx6bxMH7Lg==} @@ -24983,25 +24001,6 @@ packages: - supports-color - ts-node - /create-jest@29.7.0(@types/node@20.12.7): - resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - dependencies: - '@jest/types': 29.6.3 - chalk: 4.1.2 - exit: 0.1.2 - graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.12.7) - jest-util: 29.7.0 - prompts: 2.4.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - dev: true - /create-require@1.1.1: resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} @@ -25044,6 +24043,7 @@ packages: engines: {node: '>=16.0.0'} dependencies: tslib: 2.6.2 + dev: true /cross-spawn@5.1.0: resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} @@ -25699,6 +24699,7 @@ packages: /dataloader@2.2.2: resolution: {integrity: sha512-8YnDaaf7N3k/q5HnTJVuzSyLETjoZjVmHc4AeKAzOvKHEFQKcn64OKBfzHYtE9zGjctNM7V9I0MfnUVLpi7M5g==} + dev: true /date-fns@2.29.3: resolution: {integrity: sha512-dDCnyH2WnnKusqvZZ6+jA1O51Ibt8ZMRNkDZdyAyK4YfbDwa/cEmuztzG5pk6hqlp9aSBPYcjOlktquahGwGeA==} @@ -25720,6 +24721,7 @@ packages: /dayjs@1.11.7: resolution: {integrity: sha512-+Yw9U6YO5TQohxLcIkrXBeY73WP3ejHWVvx8XCk3gxvQDCTEmS48ZrSZCKciI7Bhl/uCMyxYtE9UqRILmFphkQ==} + dev: true /dayjs@1.11.9: resolution: {integrity: sha512-QvzAURSbQ0pKdIye2txOzNaHmxtUBXerpY0FJsFXUMKbIZeFm5ht1LS/jFsrncjnmtv8HsG0W2g6c0zUjZWmpA==} @@ -26076,6 +25078,7 @@ packages: /dependency-graph@0.11.0: resolution: {integrity: sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==} engines: {node: '>= 0.6.0'} + dev: true /dependency-tree@10.0.9: resolution: {integrity: sha512-dwc59FRIsht+HfnTVM0BCjJaEWxdq2YAvEDy4/Hn6CwS3CBWMtFnL3aZGAkQn3XCYxk/YcTDE4jX2Q7bFTwCjA==} @@ -26361,6 +25364,7 @@ packages: dependencies: asap: 2.0.6 lodash.clone: 4.5.0 + dev: true /docker-modem@1.0.9: resolution: {integrity: sha512-lVjqCSCIAUDZPAZIeyM125HXfNvOmYYInciphNrLrylUtKyW66meAjSPXWchKVzoIYZx69TPnAepVSSkeawoIw==} @@ -26680,10 +25684,12 @@ packages: /dset@3.1.2: resolution: {integrity: sha512-g/M9sqy3oHe477Ar4voQxWtaPIFw1jTdKZuomOjhCcBx9nHUNn0pu6NopuFFrTh/TRZIKEj+76vLWFu9BNKk+Q==} engines: {node: '>=4'} + dev: true /dset@3.1.3: resolution: {integrity: sha512-20TuZZHCEZ2O71q9/+8BwKwZ0QtD9D8ObhrihJPr+vLLYlSuAU3/zL4cSlgbfeoGHTjCSJBa7NGcrF9/Bx/WJQ==} engines: {node: '>=4'} + dev: true /duplexer3@0.1.5: resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==} @@ -29329,6 +28335,7 @@ packages: /extract-files@11.0.0: resolution: {integrity: sha512-FuoE1qtbJ4bBVvv94CC7s0oTnKUGvQs+Rjf1L2SJFfS+HTVVjhPFtehPdQ0JiGPqVNfSSZvL5yzHHQq2Z4WNhQ==} engines: {node: ^12.20 || >= 14.13} + dev: true /extract-zip@1.7.0: resolution: {integrity: sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==} @@ -29451,6 +28458,7 @@ packages: /fbjs-css-vars@1.0.2: resolution: {integrity: sha512-b2XGFAFdWZWg0phtAWLHCk836A1Xann+I+Dgd3Gk64MHKZO44FfoD1KxyvbSh0qZsIoXQGGlVztIY+oitJPpRQ==} + dev: true /fbjs@3.0.5: resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==} @@ -29464,6 +28472,7 @@ packages: ua-parser-js: 1.0.35 transitivePeerDependencies: - encoding + dev: true /fd-slicer@1.1.0: resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} @@ -29480,23 +28489,6 @@ packages: resolution: {integrity: sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==} dev: true - /fets@0.1.5: - resolution: {integrity: sha512-mL/ya591WOgCP1yBBPbp8E37nynj8QQF6iQCUVl0aHDL80BZ9SOL4BcKBy0dnKdC+clnnAkMm05KB9hsj4m4jQ==} - dependencies: - '@ardatan/fast-json-stringify': 0.0.6(ajv-formats@2.1.1)(ajv@8.12.0) - '@whatwg-node/cookie-store': 0.0.1 - '@whatwg-node/fetch': 0.8.4 - '@whatwg-node/server': 0.7.7 - ajv: 8.12.0 - ajv-formats: 2.1.1(ajv@8.12.0) - hotscript: 1.0.13 - json-schema-to-ts: 2.9.2 - openapi-types: 12.1.3 - tslib: 2.6.2 - zod: 3.21.4 - zod-to-json-schema: 3.21.4(zod@3.21.4) - dev: false - /fewcha-plugin-wallet-adapter@0.1.3: resolution: {integrity: sha512-Ek59XhrkjVN+Yj1eBNI/SLGLgo9Sn1LVh8uDKgBaNix7nNAAJrgo2CoPCk/L595TSoO5FJtkBFdlnvRPAGJlAQ==} dependencies: @@ -29821,6 +28813,7 @@ packages: /foreach@2.0.6: resolution: {integrity: sha512-k6GAGDyqLe9JaebCsFCoudPPWfihKu8pylYXRlqP1J7ms39iPoTtk2fviNglIeQEwdh0bQeKJ01ZPyuyQvKzwg==} + dev: true /foreground-child@2.0.0: resolution: {integrity: sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==} @@ -30655,6 +29648,7 @@ packages: graphql: 16.6.0 dependencies: graphql: 16.6.0 + dev: true /graphql-request@7.0.1(graphql@16.6.0): resolution: {integrity: sha512-hfGBZF6o6lC3C0th+aTMOFP6p8Ev+ydXn4PUlT8rvqPDUFCbaynXszjBCyu0saZIP3VGbJ67GpxW8UGK+tphSw==} @@ -30679,6 +29673,7 @@ packages: dependencies: graphql: 16.6.0 tslib: 2.6.2 + dev: true /graphql-ws@5.11.2(graphql@16.6.0): resolution: {integrity: sha512-4EiZ3/UXYcjm+xFGP544/yW1+DVI8ZpKASFbzrV5EDTFWJp0ZvLl4Dy2fSZAzz9imKp5pZMIcjB0x/H69Pv/6w==} @@ -30689,15 +29684,6 @@ packages: graphql: 16.6.0 dev: true - /graphql-ws@5.12.1(graphql@16.6.0): - resolution: {integrity: sha512-umt4f5NnMK46ChM2coO36PTFhHouBrK9stWWBczERguwYrGnPNxJ9dimU6IyOBfOkC6Izhkg4H8+F51W/8CYDg==} - engines: {node: '>=10'} - peerDependencies: - graphql: 16.6.0 - dependencies: - graphql: 16.6.0 - dev: false - /graphql-ws@5.14.0(graphql@16.6.0): resolution: {integrity: sha512-itrUTQZP/TgswR4GSSYuwWUzrE/w5GhbwM2GX3ic2U7aw33jgEsayfIlvaj7/GcIvZgNMzsPTrE5hqPuFUiE5g==} engines: {node: '>=10'} @@ -30705,6 +29691,7 @@ packages: graphql: 16.6.0 dependencies: graphql: 16.6.0 + dev: true /graphql-yoga@3.1.1(@types/node@20.10.0)(graphql@16.6.0): resolution: {integrity: sha512-XgqQM1IurPPsO0HU00evqhiHIta8oghJ/1bSkHOPbTZeGELqb0VV/j7ureGHz5S+vCvNHulzW+YuIfaaph00iQ==} @@ -30728,26 +29715,6 @@ packages: - encoding dev: true - /graphql-yoga@3.9.1(graphql@16.6.0): - resolution: {integrity: sha512-BB6EkN64VBTXWmf9Kym2OsVZFzBC0mAsQNo9eNB5xIr3t+x7qepQ34xW5A353NWol3Js3xpzxwIKFVF6l9VsPg==} - peerDependencies: - graphql: 16.6.0 - dependencies: - '@envelop/core': 3.0.6 - '@envelop/validation-cache': 5.1.3(@envelop/core@3.0.6)(graphql@16.6.0) - '@graphql-tools/executor': 0.0.18(graphql@16.6.0) - '@graphql-tools/schema': 9.0.19(graphql@16.6.0) - '@graphql-tools/utils': 9.2.1(graphql@16.6.0) - '@graphql-yoga/logger': 0.0.1 - '@graphql-yoga/subscription': 3.1.0 - '@whatwg-node/fetch': 0.8.4 - '@whatwg-node/server': 0.7.7 - dset: 3.1.3 - graphql: 16.6.0 - lru-cache: 7.18.3 - tslib: 2.6.2 - dev: false - /graphql@16.6.0: resolution: {integrity: sha512-KPIBPDlW7NxrbT/eh4qPXz5FiFdL5UbaA0XUNz2Rp3Z3hqBSkbj0GVjwFDztsWVauZUWsbKHgMg++sk8UX0bkw==} engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} @@ -31106,10 +30073,6 @@ packages: readable-stream: 3.6.2 safe-buffer: 5.2.1 - /hash-it@6.0.0: - resolution: {integrity: sha512-KHzmSFx1KwyMPw0kXeeUD752q/Kfbzhy6dAZrjXV9kAIXGqzGvv8vhkUqj+2MGZldTo0IBpw6v7iWE7uxsvH0w==} - dev: false - /hash.js@1.1.3: resolution: {integrity: sha512-/UETyP0W22QILqS+6HowevwhEFJ3MBJnwTf75Qob9Wz9t0DPuisL8kW8YZMK62dHAKE1c1p+gY1TtOLY+USEHA==} dependencies: @@ -31155,6 +30118,7 @@ packages: dependencies: capital-case: 1.0.4 tslib: 2.6.2 + dev: true /heap@0.2.6: resolution: {integrity: sha512-MzzWcnfB1e4EG2vHi3dXHoBupmuXNZzx6pY6HldVS55JKKBoq3xOyzfSaZRkJp37HIhEYC78knabHff3zc4dQQ==} @@ -31231,10 +30195,6 @@ packages: unix-dgram: 2.0.6 dev: true - /hotscript@1.0.13: - resolution: {integrity: sha512-C++tTF1GqkGYecL+2S1wJTfoH6APGAsbb7PAWQ3iVIwgG/EFseAfEVOKFgAFq4yK3+6j1EjUD4UQ9dRJHX/sSQ==} - dev: false - /hpack.js@2.1.6: resolution: {integrity: sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==} dependencies: @@ -31672,6 +30632,7 @@ packages: /immutable@3.7.6: resolution: {integrity: sha512-AizQPcaofEtO11RZhPPHBOJRdo/20MKQF9mBLnVkBoyHi1/zXK8fzVdnEpSV9gxqtnh6Qomfp3F0xT5qP/vThw==} engines: {node: '>=0.8.0'} + dev: true /immutable@4.3.2: resolution: {integrity: sha512-oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA==} @@ -31693,6 +30654,7 @@ packages: /import-from@4.0.0: resolution: {integrity: sha512-P9J71vT5nLlDeV8FHs5nNxaLbrpfAV5cF5srvbZfpwpcJoM/xZR3hiv+q+SAnuSmuGbXMWud063iIMx/V/EWZQ==} engines: {node: '>=12.2'} + dev: true /import-local@3.1.0: resolution: {integrity: sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==} @@ -31852,6 +30814,7 @@ packages: dependencies: is-relative: 1.0.0 is-windows: 1.0.2 + dev: true /is-accessor-descriptor@1.0.1: resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==} @@ -32132,6 +31095,7 @@ packages: resolution: {integrity: sha512-bVcMJy4X5Og6VZfdOZstSexlEy20Sr0k/p/b2IlQJlfdKAQuMpiv5w2Ccxb8sKdRUNAG1PnHVHjFSdRDVS6NlQ==} dependencies: tslib: 2.6.2 + dev: true /is-map@2.0.2: resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} @@ -32253,6 +31217,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: is-unc-path: 1.0.0 + dev: true /is-root@2.1.0: resolution: {integrity: sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==} @@ -32324,6 +31289,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: unc-path-regex: 0.1.2 + dev: true /is-unicode-supported@0.1.0: resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} @@ -32333,6 +31299,7 @@ packages: resolution: {integrity: sha512-44pxmxAvnnAOwBg4tHPnkfvgjPwbc5QIsSstNU+YcJ1ovxVzCWpSGosPJOZh/a1tdl81fbgnLc9LLv+x2ywbPQ==} dependencies: tslib: 2.6.2 + dev: true /is-url-superb@4.0.0: resolution: {integrity: sha512-GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA==} @@ -32439,6 +31406,7 @@ packages: ws: '*' dependencies: ws: 8.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) + dev: true /isows@1.0.3(ws@8.13.0): resolution: {integrity: sha512-2cKei4vlmg2cxEjm3wVSqn8pcoRF/LX/wpifuuNquFO4SQmPwarClT+SUCA2lt+l581tTeZIPIZuIDo2jWN1fg==} @@ -32706,34 +31674,6 @@ packages: - supports-color - ts-node - /jest-cli@29.7.0(@types/node@20.12.7): - resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} - hasBin: true - peerDependencies: - node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0 - peerDependenciesMeta: - node-notifier: - optional: true - dependencies: - '@jest/core': 29.7.0 - '@jest/test-result': 29.7.0 - '@jest/types': 29.6.3 - chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.12.7) - exit: 0.1.2 - import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.12.7) - jest-util: 29.7.0 - jest-validate: 29.7.0 - yargs: 17.7.2 - transitivePeerDependencies: - - '@types/node' - - babel-plugin-macros - - supports-color - - ts-node - dev: true - /jest-config@27.5.1: resolution: {integrity: sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==} engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} @@ -33576,7 +32516,7 @@ packages: - utf-8-validate dev: false - /jest@29.3.1(@types/node@20.12.7): + /jest@29.3.1(@types/node@20.10.0): resolution: {integrity: sha512-6iWfL5DTT0Np6UYs/y5Niu7WIfNv/wRTtN5RSXt2DIEft3dx3zPuw/3WJQBCJfmEzvDiEKwoqMbGD9n49+qLSA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -33589,7 +32529,7 @@ packages: '@jest/core': 29.7.0 '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.12.7) + jest-cli: 29.7.0(@types/node@20.10.0) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -33870,6 +32810,7 @@ packages: /json-bigint-patch@0.0.8: resolution: {integrity: sha512-xa0LTQsyaq8awYyZyuUsporWisZFiyqzxGW8CKM3t7oouf0GFAKYJnqAm6e9NLNBQOCtOLvy614DEiRX/rPbnA==} + dev: true /json-bigint@1.0.0: resolution: {integrity: sha512-SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ==} @@ -33899,6 +32840,7 @@ packages: resolution: {integrity: sha512-vLWcKbOaXlO+jvRy4qNd+TI1QUPZzfJj1tpJ3vAXDych5XJf93ftpUKe5pKCrzyIIwgBJcOcCVRUfqQP25afBw==} dependencies: foreach: 2.0.6 + dev: true /json-rpc-engine@3.8.0: resolution: {integrity: sha512-6QNcvm2gFuuK4TKU1uwfH0Qd/cOSb9c1lls0gbnIhciktIUQJwz6NQNAW4B1KiGPenv7IKu97V222Yo1bNhGuA==} @@ -33940,15 +32882,6 @@ packages: '@types/json-schema': 7.0.12 ts-toolbelt: 6.15.5 - /json-schema-to-ts@2.9.2: - resolution: {integrity: sha512-h9WqLkTVpBbiaPb5OmeUpz/FBLS/kvIJw4oRCPiEisIu2WjMh+aai0QIY2LoOhRFx5r92taGLcerIrzxKBAP6g==} - engines: {node: '>=16'} - dependencies: - '@babel/runtime': 7.24.5 - '@types/json-schema': 7.0.12 - ts-algebra: 1.2.0 - dev: false - /json-schema-traverse@0.4.1: resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} @@ -33977,10 +32910,6 @@ packages: resolution: {integrity: sha512-5Nom9inkIMrtY992LMBBG1Zaekrc10JaRhyZgprwHBVMDtRgllTvzl0oBbg13wJsVZoSoFNNMaeIVQs0P04vsA==} dev: false - /json-with-bigint@2.1.2: - resolution: {integrity: sha512-ntVByusL5D7N3Cfka28x1KeKNwMDATNjvT0BBGb4JqErX/K/Cj5X0euRvMXFthFxWSvJzqtj5/3qMcKZLgvoIQ==} - dev: false - /json2mq@0.2.0: resolution: {integrity: sha512-SzoRg7ux5DWTII9J2qkrZrqV1gt+rTaoufMxEzXbS26Uid0NwaJd123HcoB80TgubEppxxIGdNxCx50fEoEWQA==} dependencies: @@ -34566,6 +33495,7 @@ packages: /lodash.clone@4.5.0: resolution: {integrity: sha512-GhrVeweiTD6uTmmn5hV/lzgCQhccwReIVRLHp7LT4SopOjqEZ5BbX8b5WWEtAKasjmy8hR7ZPwsYlxRCku5odg==} + dev: true /lodash.clonedeep@4.5.0: resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==} @@ -34591,6 +33521,7 @@ packages: /lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} + dev: true /lodash.groupby@4.6.0: resolution: {integrity: sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==} @@ -34642,6 +33573,7 @@ packages: /lodash.topath@4.5.2: resolution: {integrity: sha512-1/W4dM+35DwvE/iEd1M9ekewOSTlpFekhw9mhAtrwjVqUr83/ilQiyAvmg4tVX7Unkcfl1KC+i9WdaT4B6aQcg==} + dev: true /lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} @@ -34725,6 +33657,7 @@ packages: resolution: {integrity: sha512-EVm/rR94FJTZi3zefZ82fLWab+GX14LJN4HrWBcuo6Evmsl9hEfnqxgcHCKb9q+mNf6EVdsjx/qucYFIIB84pg==} dependencies: tslib: 2.6.2 + dev: true /lower-case@2.0.2: resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} @@ -34776,6 +33709,7 @@ packages: /lru-cache@7.18.3: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} + dev: true /lru-cache@9.1.2: resolution: {integrity: sha512-ERJq3FOzJTxBbFjZ7iDs+NiK4VI9Wz+RdrrAB8dio1oV+YvdPzUEE4QNiT2VD51DkIbCYRUUzCRkssXCHqSnKQ==} @@ -35248,18 +34182,6 @@ packages: '@types/node': 20.10.0 dev: true - /meros@1.3.0(@types/node@20.12.7): - resolution: {integrity: sha512-2BNGOimxEz5hmjUG2FwoxCt5HN7BXdaWyFqEwxPTrJzVdABtrL4TiHTcsWSFAxPQ/tOnEaQEJh3qWq71QRMY+w==} - engines: {node: '>=13'} - peerDependencies: - '@types/node': '>=13' - peerDependenciesMeta: - '@types/node': - optional: true - dependencies: - '@types/node': 20.12.7 - dev: false - /mersenne-twister@1.1.0: resolution: {integrity: sha512-mUYWsMKNrm4lfygPkL3OfGzOPTR2DBlTkBNHM//F6hGp8cLThY897crAlk3/Jo17LEOOjQUrNAx6DvgO77QJkA==} dev: false @@ -36694,6 +35616,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: remove-trailing-separator: 1.1.0 + dev: true /normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} @@ -36805,6 +35728,7 @@ packages: /object-inspect@1.10.3: resolution: {integrity: sha512-e5mCJlSH7poANfC8z8S9s9S2IN5/4Zb3aZ33f5s8YqoazCFzNLloLU8r5VCG+G7WoqLvAAZoVMcy3tp/3X0Plw==} + dev: true /object-inspect@1.12.3: resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} @@ -37047,10 +35971,6 @@ packages: is-wsl: 2.2.0 dev: false - /openapi-types@12.1.3: - resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} - dev: false - /opener@1.5.2: resolution: {integrity: sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==} hasBin: true @@ -37330,6 +36250,7 @@ packages: is-absolute: 1.0.0 map-cache: 0.2.2 path-root: 0.1.1 + dev: true /parse-headers@2.0.5: resolution: {integrity: sha512-ft3iAoLOB/MlwbNXgzy43SWGP6sQki2jQvAyBg/zDFAgr9bfNWZIUj42Kw2eJIl8kEi4PbgE6U1Zau/HwI75HA==} @@ -37460,6 +36381,7 @@ packages: dependencies: dot-case: 3.0.4 tslib: 2.6.2 + dev: true /path-exists@2.1.0: resolution: {integrity: sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==} @@ -37507,12 +36429,14 @@ packages: /path-root-regex@0.1.2: resolution: {integrity: sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==} engines: {node: '>=0.10.0'} + dev: true /path-root@0.1.1: resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==} engines: {node: '>=0.10.0'} dependencies: path-root-regex: 0.1.2 + dev: true /path-scurry@1.10.1: resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} @@ -38884,6 +37808,7 @@ packages: resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==} dependencies: asap: 2.0.6 + dev: true /promise@8.3.0: resolution: {integrity: sha512-rZPNPKTOYVNEEKFaq1HqTgOwZD+4/YHS5ukLzQCypkj+OkYx7iv0mA91lJlpPPZ8vMau3IIGj5Qlwrx+8iiSmg==} @@ -40100,9 +39025,11 @@ packages: base-64: 0.1.0 react-native: 0.73.7(@babel/core@7.24.4)(@babel/preset-env@7.24.4)(react@18.2.0) utf8: 3.0.0 + dev: true /react-native-path@0.0.5: resolution: {integrity: sha512-WJr256xBquk7X2O83QYWKqgLg43Zg3SrgjPc/kr0gCD2LoXA+2L72BW4cmstH12GbGeutqs/eXk3jgDQ2iCSvQ==} + dev: true /react-native-webview@11.26.1(react-native@0.73.7)(react@18.2.0): resolution: {integrity: sha512-hC7BkxOpf+z0UKhxFSFTPAM4shQzYmZHoELa6/8a/MspcjEP7ukYKpuSUTLDywQditT8yI9idfcKvfZDKQExGw==} @@ -40853,6 +39780,7 @@ packages: invariant: 2.2.4 transitivePeerDependencies: - encoding + dev: true /remark-external-links@8.0.0: resolution: {integrity: sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==} @@ -40929,6 +39857,7 @@ packages: /remove-trailing-separator@1.1.0: resolution: {integrity: sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==} + dev: true /renderkid@3.0.0: resolution: {integrity: sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==} @@ -41216,10 +40145,6 @@ packages: resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - /rfdc@1.3.0: - resolution: {integrity: sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==} - dev: false - /rimraf@2.6.3: resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==} hasBin: true @@ -41238,14 +40163,6 @@ packages: dependencies: glob: 7.2.3 - /rimraf@5.0.1: - resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==} - engines: {node: '>=14'} - hasBin: true - dependencies: - glob: 10.3.10 - dev: false - /ripemd160@2.0.2: resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==} dependencies: @@ -41732,6 +40649,7 @@ packages: no-case: 3.0.4 tslib: 2.6.2 upper-case-first: 2.0.2 + dev: true /serialijse@0.3.0: resolution: {integrity: sha512-7Aimo0Ci/o9o5J6b7FnSpIvA5boskWfpfJVnfAspXqJmfsPelIRh8e3AbZ6Vo1gbrd+B+1/GdZ7MZJLVoiABbA==} @@ -41996,6 +40914,7 @@ packages: /signedsource@1.0.0: resolution: {integrity: sha512-6+eerH9fEnNmi/hyM1DXcRK3pWdoMQtlkQ+ns0ntzunjKqp5i3sKCc80ym8Fib3iaYhdJUOPdhlJWj1tvge2Ww==} + dev: true /simple-concat@1.0.1: resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} @@ -42110,6 +41029,7 @@ packages: dependencies: dot-case: 3.0.4 tslib: 2.6.2 + dev: true /snapdragon-node@2.1.1: resolution: {integrity: sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==} @@ -42497,6 +41417,7 @@ packages: resolution: {integrity: sha512-dblb9Et4DAtiZ5YSUZHLl4XhH4uK80GhAZrVXdN4O2P4gQ40Wa5UIOPUHlA/nFd2PLblBZWUioLMMAVrgpoYcA==} dependencies: tslib: 2.6.2 + dev: true /sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} @@ -43174,6 +42095,7 @@ packages: resolution: {integrity: sha512-kc6S2YS/2yXbtkSMunBtKdah4VFETZ8Oh6ONSmSd9bRxhqTrtARUCBUiWXH3xVPpvR7tz2CSnkuXVE42EcGnMw==} dependencies: tslib: 2.6.2 + dev: true /swarm-js@0.1.42: resolution: {integrity: sha512-BV7c/dVlA3R6ya1lMlSSNPLYrntt0LUq4YMgy3iwpCIc6rZnS5W2wUoctarZ5pXlpKtxDDf9hNziEkcfrxdhqQ==} @@ -43729,6 +42651,7 @@ packages: /tiny-lru@8.0.2: resolution: {integrity: sha512-ApGvZ6vVvTNdsmt676grvCkUCGwzG9IqXma5Z07xJgiC5L7akUMof5U8G2JTI9Rz/ovtVhJBlY6mNhEvtjzOIg==} engines: {node: '>=6'} + dev: true /tiny-warning@1.0.3: resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==} @@ -43752,6 +42675,7 @@ packages: resolution: {integrity: sha512-e1zGYRvbffpcHIrnuqT0Dh+gEJtDaxDSoG4JAIpq4oDFyooziLBIiYQv0GBT4FUAnUop5uZ1hiIAj7oAF6sOCA==} dependencies: tslib: 2.6.2 + dev: true /titleize@3.0.0: resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} @@ -43926,10 +42850,6 @@ packages: resolution: {integrity: sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==} dev: false - /ts-algebra@1.2.0: - resolution: {integrity: sha512-kMuJJd8B2N/swCvIvn1hIFcIOrLGbWl9m/J6O3kHx9VRaevh00nvgjPiEGaRee7DRaAczMYR2uwWvXU22VFltw==} - dev: false - /ts-api-utils@1.0.3(typescript@5.2.2): resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} engines: {node: '>=16.13.0'} @@ -44087,38 +43007,6 @@ packages: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 - /ts-node@10.9.2(@swc/core@1.4.2)(@types/node@20.12.7)(typescript@5.2.2): - resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} - hasBin: true - peerDependencies: - '@swc/core': '>=1.2.50' - '@swc/wasm': '>=1.2.50' - '@types/node': '*' - typescript: 5.2.2 - peerDependenciesMeta: - '@swc/core': - optional: true - '@swc/wasm': - optional: true - dependencies: - '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.4.2(@swc/helpers@0.5.6) - '@tsconfig/node10': 1.0.9 - '@tsconfig/node12': 1.0.11 - '@tsconfig/node14': 1.0.3 - '@tsconfig/node16': 1.0.4 - '@types/node': 20.12.7 - acorn: 8.10.0 - acorn-walk: 8.2.0 - arg: 4.1.3 - create-require: 1.1.1 - diff: 4.0.2 - make-error: 1.3.6 - typescript: 5.2.2 - v8-compile-cache-lib: 3.0.1 - yn: 3.1.1 - dev: false - /ts-node@10.9.2(@types/node@20.10.0)(typescript@5.2.2): resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} hasBin: true @@ -44193,6 +43081,7 @@ packages: json5: 2.2.3 minimist: 1.2.8 strip-bom: 3.0.0 + dev: true /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} @@ -44206,13 +43095,11 @@ packages: /tslib@2.4.1: resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} - - /tslib@2.5.0: - resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} - dev: false + dev: true /tslib@2.5.3: resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==} + dev: true /tslib@2.6.1: resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} @@ -44587,6 +43474,7 @@ packages: /ua-parser-js@1.0.35: resolution: {integrity: sha512-fKnGuqmTBnIE+/KXSzCn4db8RTigUzw1AN0DmdU6hJovUTbYJKyqj+8Mt1c4VfRDnOVJnENmfYkIPZ946UrSAA==} + dev: true /ufo@1.2.0: resolution: {integrity: sha512-RsPyTbqORDNDxqAdQPQBpgqhWle1VcTSou/FraClYlHf6TZnQcGslpLcAphNR+sQW4q5lLWLbOsRlh9j24baQg==} @@ -44631,6 +43519,7 @@ packages: /unc-path-regex@0.1.2: resolution: {integrity: sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==} engines: {node: '>=0.10.0'} + dev: true /uncrypto@0.1.3: resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} @@ -44886,6 +43775,7 @@ packages: engines: {node: '>=0.10.0'} dependencies: normalize-path: 2.1.1 + dev: true /unorm@1.6.0: resolution: {integrity: sha512-b2/KCUlYZUeA7JFUuRJZPUtr4gZvBh7tavtv4fvk4+KV9pfGiR6CQAQAWl49ZpR3ts2dk4FYkP7EIgDJoiOLDA==} @@ -45020,11 +43910,13 @@ packages: resolution: {integrity: sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==} dependencies: tslib: 2.6.2 + dev: true /upper-case@2.0.2: resolution: {integrity: sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==} dependencies: tslib: 2.6.2 + dev: true /uqr@0.1.2: resolution: {integrity: sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==} @@ -45289,6 +44181,7 @@ packages: /value-or-promise@1.0.12: resolution: {integrity: sha512-Z6Uz+TYwEqE7ZN50gwn+1LCVo9ZVrpxRPOhOLnncYkY1ZzOYtrX8Fwf/rFktZ8R5mJms6EZf5TqNOMeZmnPq9Q==} engines: {node: '>=12'} + dev: true /varint@5.0.2: resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==} @@ -46252,7 +45145,6 @@ packages: /web3-provider-engine@14.2.1: resolution: {integrity: sha512-iSv31h2qXkr9vrL6UZDm4leZMc32SjWJFGOp/D92JXfcEboCqraZyuExDkpxKw8ziTufXieNM7LSXNHzszYdJw==} - deprecated: 'This package has been deprecated, see the README for details: https://github.com/MetaMask/web3-provider-engine' dependencies: async: 2.6.4 backoff: 2.5.0 @@ -47596,14 +46488,6 @@ packages: requiresBuild: true optional: true - /zod-to-json-schema@3.21.4(zod@3.21.4): - resolution: {integrity: sha512-fjUZh4nQ1s6HMccgIeE0VP4QG/YRGPmyjO9sAh890aQKPEk3nqbfUXhMFaC+Dr5KvYBm8BCyvfpZf2jY9aGSsw==} - peerDependencies: - zod: ^3.21.4 - dependencies: - zod: 3.21.4 - dev: false - /zod@3.21.4: resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} diff --git a/turbo.json b/turbo.json index a8652fd94a..6ecadb8b2b 100644 --- a/turbo.json +++ b/turbo.json @@ -36,6 +36,7 @@ "TOKEN_LIST_PR_WEBHOOK_URL", "OCTOKIT_KEY", "NEXT_PUBLIC_STRAPI_API_URL", + "SUSHI_GRAPH_KEY", "NEXT_PUBLIC_SUSHI_GRAPH_KEY" ] }, From e74e9467169675ed0316b897c263677e59a27d48 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sun, 9 Jun 2024 13:14:26 +0000 Subject: [PATCH 075/119] fix: serialization issues, src account --- apps/evm/src/app/layout.tsx | 4 ++-- apps/evm/src/app/providers.tsx | 4 ++-- apps/evm/src/lib/serialization.ts | 12 ++++++++++-- packages/steer-sdk/src/fetchers/getBalanceOf.ts | 3 ++- packages/steer-sdk/src/fetchers/getTotalSupply.ts | 3 ++- .../steer-sdk/src/fetchers/getVaultMaxTickChange.ts | 3 ++- packages/steer-sdk/src/fetchers/getVaultPosition.ts | 3 ++- packages/steer-sdk/src/fetchers/getVaultReserves.ts | 3 ++- 8 files changed, 24 insertions(+), 11 deletions(-) diff --git a/apps/evm/src/app/layout.tsx b/apps/evm/src/app/layout.tsx index 2ac42b985b..71cda0565d 100644 --- a/apps/evm/src/app/layout.tsx +++ b/apps/evm/src/app/layout.tsx @@ -1,5 +1,7 @@ import '@sushiswap/ui/index.css' +import '../lib/serialization' + import type { Metadata } from 'next' import { Inter, Roboto_Mono } from 'next/font/google' import React from 'react' @@ -10,8 +12,6 @@ import { getWagmiInitialState } from 'src/lib/wagmi/config' import { Providers } from './providers' import { Trackers } from './trackers' -import '../lib/serialization' - const inter = Inter({ subsets: ['latin'], display: 'swap', diff --git a/apps/evm/src/app/providers.tsx b/apps/evm/src/app/providers.tsx index 1c4e225a6c..c4d4b1beec 100644 --- a/apps/evm/src/app/providers.tsx +++ b/apps/evm/src/app/providers.tsx @@ -1,13 +1,13 @@ 'use client' +import '../lib/serialization' + import { State } from 'wagmi' import { WagmiStoreVersionCheck } from 'src/lib/wagmi/components/wagmi-store-version-check' import { QueryClientProvider } from '../providers/query-client-provider' import { WagmiConfig } from '../providers/wagmi-provider' -import '../lib/serialization' - export function Providers({ children, initialWagmiState, diff --git a/apps/evm/src/lib/serialization.ts b/apps/evm/src/lib/serialization.ts index 7f9ee028dd..b945587acc 100644 --- a/apps/evm/src/lib/serialization.ts +++ b/apps/evm/src/lib/serialization.ts @@ -19,8 +19,16 @@ const parse = JSON.parse JSON.parse = (text: string, reviver?: (key: any, value: any) => any) => { return parse.bind(this)(text, (key, value_) => { let value = value_ - if (value?.__type === 'bigint') value = BigInt(value.value) - return reviver?.(key, value) ?? value + + if (value?.__type === 'bigint') { + value = BigInt(value.value) + } + + if (reviver) { + return reviver(key, value) + } + + return value }) } diff --git a/packages/steer-sdk/src/fetchers/getBalanceOf.ts b/packages/steer-sdk/src/fetchers/getBalanceOf.ts index bee216f2f3..0cd1b7622a 100644 --- a/packages/steer-sdk/src/fetchers/getBalanceOf.ts +++ b/packages/steer-sdk/src/fetchers/getBalanceOf.ts @@ -1,6 +1,6 @@ import { erc20Abi } from 'sushi/abi' import { getChainIdAddressFromId } from 'sushi/format' -import type { Address, PublicClient } from 'viem' +import { type Address, type PublicClient, zeroAddress } from 'viem' interface GetBalanceOfsContracts { account: Address @@ -18,6 +18,7 @@ export function getBalanceOfsContracts({ abi: erc20Abi, chainId, address, + account: zeroAddress, args: [account] as const, functionName: 'balanceOf' as const, } diff --git a/packages/steer-sdk/src/fetchers/getTotalSupply.ts b/packages/steer-sdk/src/fetchers/getTotalSupply.ts index bda5470076..71149dc3a0 100644 --- a/packages/steer-sdk/src/fetchers/getTotalSupply.ts +++ b/packages/steer-sdk/src/fetchers/getTotalSupply.ts @@ -1,6 +1,6 @@ import { erc20Abi } from 'sushi/abi' import { getChainIdAddressFromId } from 'sushi/format' -import type { PublicClient } from 'viem' +import { zeroAddress, type PublicClient } from 'viem' interface GetTotalSuppliesContracts { vaultIds: string[] @@ -16,6 +16,7 @@ export function getTotalSuppliesContracts({ abi: erc20Abi, chainId, address, + account: zeroAddress, functionName: 'totalSupply' as const, } }) diff --git a/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts b/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts index 092bb89cb2..f364e6fb14 100644 --- a/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts +++ b/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts @@ -1,5 +1,5 @@ import { getChainIdAddressFromId } from 'sushi/format' -import type { PublicClient } from 'viem' +import { zeroAddress, type PublicClient } from 'viem' import { steerMultiPositionManager } from '../abi/steerMultiPositionManager.js' @@ -21,6 +21,7 @@ export async function getVaultsMaxTickChanges({ abi: steerMultiPositionManager, chainId, address, + account: zeroAddress, functionName: 'maxTickChange' as const, } }), diff --git a/packages/steer-sdk/src/fetchers/getVaultPosition.ts b/packages/steer-sdk/src/fetchers/getVaultPosition.ts index 3109971f92..1fc64ff48b 100644 --- a/packages/steer-sdk/src/fetchers/getVaultPosition.ts +++ b/packages/steer-sdk/src/fetchers/getVaultPosition.ts @@ -1,5 +1,5 @@ import { getChainIdAddressFromId } from 'sushi/format' -import type { PublicClient } from 'viem' +import { type PublicClient, zeroAddress } from 'viem' import { steerMultiPositionManager } from '../abi/steerMultiPositionManager.js' @@ -15,6 +15,7 @@ export function getVaultPositionsContracts({ return { abi: steerMultiPositionManager, + account: zeroAddress, chainId, address, functionName: 'getPositions' as const, diff --git a/packages/steer-sdk/src/fetchers/getVaultReserves.ts b/packages/steer-sdk/src/fetchers/getVaultReserves.ts index d8476d1a67..39bde8701a 100644 --- a/packages/steer-sdk/src/fetchers/getVaultReserves.ts +++ b/packages/steer-sdk/src/fetchers/getVaultReserves.ts @@ -1,5 +1,5 @@ import { getChainIdAddressFromId } from 'sushi/format' -import type { PublicClient } from 'viem' +import { type PublicClient, zeroAddress } from 'viem' import { steerPeripheryAbi } from '../abi/steerPeripheryAbi' import { STEER_PERIPHERY_ADDRESS, isSteerChainId } from '../constants' @@ -20,6 +20,7 @@ export function getVaultsReservesContracts({ return { abi: steerPeripheryAbi, address: steerPeriphery, + account: zeroAddress, chainId, args: [address] as const, functionName: 'vaultBalancesByAddressWithFees' as const, From 0de9048028eb832dce19c7cf7dd22dcaf81fe78f Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Sun, 9 Jun 2024 13:18:25 +0000 Subject: [PATCH 076/119] chore: format --- apis/extractor/package.json | 2 +- apis/router/package.json | 2 +- .../lib/hooks/api/useSushiV2UserPositions.ts | 3 +- .../wagmi/hooks/master-chef/use-rewarder.ts | 42 +++++++++---------- apps/evm/src/ui/pool/PositionsTable.tsx | 2 +- jobs/pool/src/pools.ts | 7 ++-- .../client/src/api/pools/unindexedPool.ts | 2 +- packages/graph-client-new/scripts/t.ts | 2 +- .../sushi-v2/transforms/pool-v2-to-base.ts | 2 +- .../src/config/subgraph/subgraphs/blocks.ts | 4 +- 10 files changed, 34 insertions(+), 34 deletions(-) diff --git a/apis/extractor/package.json b/apis/extractor/package.json index 0e87f0b0dd..418b911107 100644 --- a/apis/extractor/package.json +++ b/apis/extractor/package.json @@ -31,8 +31,8 @@ "@sentry/node": "7.110.0", "@sushiswap/extractor": "workspace:*", "@wagmi/core": "2.10.2", - "cors": "2.8.5", "compression": "^1.7.4", + "cors": "2.8.5", "dotenv": "16.3.1", "express": "4.18.2", "sushi": "workspace:*", diff --git a/apis/router/package.json b/apis/router/package.json index f69469070f..cbeabb9f16 100644 --- a/apis/router/package.json +++ b/apis/router/package.json @@ -32,8 +32,8 @@ "@sentry/node": "7.110.0", "@sushiswap/extractor": "workspace:*", "@wagmi/core": "2.10.2", - "cors": "2.8.5", "compression": "^1.7.4", + "cors": "2.8.5", "dotenv": "16.3.1", "express": "4.18.2", "sushi": "workspace:*", diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts index 551170ccd7..3eed2fade4 100644 --- a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -24,8 +24,7 @@ export function useSushiV2UserPositions( return useQuery({ queryKey: [getUserPositionsWithPoolsUrl(args)], queryFn: () => - fetch(getUserPositionsWithPoolsUrl(args)) - .then((data) => data.json()), + fetch(getUserPositionsWithPoolsUrl(args)).then((data) => data.json()), enabled: Boolean(shouldFetch && args.id), }) } diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts index 5e85328837..a3188afc74 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts @@ -161,28 +161,28 @@ export const useRewarder = ({ // ! POSSIBLY BROKE IT, TEST return data.reduce<(Amount | undefined)[]>( - (acc, result, index) => { - if (typeof result === 'bigint') { - acc.push( - result - ? Amount.fromRawAmount(rewardTokens[index], result) - : undefined, - ) - } else if (typeof result !== 'undefined') { - acc.push( - ...result[1].map((rewardAmount, index2: number) => { - return Amount.fromRawAmount( - rewardTokens[index + index2], - rewardAmount, - ) - }), - ) - } + (acc, result, index) => { + if (typeof result === 'bigint') { + acc.push( + result + ? Amount.fromRawAmount(rewardTokens[index], result) + : undefined, + ) + } else if (typeof result !== 'undefined') { + acc.push( + ...result[1].map((rewardAmount, index2: number) => { + return Amount.fromRawAmount( + rewardTokens[index + index2], + rewardAmount, + ) + }), + ) + } - return acc - }, - [], - ) + return acc + }, + [], + ) }, [data, rewardTokens]), ...rest, } diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index c26c67d6b4..a2b7a934ac 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -60,7 +60,7 @@ export const PositionsTable: FC = ({ const chainFiltered = searchFiltered.filter((el) => chainIds.includes(el.pool.chainId as (typeof chainIds)[number]), ) - console.log({chainFiltered}) + console.log({ chainFiltered }) return chainFiltered }, [positions, tokenSymbols, chainIds]) diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 8485f2f883..688a96bd5a 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -106,9 +106,10 @@ export async function execute(protocol: Protocol) { await Promise.all(batches) const batchEndTime = performance.now() console.log( - `LOAD: ${protocol} - Batch completed in ${((batchEndTime - batchStartTime) / 1000).toFixed( - 1, - )} seconds. `, + `LOAD: ${protocol} - Batch completed in ${( + (batchEndTime - batchStartTime) / + 1000 + ).toFixed(1)} seconds. `, ) } const endTime = performance.now() diff --git a/packages/client/src/api/pools/unindexedPool.ts b/packages/client/src/api/pools/unindexedPool.ts index a820db4550..d81b1744bf 100644 --- a/packages/client/src/api/pools/unindexedPool.ts +++ b/packages/client/src/api/pools/unindexedPool.ts @@ -251,6 +251,6 @@ export async function getUnindexedPool( totalApr1w: 0, totalApr1m: 0, token0Price: 0, - token1Price: 0 + token1Price: 0, } as Awaited> } diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client-new/scripts/t.ts index 3de4492da2..e18f44fdda 100644 --- a/packages/graph-client-new/scripts/t.ts +++ b/packages/graph-client-new/scripts/t.ts @@ -2,4 +2,4 @@ import { getSushiV3Pools } from '../src/subgraphs/sushi-v3/queries/pools' const a = await getSushiV3Pools({ chainId: 8453, first: Infinity }) -console.log("v3 pools:", a.length) +console.log('v3 pools:', a.length) diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts index 54b8867ac0..c7ac8aa876 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts @@ -78,6 +78,6 @@ export function transformPoolV2ToBase( }, token0Price: Number(pool.token0Price), token1Price: Number(pool.token1Price), - txCount: Number(pool.txCount) + txCount: Number(pool.txCount), } } diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts index 0e46489fba..4564a1432d 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -19,10 +19,10 @@ export const BLOCKS_SUBGRAPH_URL: Partial> = { [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, + [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, From 3f5031597a054e1029f4ee4eba6a69c696e7164a Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sun, 9 Jun 2024 19:40:12 +0200 Subject: [PATCH 077/119] fix(jobs/pool): use correct ids and addresses --- jobs/pool/src/pools.ts | 46 ++++++++++++++++-------------------------- 1 file changed, 17 insertions(+), 29 deletions(-) diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 8485f2f883..730966cbd6 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -678,8 +678,8 @@ function transformV2(queryResult: { pools: queryResult.data.currentPools.map((pair) => { tokens.push( Prisma.validator()({ - id: queryResult.chainId.toString().concat(':').concat(pair.token0.id), - address: pair.token0.id, + id: pair.token0.id.toLowerCase(), + address: pair.token0.address.toLowerCase(), chainId: queryResult.chainId, name: pair.token0.name, symbol: pair.token0.symbol, @@ -688,8 +688,8 @@ function transformV2(queryResult: { ) tokens.push( Prisma.validator()({ - id: queryResult.chainId.toString().concat(':').concat(pair.token1.id), - address: pair.token1.id, + id: pair.token1.id.toLowerCase(), + address: pair.token1.address.toLowerCase(), chainId: queryResult.chainId, name: pair.token1.name, symbol: pair.token1.symbol, @@ -814,21 +814,15 @@ function transformV2(queryResult: { : 0 return { - id: queryResult.chainId.toString().concat(':').concat(pair.id), - address: pair.id, + id: pair.id.toLowerCase(), + address: pair.address.toLowerCase(), name: name, protocol, chainId: queryResult.chainId, swapFee: 0.003, twapEnabled: true, - token0Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token0.id.toLowerCase()), - token1Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token1.id.toLowerCase()), + token0Id: pair.token0.id.toLowerCase(), + token1Id: pair.token1.id.toLowerCase(), reserve0: pair.reserve0.toString(), reserve1: pair.reserve1.toString(), totalSupply: pair.liquidity.toString(), @@ -838,7 +832,7 @@ function transformV2(queryResult: { feesUSD: currentFeesUSD, volumeNative: 0, // DOES NOT EXIST IN V2 anymore token0Price: pair.token0Price.toString(), - token1Price: pair.token0Price.toString(), + token1Price: pair.token1Price.toString(), ...(oneHourData.get(pair.id)?.feesUSD && { fees1h }), ...(oneDayData.get(pair.id)?.feesUSD && { fees1d }), ...(oneWeekData.get(pair.id)?.feesUSD && { fees1w }), @@ -967,8 +961,8 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { const poolsTransformed = queryResult.data.currentPools.map((pair) => { tokens.push( Prisma.validator()({ - id: queryResult.chainId.toString().concat(':').concat(pair.token0.id), - address: pair.token0.id, + id: pair.token0.id.toLowerCase(), + address: pair.token0.address.toLowerCase(), chainId: queryResult.chainId, name: pair.token0.name, symbol: pair.token0.symbol, @@ -977,8 +971,8 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { ) tokens.push( Prisma.validator()({ - id: queryResult.chainId.toString().concat(':').concat(pair.token1.id), - address: pair.token1.id, + id: pair.token1.id.toLowerCase(), + address: pair.token1.address.toLowerCase(), chainId: queryResult.chainId, name: pair.token1.name, symbol: pair.token1.symbol, @@ -1102,21 +1096,15 @@ function transformV3(queryResult: { chainId: ChainId; data: V3Data }) { : 0 return { - id: queryResult.chainId.toString().concat(':').concat(pair.id), - address: pair.id, + id: pair.id.toLowerCase(), + address: pair.address.toLowerCase(), name: name, protocol: Protocol.SUSHISWAP_V3, chainId: queryResult.chainId, swapFee, twapEnabled: true, - token0Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token0.id.toLowerCase()), - token1Id: queryResult.chainId - .toString() - .concat(':') - .concat(pair.token1.id.toLowerCase()), + token0Id: pair.token0.id.toLowerCase(), + token1Id: pair.token1.id.toLowerCase(), reserve0: pair.reserve0.toString(), reserve1: pair.reserve1.toString(), totalSupply: pair.liquidity.toString(), From c11cd277541d61591589225ba841209367b830ea Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sun, 9 Jun 2024 19:59:58 +0200 Subject: [PATCH 078/119] fix(jobs/pool): fix /incentives bugs --- jobs/pool/src/incentives.ts | 2 +- jobs/pool/src/lib/common/pairs.ts | 4 ++-- jobs/pool/src/lib/common/tokens.ts | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/jobs/pool/src/incentives.ts b/jobs/pool/src/incentives.ts index 33af2edc5d..c8a03a2796 100644 --- a/jobs/pool/src/incentives.ts +++ b/jobs/pool/src/incentives.ts @@ -26,7 +26,7 @@ export async function execute() { const { incentivesToCreate, incentivesToUpdate, tokens } = await transform(farms) - // // LOAD + // LOAD await createTokens(tokens) await mergeIncentives(incentivesToCreate, incentivesToUpdate) await updatePoolsWithIncentivesTotalApr() diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index d741c041a7..90f90be9cc 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -19,10 +19,10 @@ async function getExchangePairs( chainId, first: ids.length, where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, - }) + }, { retries: 10 }) return pairs.map((pair) => { return { - id: pair.id, + id: pair.address.toLowerCase(), totalSupply: divBigIntToNumber(BigInt(pair.liquidity), 18), liquidityUSD: pair.liquidityUSD, type: 'Legacy', diff --git a/jobs/pool/src/lib/common/tokens.ts b/jobs/pool/src/lib/common/tokens.ts index 41a75f8120..797b4fc09b 100644 --- a/jobs/pool/src/lib/common/tokens.ts +++ b/jobs/pool/src/lib/common/tokens.ts @@ -25,12 +25,12 @@ const getExchangeTokens = async ( getSushiV2Tokens({ chainId, where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, - }), + }, { retries: 3 }), getTokenPrices({ chainId }), ]) return tokens.map((token) => ({ - id: token.id, + id: token.address.toLowerCase(), symbol: token.symbol, name: token.name, decimals: Number(token.decimals), From abcc344d91a8688691decb2e8c53209c5e2dca14 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sun, 9 Jun 2024 18:05:57 +0000 Subject: [PATCH 079/119] chore: format --- jobs/pool/src/lib/common/pairs.ts | 13 ++++++++----- jobs/pool/src/lib/common/tokens.ts | 11 +++++++---- 2 files changed, 15 insertions(+), 9 deletions(-) diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index 90f90be9cc..a037535db9 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -15,11 +15,14 @@ async function getExchangePairs( ids: string[], chainId: SushiSwapV2ChainId, ): Promise { - const pairs = await getSushiV2Pools({ - chainId, - first: ids.length, - where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, - }, { retries: 10 }) + const pairs = await getSushiV2Pools( + { + chainId, + first: ids.length, + where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, + }, + { retries: 10 }, + ) return pairs.map((pair) => { return { id: pair.address.toLowerCase(), diff --git a/jobs/pool/src/lib/common/tokens.ts b/jobs/pool/src/lib/common/tokens.ts index 797b4fc09b..21e60d9ed8 100644 --- a/jobs/pool/src/lib/common/tokens.ts +++ b/jobs/pool/src/lib/common/tokens.ts @@ -22,10 +22,13 @@ const getExchangeTokens = async ( chainId: SushiSwapV2ChainId, ): Promise => { const [tokens, tokenPrices] = await Promise.all([ - getSushiV2Tokens({ - chainId, - where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, - }, { retries: 3 }), + getSushiV2Tokens( + { + chainId, + where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, + }, + { retries: 3 }, + ), getTokenPrices({ chainId }), ]) From 62e51d7ec0682738a2db4ffa13fc4095339aaa10 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Sun, 9 Jun 2024 20:47:11 +0200 Subject: [PATCH 080/119] fix: steer query/job --- jobs/pool/src/steer.ts | 25 ++-- .../src/subgraphs/steer/queries/vaults.ts | 133 ++++++++++-------- 2 files changed, 91 insertions(+), 67 deletions(-) diff --git a/jobs/pool/src/steer.ts b/jobs/pool/src/steer.ts index e4891dfe0f..22bd7a914e 100644 --- a/jobs/pool/src/steer.ts +++ b/jobs/pool/src/steer.ts @@ -73,7 +73,11 @@ async function extract() { const result = await Promise.allSettled( STEER_SUPPORTED_CHAIN_IDS.map((chainId) => extractChain(chainId).catch((e) => { - console.log('Steer: Extract failed for chain', chainName[chainId]) + console.log( + 'Steer: Extract failed for chain', + chainName[chainId], + e.message, + ) throw e }), ), @@ -86,10 +90,13 @@ async function extractChain(chainId: SteerChainId) { const { getPools } = await import('@sushiswap/client') const prices = await getTokenPrices({ chainId }) - const vaults = await getSteerVaults({ - chainId, - first: Infinity, - }) + const vaults = await getSteerVaults( + { + chainId, + first: Infinity, + }, + { retries: 3 }, + ) const poolIds = vaults .filter((vault) => !!vault.pool) @@ -215,7 +222,7 @@ const StrategyTypes: Record = { function transform( chainsWithVaults: Awaited>, ): Prisma.SteerVaultCreateManyInput[] { - return chainsWithVaults.flatMap(({ chainId, vaults }) => + const vaults = chainsWithVaults.flatMap(({ chainId, vaults }) => vaults.flatMap((vault) => { // ! Missing strategies will be ignored const strategyType = vault?.payload?.strategyConfigData.name @@ -248,13 +255,13 @@ function transform( apr1m: vault.apr1m || 0, apr1y: 0, - token0Id: `${chainId}:${vault.token0}`.toLowerCase(), + token0Id: vault.token0.id.toLowerCase(), reserve0: String(vault.reserve0), reserve0USD: vault.reserve0USD, fees0: String(vault.fees0), fees0USD: vault.fees0USD, - token1Id: `${chainId}:${vault.token1}`.toLowerCase(), + token1Id: vault.token1.id.toLowerCase(), reserve1: String(vault.reserve1), reserve1USD: vault.reserve1USD, fees1: String(vault.fees1), @@ -288,4 +295,6 @@ function transform( } satisfies Prisma.SteerVaultCreateManyInput }), ) + console.log(`TRANSFORM: ${vaults.length} vaults`) + return vaults } diff --git a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts index bf4a1b630f..ab4f067f9d 100644 --- a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts +++ b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts @@ -4,7 +4,12 @@ import { STEER_SUBGRAPH_URL, type SteerChainId } from '@sushiswap/steer-sdk' import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' -import { type Address, SushiSwapProtocol, getIdFromChainIdAddress } from 'sushi' +import { + type Address, + SushiSwapProtocol, + getIdFromChainIdAddress, + TickMath, +} from 'sushi' import type { SushiSwapV3ChainId } from 'sushi/config' import { graphql } from '../graphql' @@ -28,14 +33,11 @@ export const SteerVaultsQuery = graphql(` admin } - lowestPosition: positions(first: 1, orderBy: lowerTick, orderDirection: asc) { - lowerTick - } - uppestPosition: positions(first: 1, orderBy: upperTick, orderDirection: desc) { - upperTick - } + positions(first: 1000) { + lowerTick + upperTick + } - createdAt token0 token1 @@ -55,7 +57,6 @@ export async function getSteerVaults( options?: RequestOptions, ) { const url = `https://${STEER_SUBGRAPH_URL[chainId]}` - const result = await requestPaged({ chainId, url, @@ -64,57 +65,71 @@ export async function getSteerVaults( options, }) - return result.vaults.map((vault) => ({ - id: getIdFromChainIdAddress(chainId, vault.id as Address), - chainId: chainId as SteerChainId, - address: vault.id as Address, - - feeTier: Number(vault.feeTier), - - reserve0: BigInt(vault.reserve0), - reserve1: BigInt(vault.reserve1), - - pool: { - id: getIdFromChainIdAddress(chainId, vault.pool as Address), - address: vault.pool as Address, - chainId: chainId as SushiSwapV3ChainId, - protocol: SushiSwapProtocol.SUSHISWAP_V3, - }, - - state: vault.state, - payloadIpfs: vault.payloadIpfs, - strategyToken: { - id: vault.strategyToken.id, - name: vault.strategyToken.name, - creator: { - id: vault.strategyToken.creator.id, + return result.vaults.map((vault) => { + const lowTicks = vault.positions.flatMap((position) => position.lowerTick) + const lowestTick = Math.max( + lowTicks.reduce( + (lowest, tick) => (Number(tick) < lowest ? Number(tick) : lowest), + Number(lowTicks[0] || 0), + ), + TickMath.MIN_TICK, + ) + + const highTicks = vault.positions.flatMap((position) => position.upperTick) + const highestTick = Math.min( + highTicks.reduce( + (highest, tick) => (Number(tick) > highest ? Number(tick) : highest), + Number(highTicks[0] || 0), + ), + TickMath.MAX_TICK, + ) + return { + id: getIdFromChainIdAddress(chainId, vault.id as Address), + chainId: chainId as SteerChainId, + address: vault.id as Address, + + feeTier: Number(vault.feeTier), + + reserve0: BigInt(vault.reserve0), + reserve1: BigInt(vault.reserve1), + + pool: { + id: getIdFromChainIdAddress(chainId, vault.pool as Address), + address: vault.pool as Address, + chainId: chainId as SushiSwapV3ChainId, + protocol: SushiSwapProtocol.SUSHISWAP_V3, + }, + + state: vault.state, + payloadIpfs: vault.payloadIpfs, + strategyToken: { + id: vault.strategyToken.id, + name: vault.strategyToken.name, + creator: { + id: vault.strategyToken.creator.id, + }, + admin: vault.strategyToken.admin, }, - admin: vault.strategyToken.admin, - }, - - lowerTick: vault.lowestPosition[0] - ? BigInt(vault.lowestPosition[0]?.lowerTick[0] || 0) - : null, - upperTick: vault.uppestPosition[0] - ? BigInt(vault.uppestPosition[0]?.upperTick[0] || 0) - : null, - - token0: { - id: getIdFromChainIdAddress(chainId, vault.token0 as Address), - chainId: chainId as SushiSwapV3ChainId, - address: vault.token0 as Address, - }, - token1: { - id: getIdFromChainIdAddress(chainId, vault.token1 as Address), - chainId: chainId as SushiSwapV3ChainId, - address: vault.token1 as Address, - }, - - fees0: BigInt(vault.fees0), - fees1: BigInt(vault.fees1), - - manager: vault.manager, - })) + lowerTick: lowestTick ? BigInt(lowestTick || 0) : null, + upperTick: highestTick ? BigInt(highestTick || 0) : null, + + token0: { + id: getIdFromChainIdAddress(chainId, vault.token0 as Address), + chainId: chainId as SushiSwapV3ChainId, + address: vault.token0 as Address, + }, + token1: { + id: getIdFromChainIdAddress(chainId, vault.token1 as Address), + chainId: chainId as SushiSwapV3ChainId, + address: vault.token1 as Address, + }, + + fees0: BigInt(vault.fees0), + fees1: BigInt(vault.fees1), + + manager: vault.manager, + } + }) } export type SteerVaults = Awaited> From 6d9dc32a211998b87a2a8eeda29fec3c38ee4d54 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 10:09:16 +0200 Subject: [PATCH 081/119] fix(jobs/pool): typo drpc env --- jobs/pool/cloudbuild.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jobs/pool/cloudbuild.yaml b/jobs/pool/cloudbuild.yaml index 479bd3da6b..e1b83a59e7 100644 --- a/jobs/pool/cloudbuild.yaml +++ b/jobs/pool/cloudbuild.yaml @@ -20,7 +20,7 @@ steps: env: - 'DATABASE_URL=${_DATABASE_URL}' - 'SUSHI_GRAPH_KEY=${_SUSHI_GRAPH_KEY}' - - 'DPRC_ID=${_DPRC_ID}' + - 'DRPC_ID=${_DRPC_ID}' args: - run - deploy @@ -31,7 +31,7 @@ steps: - us-central1 - '--set-env-vars=DATABASE_URL=$_DATABASE_URL' - '--set-env-vars=SUSHI_GRAPH_KEY=$_SUSHI_GRAPH_KEY' - - '--set-env-vars=DPRC_ID=$_DPRC_ID' + - '--set-env-vars=DRPC_ID=$_DRPC_ID' id: Update Cloud Run Service entrypoint: gcloud timeout: 3600s From 99ec16c2b706067284dadd301152a5845bb0e05c Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 12:43:21 +0200 Subject: [PATCH 082/119] feat(packages/sushi): update subgraph configs to use deployment ids instead of subgraph ids --- packages/sushi/src/config/subgraph/hosts.ts | 3 +- .../src/config/subgraph/subgraphs/bentobox.ts | 26 ++++++------- .../src/config/subgraph/subgraphs/blocks.ts | 38 +++++++++---------- .../src/config/subgraph/subgraphs/furo.ts | 24 ++++++------ .../subgraph/subgraphs/master-chef-v1.ts | 4 +- .../subgraph/subgraphs/master-chef-v2.ts | 4 +- .../config/subgraph/subgraphs/mini-chef.ts | 28 +++++++------- .../config/subgraph/subgraphs/sushi-bar.ts | 5 ++- .../config/subgraph/subgraphs/sushiswap-v2.ts | 38 +++++++++---------- .../config/subgraph/subgraphs/sushiswap-v3.ts | 32 ++++++++-------- 10 files changed, 102 insertions(+), 100 deletions(-) diff --git a/packages/sushi/src/config/subgraph/hosts.ts b/packages/sushi/src/config/subgraph/hosts.ts index 89f59e7b56..5ce4587f2a 100644 --- a/packages/sushi/src/config/subgraph/hosts.ts +++ b/packages/sushi/src/config/subgraph/hosts.ts @@ -30,4 +30,5 @@ const DECENTRALIZED_NETWORK_KEY = process.env['SUSHI_GRAPH_KEY'] || process.env['NEXT_PUBLIC_SUSHI_GRAPH_KEY'] || SUSHI_DOMAIN_RESTRICTED_API_KEY -export const DECENTRALIZED_NETWORK_HOST = `gateway-arbitrum.network.thegraph.com/api/${DECENTRALIZED_NETWORK_KEY}/subgraphs/id` +export const DECENTRALIZED_HOST_BY_SUBGRAPH_ID = `gateway-arbitrum.network.thegraph.com/api/${DECENTRALIZED_NETWORK_KEY}/subgraphs/id` +export const DECENTRALIZED_HOST_BY_DEPLOYMENT_ID = `gateway-arbitrum.network.thegraph.com/api/${DECENTRALIZED_NETWORK_KEY}/deployments/id` diff --git a/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts b/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts index 761ea5d5a3..b2751b2e34 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/bentobox.ts @@ -1,22 +1,22 @@ import { ChainId } from '../../../chain/index.js' import { BentoBoxChainId } from '../../bentobox.js' import { - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, SUSHI_DEDICATED_GOLDSKY_HOST, } from '../hosts.js' export const BENTOBOX_SUBGRAPH_URL: Partial> = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/8HYeoDopVqqvb5RJEV2TtSzFsouYPz8cownnG3mbhiGy`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/6kJg5kFoQY8B8Ge2hqswHMqZDcmsR1TLUUz7AKov69fy`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/EhYaJodF1WQjKgxx1ZC63goeCwp5swD4AQRdaKXBm2xk`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/BggyE3r5snDsjx19jgZcbiBH7cbtrkpjvyGLFHMdXekd`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/AWD9Ca7KNZg7grfWosKTRqZTjPrJVgS5P5b37pDpN4CT`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/9jn9kA6SKCNxXQSqb93zZPLdLaru4FeZBwLNWAK4nfZ2`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/JZFyMKR4jnsFQ58q7dT6nbXenTzNgE176zTejc6Gf8Z`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/5DwkvjxPGVFFaWEMM68g1yztDdhCgJEYAxS6FuhkajzR`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/73XEV6UQKpPSJn68WZBAYTwALcZtFJkFYn58ZoZUb7tn`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/7wA5gqWNP4E1dPWBsTYvz5eQSDbtYDFgyU5BGdHr2UKp`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8b4Hy4Kn7jCNAf9JFrqHb24LsqmapG4HrAsCrwdJf9Nu`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/Bioj7N3Rf2n7iBq9PVoaMie3WiuzPze9NMi7aSye7LFc`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRLTuSKgS8GbioD9vfAmn9dUUm5uVPptUdFMS5LG4yzAA`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmYyjZXjfUaqe359vzGgxe2ju1qJPiQM68pG2ipfNL8F7F`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmY9S4TVSMX6bcjVnvRhntMUS6ppdv23ktNhLQkWm5PaVn`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmdnkNhFRuDcshaD6RXTf4zSqHntUtnHGr2krUtbzfF9F7`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRqdvBLBWVw2JtnDj2JAtZnVkTt4DvGBuiFtphvVYAe9U`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmT3VpmrGD7bbPGT6aKqaK4yg3u73ryhgp5kEM2BVTEWFj`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmdCukF6WX46K2Lgy4QJR8AyKQByc2NCRAUAyRxm9uA4uZ`, + [ChainId.CELO]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZC9vYPNAdew2U4qAYXCjBGwfrpwvxKRm3RE2njwzwgxE`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmXU45n3iB7AKQWLwAMs2MaGkkMjqF7sF8QW32NxQKFLx9`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZG6wYBro1aU5Sg2V3J3n6omQcJCAZsmnMoJNp68Em4s2`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmbQQsmYqNoVdWG9fpffvcqeg6zvwDjUxE3T65AB1Lmmha`, + [ChainId.HARMONY]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmcHkq534QMFaGWsPqkeKeuGLwZwVKK7KRqZE3cKxaEojH`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/bentobox-bttc/gn`, } diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts index 4564a1432d..4902b76b0b 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -1,7 +1,7 @@ import { ChainId } from '../../../chain/index.js' import { CORE_HOST, - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, FILECOIN_HOST, HAQQ_HOST, METIS_0XGRAPH_HOST, @@ -13,35 +13,35 @@ import { } from '../hosts.js' export const BLOCKS_SUBGRAPH_URL: Partial> = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/236pc6mnPH2EdGJxR5wunibyGsagq1JsSx5e2hx5tdoE`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/8ZD25Ff1efVjqHkGmPdgn7oevwe3FkSB7WFygyNEsAco`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/HHpzhtyGrTNSbhtjgZyYG4aG538fKpV21dsCBshLnKDg`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/5o79YFzT5h4v7oq5w2eHUytYj24Z96P1HzZbK25gw2Ug`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/3drjZDpA9hAuYGA19ttEkhW432mVe2XHy5YarBDVYHbz`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/9dSPXfKXaqYpoGAPXx96LyDF1VYR8PiT6HA7HRKEGRdS`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/8QXwz5CYpYRwgqzU9TyofQKDUXWYDVLZ5es49zr2dLPY`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/97YH6dMhGcXoTvVwDAML6GxYm9hBh7PCz6WPscUkrFhv`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/68pKaceT6yxMc2EgBbptM1rVksY5NDKu2AsTQaP4z3ER`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/5jebsN6RBioFWQX7LP2N8r55nL4QPAyeKc6GzDA1Pt5H`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/Qmc9SpuEmLpQEHMsS91gUn1ezxhMT6rZvtPmvJFcMFs4jf`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmSuECAqbS4rBjaiQxT6rDKGbXZrZf3pbaNoWaPybM8LPb`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmW4KMXwa16mqLtcZP6pNPu8od4WBcDTZ88Cer3NWJHarY`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmPkSqnWiEkJHHfBgo3n3RkXSKpJ5K1a3jYMXTgUrtiaBd`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmW23f8YMmvRaL97XScHWKtL2LJijJu52brHuXq73McrVA`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZhXTrZX9HTAzkHa4KYXffzzGBDMJhqSBkqKUDmhpay2o`, + [ChainId.HARMONY]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmXByYZwFH59hUWUuYqz6Kh62wxn1QUaW2Dw9YgyzxnPG8`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmcEuwgrisQJBiw17g67nR4o2zvMTXZKzBR436GeiEfRAu`, + [ChainId.CELO]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZVmmn6K9FLHXMT3KuFV754NyAXSLPidz9LCqabmRAQWd`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmUGLeBFVtYiSoHX1ZdvwDDFYANtrwpXNa2g3XobfrcHfc`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmahwQzHutiz9w9VJmfkDBtRrkyHJgxVDCGmP5KyL7n4py`, + [ChainId.FUSE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/Qmb5xV1EEk5uUr51mG3UrVxwqC4W3WGPEHV4bj69xRX6BX`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRd2AMHySTBE6y7UkvRm8vxuNmYqHHZ4G27J63JyWkt9h`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVie4YxCAuG5LPMbTgDNcop31BVsptbkCSKcCQXSg2XMh`, + [ChainId.BOBA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZyzP3zWmgt3duVgTX3ZveumhJQwiDnpJhQUJDx4pToM9`, + [ChainId.BASE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVvYAaZxH8NZTT7GP7rCWNa3c82MRNKxcqFUDTjrrT9Vm`, + [ChainId.LINEA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmbSc9Y7fLrp6xSceRuAdLcF3qASdP3iDFYWnBFSRPSABp`, + [ChainId.SCROLL]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmeiBVERaEaBvDeXvNhSbCXVq1PxsshdKua5Y6b8Bqnuzu`, // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/2gez4qhcz11TMFMKpFPDQe7ebFWm5gxUB6mvszhvztut`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/9JvasV5RyonCHn4bFR22VtsXGNuHsQCUiMJPQoGxqeVX`, // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/EiNGUdnwqk8yA4xVEu9nyTmfCyK7Cxj9xaFjYCKkHnzf`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/HsWM1oAXHGWdkH8bK98UrW38PvyPx6Q4waRow2LT8mcp`, [ChainId.KAVA]: `${WAGMI_KAVA_HOST}/sushiswap/blocks-kava`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/blocks-metis`, // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/5d1ZCJQCEqsfCqLRRU5iQ9ewg79tuNqZLPMkgUcpmLsD`, [ChainId.BOBA_BNB]: `${SUSHI_GOLDSKY_HOST}/blocks/boba-bnb/gn`, [ChainId.BTTC]: `${SUSHI_GOLDSKY_HOST}/blocks/bttc-mainnet/gn`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushiswap/blocks-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushiswap/blocks-core`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/GU5jJMiEHpomqddtbsXC3Avj3EweLHk6up1pvy2TCQQZ`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/4rj8wdVvkDGzj9w9UfT48zyXGQtLbULW4ygxDBG9Xza1`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/F4oYLjz8kVPFcY1iGc8S4rAaHnEZsUt6ixXSvFXACcGh`, [ChainId.FILECOIN]: `${FILECOIN_HOST}/sushiswap/blocks`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/blocks-haqq`, [ChainId.ZETACHAIN]: `${SUSHI_GOLDSKY_HOST}/blocks-zetachain/1.0.0/gn`, diff --git a/packages/sushi/src/config/subgraph/subgraphs/furo.ts b/packages/sushi/src/config/subgraph/subgraphs/furo.ts index 16b42e6ee5..6740c24cbf 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/furo.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/furo.ts @@ -2,24 +2,24 @@ import { ChainId } from '../../../chain/index.js' import { FuroChainId } from '../../furo.js' import { CORE_HOST, - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, HAQQ_HOST, SUSHI_DEDICATED_GOLDSKY_HOST, THUNDERCORE_HOST, } from '../hosts.js' export const FURO_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/D8vYJpKN5SEHUkUWKSuorsL6FRt7hAQMnywnC4e93ygf`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8eHhPeKDr646JH5KUBBcabAJzkWmLfu6pqBtpXQHa37F`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8LVoX3JPEVAak8T8GoEfdJudMoP2bsGwd9tszJxo3Rnx`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/2wBYezghRA3hEJLQB4njUZGDNxCdU3u2gsLP5yVvBqKk`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/E98zSR5UZBGBgQe2SSLZ5R6yj5GPqKDJcQJNDHTeV3cS`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/5ToxB5xubMh9osdEDeX98JBAyzUVwkReGXAT1CzQhZCB`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/9D9C3ppoDE1zuZk5adznngKomLYS8NnC9zxniSS8vzgH`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/HJxpcsmaPV3L6PsqGFBHLczeMnL7bEgmL1D65edGx8pf`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/9ZqdKjfu7o9dX1RThXHDV9EqMn5CTvgpsPKKbpANg8yC`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/8KnsmppMf9k6Qvyixxwmny7dYugTV7XT4htHTfyq3d69`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/4KsDNsyJjKX6bjwVNJQmJ7Dm3wovYXSX37UR39rNaMX4`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQLU8dEJcxYj7rVGbGWRYHrhKifbQKTtPRfKhHw1aszWh`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQV6TaRFgBdk4ykzpf6mfdWVB2GLVjkidJZ2YWctR2w2C`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmbBFHznvVVj5FHA32nHCJ3EEbGBFV7gbnEJ7MvcfJSWRg`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVQ9jq4bBgfGKzKBL1AjYFGTqLEAYqTPUbs9YienYewpf`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmUCx4QRvmDiP1fJaE8RQ72YkkXP9c62rckyhf9EPh87aj`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/Qmf7PkcBd251aKyxCcMPRBWKc76tZ8k1xmVMSZ5zKqoSbh`, + [ChainId.HARMONY]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/Qma2FYbCR7iBQmGaGN4oLMB5TtnBcN9bgTttYyt3vD6xXX`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmNwmGQw2vcK991B7MJCJgsZAS8Mt2fQZ41qrPMJFVKaAU`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmdChdTYcr6YgfKHw6FCUtJsfZBEQkvsoAkiRAs1GcGWMZ`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmajmWiw8tyhgJcGk69QiL2gEXqniM3PNPAaLjPh6dYfpf`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmT25bz8HV5173wbZ21vcMR76R34BW7Bix4fES9iibBKKW`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/furo-haqq`, [ChainId.CORE]: `${CORE_HOST}/sushi-subgraphs/furo-core`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-subgraphs/furo-thundercore`, diff --git a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts index 986eac7ace..80fd7baa3b 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v1.ts @@ -1,3 +1,3 @@ -import { DECENTRALIZED_NETWORK_HOST } from '../hosts.js' +import { DECENTRALIZED_HOST_BY_DEPLOYMENT_ID } from '../hosts.js' -export const MASTERCHEF_V1_SUBGRAPH_URL = `${DECENTRALIZED_NETWORK_HOST}/HoVZ6mXTx3dvoqaUwcJozuowz7xijzDLmfuBWLed6rqi` +export const MASTERCHEF_V1_SUBGRAPH_URL = `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQdLeKXfkgjE35QmBNTeEac4Fa4SvqYZ9wWJF43Nwv8KH` diff --git a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts index f1e4ae4820..a77f82f42c 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/master-chef-v2.ts @@ -1,3 +1,3 @@ -import { DECENTRALIZED_NETWORK_HOST } from '../hosts.js' +import { DECENTRALIZED_HOST_BY_DEPLOYMENT_ID } from '../hosts.js' -export const MASTERCHEF_V2_SUBGRAPH_URL = `${DECENTRALIZED_NETWORK_HOST}/FAa1YU79pPDUKj8vtkUPZGzCcPVS6Edg1md5LsRHSKWb` +export const MASTERCHEF_V2_SUBGRAPH_URL = `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmTbcaVrmr3VBKNhNjrqkhLo2WtPBA7Ana9eqj4PD216K1` diff --git a/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts b/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts index c00aa1249d..1a5a9b03b9 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/mini-chef.ts @@ -1,25 +1,25 @@ import { ChainId } from '../../../chain/index.js' import { MiniChefChainId } from '../../mini-chef.js' import { - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, METIS_0XGRAPH_HOST, SUSHI_DEDICATED_GOLDSKY_HOST, } from '../hosts.js' export const MINICHEF_SUBGRAPH_URL: Record = { - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/DaSTfQbRTQq63HYGuAWusisUj23PFuisbhxHkjRHknex`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/FhtxFSxNCjVGknieajtwEzjruGFhTcAW9tWuADQ3tzNK`, - // [ChainId.HARMONY]: `${GRAPH_HOST}/sushiswap/harmony-minichef`, // Broken, no fix has been deployed or migrated - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/9oRuyFt4J6nHFpL5kWfkp3yocjzmZo1D8hKjqyKNuix`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/Aodb24RhU4p1p6p4ooq1Rwu5aVXhULAvXEGg8QEaPBvg`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/ExyevfNrFJ7EhTK74MDJ823h6oKkqUpwnVP1h3EuN8oa`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/GdVirDDQ2fg43pjt2cZiH9Uar7bhGfySvm4jiQ9fVD4u`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/GJXdaT5S7BHvGNxJSLJsMH36tB4w3Z7eES6jSDJuqddg`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/35kjzcBhiTgS3LLrhRFFGVGRfapzQBDC2wEWydvG2jZc`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/8s62qVWURfEebmaYkxDBwHLmWn7qF1dyucX2Tj6n3YPj`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/5DVXnbAu4uqKLbczLeAErLsLyQdxoZ1BjvCn1buWyZf8`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/8M2Tyj1bVFp9paR9rcysn17V9Y1MbMgL9YEZQ5q4aSZH`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/CuaMtyA7JyzEf5mqsrWBwhdfLFfz1QU2js17R77wAyYB`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRGvRxvfNgVNU9QcTDj6XpASfA3HaYCGJiKqRmthGdjm2`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRjFd4SPZDpMdjkPQqgN9v4trWXpQoqikFrmqpBUMiTJY`, + // [ChainId.HARMONY]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/xx`,// NO FIX has been deployed yet + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmbcWZNLLCSmuQ474rYr4jCymN22jguT9hZtp4rZzA3T2w`, + [ChainId.CELO]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmPpECMB4vnHe2SpkLQCFp7dumWfXUekhZBbfVAEM64BjS`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmaZo8AP9HQPXrnVUP1outjfsb3xJW1PF9X6UHjzid1aYH`, + [ChainId.FUSE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmauqkgAJTjwfKDAvtY4siuPZF2oczg6jqWC9wMqw21yQH`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmajRCaeDeftPiNKndmqCRMknKLNC6sFXBREWX4HHyfzv8`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVeQLQJzy1T21UtKncpLs8nNjRczKz5sUT94h515QhwuJ`, + [ChainId.BOBA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZdYzMxLNHM5u8YjhoMdQUfNHDC4KxwBVAB3XAk9WSaui`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmcTYTs3DCbxF97gyo1tq54Vkd9YUDcSjPNUB1rRKBotrM`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmamfQF1cQMWgYVWM7vYq1yTL5fTrkr2ZYCAYR9rMsEWV5`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmfFsgEPtw6mCkaaLxk2e52E7G2KryTzn6R1eTYoL3Mj1c`, [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-kava/gn`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/minichef-metis`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/minichef-arbitrum-nova/gn`, diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts index 524ca4da32..e1ec951c42 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts @@ -1,2 +1,3 @@ -export const SUSHI_BAR_SUBGRAPH_URL = - 'api.thegraph.com/subgraphs/name/sushi-labs/xsushi' +import { DECENTRALIZED_HOST_BY_DEPLOYMENT_ID } from "../hosts"; + +export const SUSHI_BAR_SUBGRAPH_URL = `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmWisRwB5h2fWMUdGbxQEdqMvVWAiZB1BxsCdoqcsn2Cij` diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts index 172c30a469..6d0732c852 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v2.ts @@ -2,7 +2,7 @@ import { ChainId } from '../../../chain/index.js' import { SushiSwapV2ChainId } from '../../sushiswap-v2.js' import { CORE_HOST, - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, FILECOIN_HOST, HAQQ_HOST, METIS_0XGRAPH_HOST, @@ -13,24 +13,26 @@ import { } from '../hosts.js' export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/GyZ9MgVQkTWuXGMSd3LXESvpevE8S8aD3uktJh7kbVmc`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/5DpWu6oLUEwKYLcya5fJf3MW5CE6yEMnZ8iwekmTNAbV`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/8yBXBTMfdhsoE5QCf7KnoPmQb7QAWtRzESfYjiCjGEM9`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/24xqSifM5xPfGrW8MDwRhgaDsq7uaP2762fmxjyxJzot`, - [ChainId.CELO]: `${DECENTRALIZED_NETWORK_HOST}/8WcZLSs8QUSJptPbpBScoDafmp8E9whnSqYJc9TMyYFs`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/J7wEPt9nDHCno143dk6whAUesPyszxPqCDKhqDqWJHuz`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/FrcJbZ3j9GZ3vF8G9uVEFQZeTD8uiCc1A1eujtxYUwYH`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/7czeiia7ZXvsW45szX2w8EK1ZNgZWZET83zYCwE6JT9x`, - [ChainId.MOONBEAM]: `${DECENTRALIZED_NETWORK_HOST}/6MMVBsG9hgS8BzLZfPnU8KJdGiEFbd3CyNXVG6gQKCdQ`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/DuB755c1VYFSLLhq4b783ryPcvYdsvimGuZzBpFqoapX`, - [ChainId.HARMONY]: `${DECENTRALIZED_NETWORK_HOST}/3k9M7aZqeJXWLUogc2FSFBgXuxej2qstKSUNBXcPCcK5`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQ2h69a3vnE6N3TN7Ys9K1vpjYiJSi8fexnj1pWpRc6uY`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmfLnYXftuf2PNPoC3mMusey27KyJi4UUuY741Nz3vZQ3q`, + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmV5qTnwjz65z6TH63DYngLr1gj52KQ6Lr6m8aeNj6yxxb`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmUJcdUCSApCahz2ZtxEBwLqBX5YPfy3NNzHGUXyERAdmi`, + [ChainId.CELO]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmWX1tYofCvtw675s6ccE8ovWDkuikRBkkLk4PQpT79jRD`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVNMMgTVAJ5f3GSAASS5eYsGrcudmsCrXJyF9j5v9d5eC`, + [ChainId.FUSE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmRcpZhksXHJjkAf7Kk9ngGQteWUNAEJ1VH3jttivdN2ft`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmUwneRXVUqTsPEZqScQytg257Rij3nSApe4pdDAtuG4s4`, + [ChainId.MOONBEAM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmWZpwizHCefGY3vBUJhDhaVHPUgYE8oAAyBy1T5HATbMb`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmcRAdiUuYzZDauyM2q8FDucZaDVLgKPGsMyKn1ds4DXfm`, + [ChainId.HARMONY]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZkT9mzDf5YcbSti51BZGet7sKnNcYAjBBE9xQ3LWHqKC`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmdMmVsnaVRxQyunaXrG1oFrpcUFp8iV3TcpRa3hVYaPUD`, + [ChainId.BOBA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmSuZ3L62PyVC4RjYFikoYZhyDMGMkPNUArVMaj9G73Dxw`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmV4FT95YqNdbivbPmvjXRavdKu3FGkz41mjuqtvUvpRpc`, + [ChainId.BASE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQfYe5Ygg9A3mAiuBZYj5a64bDKLF4gF6sezfhgxKvb9y`, + [ChainId.SCROLL]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmecR8pDHLNaRGQtKxA1ZvSSyBh23haXPdYZppPzALQmzt`, + [ChainId.LINEA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmcrH1y6zx6wzTBL9cKVdA81fHkPzytcx5Gy1iVJLP1Vfw`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQLtMYbTvxDHqc5oFH75N2b4DL3Czdv2jSCo6bk4UwKyf`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-arbitrum-nova/gn`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/4KvWjKY89DefJ6mPMASCTUDAZ6dyHSu7osCNQqaaaY3y`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/9cssJAh4EyzEWqZySBFguiXyygwZZAGBE3ETsGetNUK`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/8obLTNcEuGMieUt6jmrDaQUhWyj2pys26ULeP3gFiGNv`, [ChainId.BOBA_BNB]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-0m/v2-boba-bnb/gn`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/7pXNLCc12pRM3bBPUAP9ZoEvkgUCjaBe9QC3DV9L2qzE`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/CiW3nquNZjKDoMfR4TbSpB4ox8Pq66FDxwSsohigSdxw`, [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-kava/gn`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v2-metis`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v2/v2-bttc/gn`, @@ -39,8 +41,6 @@ export const SUSHISWAP_V2_SUBGRAPH_URL: Record = { [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v2/v2-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushi-v2/v2-core`, [ChainId.HAQQ]: `${HAQQ_HOST}/sushi/v2-haqq`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/G4sRz1YAcEFYFewGLQ9bt76gQuP1oyuzhVSTvs9bj7qn`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/6QS4nmWq9Wv6WPQRk1F7RJnnKcAcUBhzaiF9ZHfkUcp4`, [ChainId.BLAST]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-blast/gn`, [ChainId.SKALE_EUROPA]: `${SKALE_HOST}/sushi/v2-skale-europa`, [ChainId.ROOTSTOCK]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushiswap/v2-rootstock/gn`, diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts index 092dde76b2..94b2afaf32 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/sushiswap-v3.ts @@ -2,7 +2,7 @@ import { ChainId } from '../../../chain/index.js' import { SushiSwapV3ChainId } from '../../sushiswap-v3.js' import { CORE_HOST, - DECENTRALIZED_NETWORK_HOST, + DECENTRALIZED_HOST_BY_DEPLOYMENT_ID, FILECOIN_HOST, HAQQ_HOST, METIS_0XGRAPH_HOST, @@ -13,24 +13,24 @@ import { } from '../hosts.js' export const SUSHISWAP_V3_SUBGRAPH_URL: Record = { + [ChainId.ARBITRUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmevuQAmgiou1UX7Z2BQf6RKdX1WunQjH8VtawhkzSLj4V`, + [ChainId.AVALANCHE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/Qmcdd4SGVwG9VY4itrXBnBPWBVsQvsxfzaib9bVny9C8jT`, + [ChainId.BSC]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmXsPN4TD4PUhT1ZWd5d1mdQPePFNMdJwUr6guSh1z9ZzA`, + [ChainId.BOBA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmVbYM6wz7XnH32QzQLNBwyzx7r1HNsFP6jfUi22NRvvJu`, + [ChainId.ETHEREUM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmSDPnHzyW8yfnuhB423ssVY5r4bQrr5C1rXT8qMroNgmv`, + [ChainId.FANTOM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmQXFxg4dCxMqcobGQAtsNe4ufnG1KmjSVgtEdtxvYo4Lf`, + [ChainId.FUSE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmakqW3KCpEXJGTSuyfXHGg6C8ppbrPdSqVXWj3Guor9zA`, + [ChainId.GNOSIS]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmS9uxga2rzpWyHKFATGYas6ntdHLpX7w45EKAatBTZJ25`, + [ChainId.MOONRIVER]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmStbnz4sErrK1jzaU5iKAutA1Q2w47EsgAoFbdCiequtZ`, + [ChainId.OPTIMISM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmbT6ZsxJEZKUrbzLrAWV5EnQfSKZeYtZ265mQUaB552vK`, + [ChainId.POLYGON]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmPbbjK9vtY69kSxMJRVLVz1dRzUBNwYbWTRYMiFzp9Tzm`, + [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmWH5ChjmF4Yp5Yhiaxczh5QwbG6HFSEi8bRwbKaUrJA6C`, + [ChainId.BASE]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmZ2R9ABG9ienaZdGyPLcDWDNDkG187RhXmh6fFuEtUaaS`, + [ChainId.LINEA]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmNZ9ePvxGRDHAEhb7cLsb3AvtCCPJ3qAwh1CDvDn39RMa`, + [ChainId.SCROLL]: `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmR6VP1qoF8nxhtMaGEg9VMmkaTDFqyeM8nJWkakP6nHes`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-arbitrum-nova/gn`, - [ChainId.ARBITRUM]: `${DECENTRALIZED_NETWORK_HOST}/96EYD64NqmnFxMELu2QLWB95gqCmA9N96ssYsZfFiYHg`, - [ChainId.AVALANCHE]: `${DECENTRALIZED_NETWORK_HOST}/4BxsTB5ADnYdgJgdmzyddmnDGCauctDia28uxB1hgTBE`, - [ChainId.BSC]: `${DECENTRALIZED_NETWORK_HOST}/FiJDXMFCBv88GP17g2TtPh8BcA8jZozn5WRW7hCN7cUT`, - [ChainId.BOBA]: `${DECENTRALIZED_NETWORK_HOST}/71VWMKCvsWRqrJouxmEQwSEMqqnqiiVYSxTZvzR8PHRx`, - [ChainId.ETHEREUM]: `${DECENTRALIZED_NETWORK_HOST}/5nnoU1nUFeWqtXgbpC54L9PWdpgo7Y9HYinR3uTMsfzs`, - [ChainId.FANTOM]: `${DECENTRALIZED_NETWORK_HOST}/4BzEvR229mwKjneCbJTDM8dsS3rjgoKcXt5C7J1DaUxK`, - [ChainId.FUSE]: `${DECENTRALIZED_NETWORK_HOST}/8P62wYTJvhd6Aas656hVYhsccsGo2ihrJShaEnCoLJRK`, - [ChainId.GNOSIS]: `${DECENTRALIZED_NETWORK_HOST}/GFvGfWBX47RNnvgwL6SjAAf2mrqrPxF91eA53F4eNegW`, - [ChainId.MOONRIVER]: `${DECENTRALIZED_NETWORK_HOST}/F46W9YVQXGism5iN9NZNhKm2DQCvjhr4u847rL1tRebS`, - [ChainId.OPTIMISM]: `${DECENTRALIZED_NETWORK_HOST}/Dr3FkshPgTMMDwxckz3oZdwLxaPcbzZuAbE92i6arYtJ`, - [ChainId.POLYGON]: `${DECENTRALIZED_NETWORK_HOST}/CqLnQY1d6DLcBYu7aZvGmt17LoNdTe4fDYnGbE2EgotR`, - [ChainId.POLYGON_ZKEVM]: `${DECENTRALIZED_NETWORK_HOST}/E2x2gmtYdm2HX3QXorUBY4KegfGu79Za6TEQYjVrx15c`, [ChainId.THUNDERCORE]: `${THUNDERCORE_HOST}/sushi-v3/v3-thundercore`, [ChainId.CORE]: `${CORE_HOST}/sushi-v3/v3-core-fix`, - [ChainId.BASE]: `${DECENTRALIZED_NETWORK_HOST}/Cz4Snpih41NNNPZcbj1gd3fYXPwFr5q92iWMoZjCarEb`, - [ChainId.LINEA]: `${DECENTRALIZED_NETWORK_HOST}/E2vqqvSzDdUiPP1r7PFnPKZQ34pAhNZjc6rEcdj3uE5t`, - [ChainId.SCROLL]: `${DECENTRALIZED_NETWORK_HOST}/5gyhoHx768oHn3GxsHsEc7oKFMPFg9AH8ud1dY8EirRc`, [ChainId.KAVA]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-kava/gn`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/v3-metis`, [ChainId.BTTC]: `${SUSHI_DEDICATED_GOLDSKY_HOST}/sushi-v3/v3-bttc/gn`, From 4faaafbf702ce6b2020751be3fe9c72a6598fe2e Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 10:44:33 +0000 Subject: [PATCH 083/119] chore: format --- packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts index e1ec951c42..f9101562c2 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/sushi-bar.ts @@ -1,3 +1,3 @@ -import { DECENTRALIZED_HOST_BY_DEPLOYMENT_ID } from "../hosts"; +import { DECENTRALIZED_HOST_BY_DEPLOYMENT_ID } from '../hosts' export const SUSHI_BAR_SUBGRAPH_URL = `${DECENTRALIZED_HOST_BY_DEPLOYMENT_ID}/QmWisRwB5h2fWMUdGbxQEdqMvVWAiZB1BxsCdoqcsn2Cij` From d0423495d9b86940cdd832be8a87c2640094ca1a Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 14:10:26 +0200 Subject: [PATCH 084/119] fix(jobs/pool): reduce retries from 10 to 3 --- jobs/pool/src/lib/common/pairs.ts | 2 +- jobs/pool/src/pools.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index a037535db9..aa5a8bef9b 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -21,7 +21,7 @@ async function getExchangePairs( first: ids.length, where: { id_in: ids.map((id) => id.toLowerCase() as Address) }, }, - { retries: 10 }, + { retries: 3 }, ) return pairs.map((pair) => { return { diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index c9cd37ec44..24b4509bdf 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -64,7 +64,7 @@ enum AprTimeRange { } const SUBGRAPH_REQUEST_OPTIONS = { - retries: 10, // should probably be a reasonable timeout as well? + retries: 3, // should probably be a reasonable timeout as well? } export async function execute(protocol: Protocol) { From bcdf359a5c241a86348f0cc005ae345199ba2537 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 14:19:08 +0200 Subject: [PATCH 085/119] chore: lint --- apps/evm/src/ui/pool/PoolPageV2.tsx | 3 +-- apps/evm/src/ui/pool/PositionsTab.tsx | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolPageV2.tsx b/apps/evm/src/ui/pool/PoolPageV2.tsx index fecea8221b..bc8409694e 100644 --- a/apps/evm/src/ui/pool/PoolPageV2.tsx +++ b/apps/evm/src/ui/pool/PoolPageV2.tsx @@ -1,10 +1,10 @@ import { Container, Separator } from '@sushiswap/ui' import { ManageV2LiquidityCard } from 'src/ui/pool/ManageV2LiquidityCard' import { PoolTransactionsV2 } from 'src/ui/pool/PoolTransactionsV2' -import { ChainId } from 'sushi/chain' import { getPool } from '@sushiswap/client' import { FC } from 'react' +import { SushiSwapV2ChainId } from 'sushi/config' import { PoolChartV2 } from './PoolChartV2' import { PoolComposition } from './PoolComposition' import { PoolMyRewards } from './PoolMyRewards' @@ -15,7 +15,6 @@ import { PoolPositionStakedProvider } from './PoolPositionStakedProvider' import { PoolRewards } from './PoolRewards' import { PoolStats } from './PoolStats' import { UnknownTokenAlert } from './UnknownTokenAlert' -import { SushiSwapV2ChainId } from 'sushi/config' interface PoolPageV2 { pool: Awaited> diff --git a/apps/evm/src/ui/pool/PositionsTab.tsx b/apps/evm/src/ui/pool/PositionsTab.tsx index e1879f3a9a..3c466694f6 100644 --- a/apps/evm/src/ui/pool/PositionsTab.tsx +++ b/apps/evm/src/ui/pool/PositionsTab.tsx @@ -1,4 +1,3 @@ -import { Protocol } from '@sushiswap/client' import { Select, SelectContent, From 6f6abb321eaf5571d0ba6b4cbbd62140cf85d6a8 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 16:02:19 +0200 Subject: [PATCH 086/119] fix(jobs/pool): catch merkl errors --- jobs/pool/src/merkl-incentives.ts | 73 +++++++++++++++++++------------ 1 file changed, 44 insertions(+), 29 deletions(-) diff --git a/jobs/pool/src/merkl-incentives.ts b/jobs/pool/src/merkl-incentives.ts index f0362d8966..28abb6a724 100644 --- a/jobs/pool/src/merkl-incentives.ts +++ b/jobs/pool/src/merkl-incentives.ts @@ -314,42 +314,57 @@ async function fetchTokenFromContract(token: { chainId: ChainId address: Address }): Promise { - const tokenFromContract = await fetchToken(config, { - chainId: token.chainId, - address: token.address as Address, - }) - const errorResponse: TokenError = { - status: 'error', - chainId: token.chainId, - token: { - id: token.chainId - .toString() - .concat(':') - .concat(token.address.toLowerCase()), - }, - } - - if (tokenFromContract) { - const response: TokenSuccess = { - status: 'ok', + try { + const tokenFromContract = await fetchToken(config, { + chainId: token.chainId, + address: token.address, + }) + const errorResponse: TokenError = { + status: 'error', chainId: token.chainId, token: { id: token.chainId .toString() .concat(':') - .concat(tokenFromContract.address.toLowerCase()), - chainId: token.chainId, - address: tokenFromContract.address.toString(), - name: tokenFromContract.name!, - symbol: tokenFromContract.symbol!, - decimals: tokenFromContract.decimals, + .concat(token.address.toLowerCase()), }, } - if (!isTestToken(response)) { - return response - } else { - return errorResponse + + if (tokenFromContract?.decimals) { + const response: TokenSuccess = { + status: 'ok', + chainId: token.chainId, + token: { + id: token.chainId + .toString() + .concat(':') + .concat(tokenFromContract.address.toLowerCase()), + chainId: token.chainId, + address: tokenFromContract.address.toString(), + name: tokenFromContract.name!, + symbol: tokenFromContract.symbol!, + decimals: tokenFromContract.decimals, + }, + } + if (!isTestToken(response)) { + return response + } else { + return errorResponse + } } + return errorResponse + } catch (e: any) { + const id = token.chainId + .toString() + .concat(':') + .concat(token.address.toLowerCase()) + console.error(`Error fetching token ${id}, error: ${e.message}`) + return { + status: 'error', + chainId: token.chainId, + token: { + id, + }, + } as TokenError } - return errorResponse } From 58b8e0521528475ea0a311d350dcd4e0bf62e48b Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 14:03:44 +0000 Subject: [PATCH 087/119] chore: format --- jobs/pool/src/merkl-incentives.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jobs/pool/src/merkl-incentives.ts b/jobs/pool/src/merkl-incentives.ts index 28abb6a724..a649139002 100644 --- a/jobs/pool/src/merkl-incentives.ts +++ b/jobs/pool/src/merkl-incentives.ts @@ -355,9 +355,9 @@ async function fetchTokenFromContract(token: { return errorResponse } catch (e: any) { const id = token.chainId - .toString() - .concat(':') - .concat(token.address.toLowerCase()) + .toString() + .concat(':') + .concat(token.address.toLowerCase()) console.error(`Error fetching token ${id}, error: ${e.message}`) return { status: 'error', From 1f7ad1107645d4d5ce4063843a00e9142f58c9ce Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 16:13:01 +0200 Subject: [PATCH 088/119] feat(packages/suishi): update kava blocks subgraph config --- packages/sushi/src/config/subgraph/subgraphs/blocks.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts index 4902b76b0b..34fb79f600 100644 --- a/packages/sushi/src/config/subgraph/subgraphs/blocks.ts +++ b/packages/sushi/src/config/subgraph/subgraphs/blocks.ts @@ -34,7 +34,7 @@ export const BLOCKS_SUBGRAPH_URL: Partial> = { // [ChainId.OKEX]: `${GRAPH_HOST}/okexchain-blocks/oec`, // [ChainId.HECO]: `${GRAPH_HOST}/hecoblocks/heco`, // [ChainId.KOVAN]: `${GRAPH_HOST}/blocklytics/kovan-blocks`, - [ChainId.KAVA]: `${WAGMI_KAVA_HOST}/sushiswap/blocks-kava`, + [ChainId.KAVA]: `${WAGMI_KAVA_HOST}/blocks`, [ChainId.METIS]: `${METIS_0XGRAPH_HOST}/sushiswap/blocks-metis`, // [ChainId.METIS]: `${WAGMI_METIS_HOST}/blocks`, [ChainId.ARBITRUM_NOVA]: `${SUSHI_GOLDSKY_HOST}/blocks/arbitrum-nova/gn`, From 998e101574ca7a6da9afe35479e0a5c1d33e36c9 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 16:07:01 +0000 Subject: [PATCH 089/119] feat(apps/evm): echarts optimization --- apps/evm/next.config.mjs | 4 +- apps/evm/package.json | 3 +- .../lib/wagmi/systems/Checker/Provider.tsx | 1 - .../src/types/{window.d.ts => global.d.ts} | 0 apps/evm/src/ui/analytics/tvl-chart.tsx | 22 ++++++++-- apps/evm/src/ui/analytics/volume-chart.tsx | 6 +++ apps/evm/src/ui/pool/PoolChartGraph.tsx | 25 ++++++++++-- apps/evm/src/ui/pool/PoolDepthChart.tsx | 17 +++++++- .../Steer/SteerAPRChart/_SteerAPRChart.tsx | 20 +++++++++- ...teerStrategyLiquidityDistributionChart.tsx | 15 ++++++- apps/evm/src/ui/stake/BarChartGraph.tsx | 21 ++++++++-- apps/evm/tailwind.config.js | 4 ++ config/nextjs/index.js | 1 + .../src/composite/sushi-historic-pool.ts | 25 ++++++++---- packages/sushi/src/token-list/constants.ts | 4 +- packages/ui/src/components/scripts.tsx | 1 + pnpm-lock.yaml | 40 +++++++++++-------- 17 files changed, 163 insertions(+), 46 deletions(-) rename apps/evm/src/types/{window.d.ts => global.d.ts} (100%) diff --git a/apps/evm/next.config.mjs b/apps/evm/next.config.mjs index 05c7a9375d..83ce0e7f7d 100644 --- a/apps/evm/next.config.mjs +++ b/apps/evm/next.config.mjs @@ -2,8 +2,8 @@ import defaultNextConfig from '@sushiswap/nextjs-config' import { withAxiom } from 'next-axiom' -// import withBundleAnalyzer from '@next/bundle-analyzer' -const bundleAnalyzer = (a) => a // withBundleAnalyzer({ enabled: true }) +import withBundleAnalyzer from '@next/bundle-analyzer' +const bundleAnalyzer = withBundleAnalyzer({ enabled: false }) const ACADEMY_URL = process.env.ACADEMY_URL || 'https://academy.sushi.com' const BLOG_URL = process.env.BLOG_URL || 'https://blog.sushi.com' diff --git a/apps/evm/package.json b/apps/evm/package.json index 9b75458d6c..05bac160d6 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -50,7 +50,7 @@ "cors": "2.8.5", "d3": "7.8.4", "date-fns": "2.30.0", - "echarts": "5.4.3", + "echarts": "4.9.0", "echarts-for-react": "3.0.2", "fast-json-stable-stringify": "2.1.0", "framer-motion": "7.10.3", @@ -86,6 +86,7 @@ "@tsconfig/next": "2.0.1", "@types/cors": "2.8.13", "@types/d3": "7.4.0", + "@types/echarts": "^4.9.22", "@types/lodash.once": "4.1.9", "@types/lodash.zip": "4.2.9", "@types/node": "20", diff --git a/apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx b/apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx index c21862e38c..cd6ed712ce 100644 --- a/apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/Provider.tsx @@ -72,7 +72,6 @@ const CheckerProvider: FC = ({ children }) => { // Reset state when address/wallet changes useEffect(() => { - console.log('reset state', initialState) const unwatchAccountListener = watchAccount(config, { onChange: () => setState(initialState), }) diff --git a/apps/evm/src/types/window.d.ts b/apps/evm/src/types/global.d.ts similarity index 100% rename from apps/evm/src/types/window.d.ts rename to apps/evm/src/types/global.d.ts diff --git a/apps/evm/src/ui/analytics/tvl-chart.tsx b/apps/evm/src/ui/analytics/tvl-chart.tsx index d56cefaf01..e06c05cb58 100644 --- a/apps/evm/src/ui/analytics/tvl-chart.tsx +++ b/apps/evm/src/ui/analytics/tvl-chart.tsx @@ -11,13 +11,20 @@ import { classNames, } from '@sushiswap/ui' import { format } from 'date-fns' -import ReactECharts from 'echarts-for-react' -import { EChartsOption } from 'echarts-for-react/lib/types' import { FC, useCallback, useMemo, useState } from 'react' import { formatUSD } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' import resolveConfig from 'tailwindcss/resolveConfig' +import ReactEchartsCore from 'echarts-for-react' +import { EChartsOption } from 'echarts-for-react/lib/types' +import 'echarts/lib/chart/bar' +import 'echarts/lib/chart/line' +import 'echarts/lib/component/tooltip' +import 'echarts/lib/component/visualMap' +import echarts from 'echarts/lib/echarts' +import 'echarts/lib/visual/seriesColor' + const tailwind = resolveConfig(tailwindConfig) enum TvlChartPeriod { @@ -81,6 +88,11 @@ export const TVLChart: FC<{ x: number[]; y: number[] }> = ({ x, y }) => { fontSize: 12, fontWeight: 600, }, + axisPointer: { + lineStyle: { + type: 'dashed', + }, + }, formatter: (params: any) => { onMouseOver({ name: params[0].name, value: params[0].value }) @@ -246,7 +258,11 @@ export const TVLChart: FC<{ x: number[]; y: number[] }> = ({ x, y }) => { {xData ? ( - + ) : ( = ({ x, y }) => { fontSize: 12, fontWeight: 600, }, + axisPointer: { + lineStyle: { + type: 'dashed', + }, + }, formatter: (params: any) => { onMouseOver({ name: params[0].name, value: params[0].value }) @@ -143,6 +148,7 @@ export const VolumeChart: FC<{ x: number[]; y: number[] }> = ({ x, y }) => { type: 'bar', xAxisIndex: 0, yAxisIndex: 0, + barWidth: '70%', itemStyle: { color: 'blue', normal: { diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index 61918e4a6b..60c44fb823 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -9,8 +9,6 @@ import { import { CardDescription, CardTitle } from '@sushiswap/ui/components/card' import { SkeletonBox } from '@sushiswap/ui/components/skeleton' import { format } from 'date-fns' -import ReactECharts from 'echarts-for-react' -import { EChartsOption } from 'echarts-for-react/lib/types' import { FC, useCallback, useMemo } from 'react' import { usePoolGraphData } from 'src/lib/hooks' @@ -22,6 +20,15 @@ import { SushiSwapV2ChainId } from 'sushi/config' import { PoolChartPeriod, chartPeriods } from './PoolChartPeriods' import { PoolChartType } from './PoolChartTypes' +import ReactEchartsCore from 'echarts-for-react/lib/core' +import { EChartsOption } from 'echarts-for-react/lib/types' +import 'echarts/lib/chart/bar' +import 'echarts/lib/chart/line' +import 'echarts/lib/component/tooltip' +import 'echarts/lib/component/visualMap' +import echarts from 'echarts/lib/echarts' +import 'echarts/lib/visual/seriesColor' + interface PoolChartProps { chart: PoolChartType.Volume | PoolChartType.Fees | PoolChartType.TVL period: PoolChartPeriod @@ -46,7 +53,7 @@ export const PoolChartGraph: FC = ({ chainId, }) - const swapFee = graphPair ? graphPair?.swapFee / 10000 : 0 + const swapFee = graphPair ? graphPair?.swapFee : 0 const [xData, yData]: [number[], number[]] = useMemo(() => { const data = @@ -124,6 +131,11 @@ export const PoolChartGraph: FC = ({ fontSize: 12, fontWeight: 600, }, + axisPointer: { + lineStyle: { + type: 'dashed', + }, + }, formatter: (params: any) => { onMouseOver({ name: params[0].name, value: params[0].value }) @@ -188,6 +200,7 @@ export const PoolChartGraph: FC = ({ smooth: true, xAxisIndex: 0, yAxisIndex: 0, + barWidth: '70%', itemStyle: { color: 'blue', normal: { @@ -249,7 +262,11 @@ export const PoolChartGraph: FC = ({ ) : isError ? (
) : ( - + )} diff --git a/apps/evm/src/ui/pool/PoolDepthChart.tsx b/apps/evm/src/ui/pool/PoolDepthChart.tsx index dc9d430fd9..0e1d599291 100644 --- a/apps/evm/src/ui/pool/PoolDepthChart.tsx +++ b/apps/evm/src/ui/pool/PoolDepthChart.tsx @@ -6,7 +6,6 @@ import { CardTitle, Toggle, } from '@sushiswap/ui' -import ReactECharts, { EChartsOption } from 'echarts-for-react' import { useTheme } from 'next-themes' import React, { FC, useCallback, useMemo, useState } from 'react' import { formatUSD } from 'sushi/format' @@ -14,6 +13,16 @@ import colors from 'tailwindcss/colors' import { ChartEntry } from './LiquidityChartRangeInput/types' +import ReactEChartsCore from 'echarts-for-react/lib/core' +import { EChartsOption } from 'echarts-for-react/lib/types' +import 'echarts/lib/chart/bar' +import 'echarts/lib/chart/line' +import 'echarts/lib/component/markLine' +import 'echarts/lib/component/tooltip' +import 'echarts/lib/component/visualMap' +import echarts from 'echarts/lib/echarts' +import 'echarts/lib/visual/seriesColor' + interface PoolDepthChartProps { poolStats: NonNullable< ReturnType['data'] @@ -256,7 +265,11 @@ export const PoolDepthChart: FC = ({ - + ) diff --git a/apps/evm/src/ui/pool/Steer/SteerAPRChart/_SteerAPRChart.tsx b/apps/evm/src/ui/pool/Steer/SteerAPRChart/_SteerAPRChart.tsx index aa362fa3ed..8f6dd6b244 100644 --- a/apps/evm/src/ui/pool/Steer/SteerAPRChart/_SteerAPRChart.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerAPRChart/_SteerAPRChart.tsx @@ -3,13 +3,20 @@ import { getSteerVaultAprTimeseries } from '@sushiswap/steer-sdk' import { SkeletonBox } from '@sushiswap/ui' import format from 'date-fns/format' -import ReactECharts, { EChartsOption } from 'echarts-for-react' import React, { useMemo } from 'react' import ReactVirtualizedAutoSizer from 'react-virtualized-auto-sizer' import { formatPercent } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' import resolveConfig from 'tailwindcss/resolveConfig' +import ReactEChartsCore from 'echarts-for-react/lib/core' +import { EChartsOption } from 'echarts-for-react/lib/types' +import 'echarts/lib/chart/line' +import 'echarts/lib/component/tooltip' +import 'echarts/lib/component/visualMap' +import echarts from 'echarts/lib/echarts' +import 'echarts/lib/visual/seriesColor' + const tailwind = resolveConfig(tailwindConfig) interface _SteerAPRChartProps { @@ -49,6 +56,11 @@ export function _SteerAPRChart({ timeseries, loading }: _SteerAPRChartProps) { }, borderWidth: 0, }, + visualMap: { + show: false, + // @ts-ignore + color: [tailwind.theme.colors.blue['500']], + }, grid: { top: 2, bottom: 2, @@ -144,7 +156,11 @@ export function _SteerAPRChart({ timeseries, loading }: _SteerAPRChartProps) { {({ height, width }) => ( <> {timeseries?.length ? ( - + ) : (
{({ height, width }) => ( - + )}
diff --git a/apps/evm/src/ui/stake/BarChartGraph.tsx b/apps/evm/src/ui/stake/BarChartGraph.tsx index 089f487b9a..d7f00e0bb0 100644 --- a/apps/evm/src/ui/stake/BarChartGraph.tsx +++ b/apps/evm/src/ui/stake/BarChartGraph.tsx @@ -9,8 +9,6 @@ import { import { CardDescription, CardTitle } from '@sushiswap/ui/components/card' import { SkeletonBox } from '@sushiswap/ui/components/skeleton' import { format } from 'date-fns' -import ReactECharts from 'echarts-for-react' -import { EChartsOption } from 'echarts-for-react/lib/types' import { FC, useCallback, useMemo } from 'react' import { formatNumber, formatPercent } from 'sushi/format' import tailwindConfig from 'tailwind.config.js' @@ -20,6 +18,14 @@ import { useBarChartData } from 'src/lib/stake' import { BarChartPeriod, chartPeriods } from './BarChartPeriods' import { BarChartType } from './BarChartTypes' +import ReactEchartsCore from 'echarts-for-react/lib/core' +import { EChartsOption } from 'echarts-for-react/lib/types' +import 'echarts/lib/chart/line' +import 'echarts/lib/component/tooltip' +import 'echarts/lib/component/visualMap' +import echarts from 'echarts/lib/echarts' +import 'echarts/lib/visual/seriesColor' + interface BarChartProps { chart: BarChartType.APR | BarChartType.TotalSupply period: BarChartPeriod @@ -97,6 +103,11 @@ export const BarChartGraph: FC = ({ chart, period }) => { fontSize: 12, fontWeight: 600, }, + axisPointer: { + lineStyle: { + type: 'dashed', + }, + }, formatter: (params: any) => { onMouseOver({ name: params[0].name, value: params[0].value }) @@ -214,7 +225,11 @@ export const BarChartGraph: FC = ({ chart, period }) => { )} /> ) : ( - + )} diff --git a/apps/evm/tailwind.config.js b/apps/evm/tailwind.config.js index 0ec1d5e5f6..ed319065dc 100644 --- a/apps/evm/tailwind.config.js +++ b/apps/evm/tailwind.config.js @@ -5,6 +5,10 @@ import sharedConfig from '@sushiswap/tailwindcss-config' const tailwindConfig = { darkMode: 'class', presets: [sharedConfig], + content: [ + ...sharedConfig.content, + './src/lib/wagmi/**/*.{js,ts,jsx,tsx,mdx}', + ], theme: { extend: { display: ['group-hover'], diff --git a/config/nextjs/index.js b/config/nextjs/index.js index e33b3229d0..d54dd843aa 100644 --- a/config/nextjs/index.js +++ b/config/nextjs/index.js @@ -7,6 +7,7 @@ const defaultNextConfig = { staticPageGenerationTimeout: 180, experimental: { webpackBuildWorker: true, + turbo: {}, // Prepare for Next.js 14 // optimizePackageImports: [ // '@heroicons/react-v1/solid', diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client-new/src/composite/sushi-historic-pool.ts index d196d2453c..70aa67ee6e 100644 --- a/packages/graph-client-new/src/composite/sushi-historic-pool.ts +++ b/packages/graph-client-new/src/composite/sushi-historic-pool.ts @@ -121,27 +121,26 @@ export async function getSushiHistoricPool( const pool2d = isPromiseFulfilled(pool2dS) ? pool2dS.value : null // TRANSFORM - const liquidityUSD1dChange = calculatePercentageChange( + const liquidityUSD1dChange = calculateRelativePercentageChange( pool.liquidityUSD, pool1d?.liquidityUSD, - pool2d?.liquidityUSD, ) const volumeUSD1d = calculateValueChange(pool.volumeUSD, pool1d?.volumeUSD) - const volumeUSD1dChange = calculatePercentageChange( + const volumeUSD1dChange = calculateCumulativePercentageChange( pool.volumeUSD, pool1d?.volumeUSD, pool2d?.volumeUSD, ) const feesUSD1d = calculateValueChange(pool.feesUSD, pool1d?.feesUSD) - const feesUSD1dChange = calculatePercentageChange( + const feesUSD1dChange = calculateCumulativePercentageChange( pool.feesUSD, pool1d?.feesUSD, pool2d?.feesUSD, ) const txCount1d = calculateValueChange(pool.txCount, pool1d?.txCount) - const txCount1dChange = calculatePercentageChange( + const txCount1dChange = calculateCumulativePercentageChange( pool.txCount, pool1d?.txCount, pool2d?.txCount, @@ -169,13 +168,14 @@ const calculateValueChange = ( return _previous !== 0 ? _current - _previous : 0 } -const calculatePercentageChange = ( +const calculateCumulativePercentageChange = ( current: string | number | bigint | undefined, previous: string | number | bigint | undefined, - previous2: string | number | bigint | undefined, + previous2?: string | number | bigint | undefined, ) => { const _current = Number(current) const _previous = Number(previous) + const _previous2 = Number(previous2) if (_current === 0) return 0 const change1 = _previous !== 0 ? _current - _previous : 0 @@ -184,3 +184,14 @@ const calculatePercentageChange = ( if (change2 === 0) return 0 // avoid division by 0 return _previous !== 0 && _previous2 !== 0 ? change1 / change2 - 1 : 0 } + +const calculateRelativePercentageChange = ( + current: string | number | bigint | undefined, + previous?: string | number | bigint | undefined, +) => { + const _current = Number(current) + const _previous = Number(previous) + + if (_current === 0) return 0 + return _previous !== 0 ? _current / _previous - 1 : 0 +} diff --git a/packages/sushi/src/token-list/constants.ts b/packages/sushi/src/token-list/constants.ts index ccebad3905..54a7a29c27 100644 --- a/packages/sushi/src/token-list/constants.ts +++ b/packages/sushi/src/token-list/constants.ts @@ -46,8 +46,8 @@ export const LINEA_LIST = // lower index == higher priority for token import export const DEFAULT_TOKEN_LIST_OF_TOKEN_LISTS_TO_DISPLAY: string[] = [ SUSHI_DEFAULT_TOKEN_LIST, - UNI_LIST, - UNI_EXTENDED_LIST, + // UNI_LIST, // The specific IPFS gateway does not allow CORS + // UNI_EXTENDED_LIST, COMPOUND_LIST, COINGECKO_LIST, COINGECK_BASE_LIST, diff --git a/packages/ui/src/components/scripts.tsx b/packages/ui/src/components/scripts.tsx index f4bf79c704..32f56249a8 100644 --- a/packages/ui/src/components/scripts.tsx +++ b/packages/ui/src/components/scripts.tsx @@ -19,6 +19,7 @@ export const GoogleAnalytics = () => { gtag('js', new Date()); gtag('config', 'G-JW8KWJ48EF', { page_path: window.location.pathname, + cookie_flags: 'max-age=7200;secure;samesite=none' }); `, }} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index c45f615a1a..84b7a85a9f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -778,11 +778,11 @@ importers: specifier: 2.30.0 version: 2.30.0 echarts: - specifier: 5.4.3 - version: 5.4.3 + specifier: 4.9.0 + version: 4.9.0 echarts-for-react: specifier: 3.0.2 - version: 3.0.2(echarts@5.4.3)(react@18.2.0) + version: 3.0.2(echarts@4.9.0)(react@18.2.0) fast-json-stable-stringify: specifier: 2.1.0 version: 2.1.0 @@ -880,6 +880,9 @@ importers: '@types/d3': specifier: 7.4.0 version: 7.4.0 + '@types/echarts': + specifier: ^4.9.22 + version: 4.9.22 '@types/lodash.once': specifier: 4.1.9 version: 4.1.9 @@ -17822,6 +17825,12 @@ packages: /@types/dom-screen-wake-lock@1.0.3: resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==} + /@types/echarts@4.9.22: + resolution: {integrity: sha512-7Fo6XdWpoi8jxkwP7BARUOM7riq8bMhmsCtSG8gzUcJmFhLo387tihoBYS/y5j7jl3PENT5RxeWZdN9RiwO7HQ==} + dependencies: + '@types/zrender': 4.0.6 + dev: true + /@types/ejs@3.1.2: resolution: {integrity: sha512-ZmiaE3wglXVWBM9fyVC17aGPkLo/UgaOjEiI2FXQfyczrCefORPxIe+2dVmnmk3zkVIbizjrlQzmPGhSYGXG5g==} dev: true @@ -18429,6 +18438,10 @@ packages: dependencies: '@types/yargs-parser': 21.0.0 + /@types/zrender@4.0.6: + resolution: {integrity: sha512-1jZ9bJn2BsfmYFPBHtl5o3uV+ILejAtGrDcYSpT4qaVKEI/0YY+arw3XHU04Ebd8Nca3SQ7uNcLaqiL+tTFVMg==} + dev: true + /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0)(eslint@8.41.0)(typescript@5.2.2): resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -25749,23 +25762,22 @@ packages: dependencies: safe-buffer: 5.2.1 - /echarts-for-react@3.0.2(echarts@5.4.3)(react@18.2.0): + /echarts-for-react@3.0.2(echarts@4.9.0)(react@18.2.0): resolution: {integrity: sha512-DRwIiTzx8JfwPOVgGttDytBqdp5VzCSyMRIxubgU/g2n9y3VLUmF2FK7Icmg/sNVkv4+rktmrLN9w22U2yy3fA==} peerDependencies: echarts: ^3.0.0 || ^4.0.0 || ^5.0.0 react: ^15.0.0 || >=16.0.0 dependencies: - echarts: 5.4.3 + echarts: 4.9.0 fast-deep-equal: 3.1.3 react: 18.2.0 size-sensor: 1.0.1 dev: false - /echarts@5.4.3: - resolution: {integrity: sha512-mYKxLxhzy6zyTi/FaEbJMOZU1ULGEQHaeIeuMR5L+JnJTpz+YR03mnnpBhbR4+UYJAgiXgpyTVLffPAjOTLkZA==} + /echarts@4.9.0: + resolution: {integrity: sha512-+ugizgtJ+KmsJyyDPxaw2Br5FqzuBnyOWwcxPKO6y0gc5caYcfnEUIlNStx02necw8jmKmTafmpHhGo4XDtEIA==} dependencies: - tslib: 2.3.0 - zrender: 5.4.4 + zrender: 4.3.2 dev: false /eciesjs@0.3.18: @@ -43104,10 +43116,6 @@ packages: /tslib@1.14.1: resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} - /tslib@2.3.0: - resolution: {integrity: sha512-N82ooyxVNm6h1riLCoyS9e3fuJ3AMG2zIZs2Gd1ATcSFjSA23Q0fzjjZeh0jbJvWVDZ0cJT8yaNNaaXHzueNjg==} - dev: false - /tslib@2.4.0: resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==} @@ -46513,10 +46521,8 @@ packages: resolution: {integrity: sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==} dev: false - /zrender@5.4.4: - resolution: {integrity: sha512-0VxCNJ7AGOMCWeHVyTrGzUgrK4asT4ml9PEkeGirAkKNYXYzoPJCLvmyfdoOXcjTHPs10OZVMfD1Rwg16AZyYw==} - dependencies: - tslib: 2.3.0 + /zrender@4.3.2: + resolution: {integrity: sha512-bIusJLS8c4DkIcdiK+s13HiQ/zjQQVgpNohtd8d94Y2DnJqgM1yjh/jpDb8DoL6hd7r8Awagw8e3qK/oLaWr3g==} dev: false /zustand@3.7.2(react@18.2.0): From 9cbf98f5cecb9a5a9b7ce400db186b2232cbb18e Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 17:14:31 +0000 Subject: [PATCH 090/119] fix(apps/evm): positions parse --- apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts index 3eed2fade4..ed3c654089 100644 --- a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -24,7 +24,9 @@ export function useSushiV2UserPositions( return useQuery({ queryKey: [getUserPositionsWithPoolsUrl(args)], queryFn: () => - fetch(getUserPositionsWithPoolsUrl(args)).then((data) => data.json()), + fetch(getUserPositionsWithPoolsUrl(args)) + .then((data) => data.text()) + .then(JSON.parse), enabled: Boolean(shouldFetch && args.id), }) } From c9a8ecd8f12acaba91f1fb0591e66e3612624740 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Mon, 10 Jun 2024 19:56:48 +0200 Subject: [PATCH 091/119] fix: pool column order, add 10 retries until bad indexer error is fixed --- apps/evm/src/ui/pool/PoolsTable.tsx | 2 +- jobs/pool/src/pools.ts | 2 +- packages/graph-client-new/src/composite/sushi-day-datas.ts | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/apps/evm/src/ui/pool/PoolsTable.tsx b/apps/evm/src/ui/pool/PoolsTable.tsx index 468a7311d1..1182b1b2f7 100644 --- a/apps/evm/src/ui/pool/PoolsTable.tsx +++ b/apps/evm/src/ui/pool/PoolsTable.tsx @@ -71,8 +71,8 @@ const COLUMNS = [ VOLUME_1D_COLUMN, VOLUME_1W_COLUMN, VOLUME_1M_COLUMN, - APR_COLUMN, FEES_COLUMN, + APR_COLUMN, { id: 'actions', cell: ({ row }) => diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 24b4509bdf..03abd230e5 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -64,7 +64,7 @@ enum AprTimeRange { } const SUBGRAPH_REQUEST_OPTIONS = { - retries: 3, // should probably be a reasonable timeout as well? + retries: 10, // can lower to 3 when bad indexer error is fixed by the graph } export async function execute(protocol: Protocol) { diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client-new/src/composite/sushi-day-datas.ts index be9e679b26..b2e80d6eb0 100644 --- a/packages/graph-client-new/src/composite/sushi-day-datas.ts +++ b/packages/graph-client-new/src/composite/sushi-day-datas.ts @@ -28,7 +28,9 @@ export async function getSushiDayDatas( ]), ), }: GetSushiDayDatas, - options?: RequestOptions, + options: RequestOptions = { + retries: 10, + }, ) { const sushiSwapV2ChainIds = chainIds.filter(isSushiSwapV2ChainId) const v2p = fetchMultichain({ From 08638b76bad045c17be46d4d07ec47932a727b12 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 19:40:32 +0000 Subject: [PATCH 092/119] fix(packages/graph-client): fix combined day datas --- apps/evm/src/lib/graph.ts | 4 +- apps/evm/src/ui/pool/PoolHeader.tsx | 1 + .../src/composite/sushi-day-datas.ts | 53 ++++++++++--------- .../subgraphs/sushi-v2/queries/day-datas.ts | 11 +++- .../subgraphs/sushi-v3/queries/day-datas.ts | 13 +++-- 5 files changed, 51 insertions(+), 31 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 2f797d1a6e..ac86061023 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -181,10 +181,10 @@ export const getCharts = async (query?: { networks: string }) => { snapshot.date, value ? [ - value[0] + Number(snapshot.tvlUSD), + value[0] + Number(snapshot.liquidityUSD), value[1] + Number(snapshot.volumeUSD), ] - : [Number(snapshot.tvlUSD), Number(snapshot.volumeUSD)], + : [Number(snapshot.liquidityUSD), Number(snapshot.volumeUSD)], ) } diff --git a/apps/evm/src/ui/pool/PoolHeader.tsx b/apps/evm/src/ui/pool/PoolHeader.tsx index c0eb8320e7..cceeb6ead5 100644 --- a/apps/evm/src/ui/pool/PoolHeader.tsx +++ b/apps/evm/src/ui/pool/PoolHeader.tsx @@ -46,6 +46,7 @@ export const PoolHeader: FC = ({ }) => { const [token0, token1] = useMemo(() => { if (!pool) return [undefined, undefined] + if (pool instanceof SushiSwapV3Pool) { return [unwrapToken(pool.token0), unwrapToken(pool.token1)] } diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client-new/src/composite/sushi-day-datas.ts index be9e679b26..6fde5a5404 100644 --- a/packages/graph-client-new/src/composite/sushi-day-datas.ts +++ b/packages/graph-client-new/src/composite/sushi-day-datas.ts @@ -1,3 +1,4 @@ +import type { RequestOptions } from 'src/lib/request' import type { ChainIdsVariable } from 'src/lib/types/chainId' import { fetchMultichain } from 'src/multichain' import { getSushiV2DayDatas } from 'src/subgraphs/sushi-v2/queries/day-datas' @@ -13,7 +14,6 @@ import { isSushiSwapV2ChainId, isSushiSwapV3ChainId, } from 'sushi/config' -import type { RequestOptions } from 'src/lib/request' export type GetSushiDayDatas = {} & ChainIdsVariable< SushiSwapV2ChainId | SushiSwapV3ChainId @@ -59,34 +59,39 @@ export async function getSushiDayDatas( { data: sushiSwapV3DayDatas, errors: sushiSwapV3DayDatasErrors }, ] = await Promise.all([v2p, v3p]) - const data: SushiV3DayDatas = [] - sushiSwapV3DayDatas.forEach((dayData) => { + const dataMap = new Map() + + const setOrAdd = (date: number, dayData: SushiV3DayDatas[number]) => { if (Number(dayData.volumeUSD) > 1_000_000_000) return // Skip volume if it's too high, MEV txs on ethereum can cause this - data.push({ - id: dayData.id, - date: dayData.date, - volumeUSD: dayData.volumeUSD, - volumeUSDUntracked: dayData.volumeUSDUntracked, - volumeETH: dayData.volumeETH, - tvlUSD: dayData.tvlUSD, - txCount: dayData.txCount, - feesUSD: '0', - }) + + const existing = dataMap.get(date) + + if (existing) { + dataMap.set(date, { + ...existing, + volumeUSD: existing.volumeUSD + dayData.volumeUSD, + volumeUSDUntracked: + existing.volumeUSDUntracked + dayData.volumeUSDUntracked, + liquidityUSD: existing.liquidityUSD + dayData.liquidityUSD, + txCount: existing.txCount + dayData.txCount, + feesUSD: existing.feesUSD + dayData.feesUSD, + }) + return + } + + dataMap.set(date, dayData) + } + + sushiSwapV3DayDatas.forEach((dayData) => { + setOrAdd(dayData.date, dayData) }) + sushiSwapV2DayDatas.forEach((dayData) => { - if (Number(dayData.dailyVolumeUSD) > 1_000_000_000) return // Skip volume if it's too high, MEV txs on ethereum can cause this - data.push({ - id: dayData.id, - date: dayData.date, - volumeUSD: dayData.dailyVolumeUSD, - volumeUSDUntracked: dayData.dailyVolumeUntracked, - volumeETH: dayData.dailyVolumeETH, - tvlUSD: dayData.totalLiquidityUSD, - txCount: dayData.txCount, - feesUSD: '0', - }) + setOrAdd(dayData.date, dayData) }) + const data = Array.from(dataMap.values()) + const errors = [...sushiSwapV2DayDataErrors, ...sushiSwapV3DayDatasErrors] return { data, errors } diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts index 0730e7fe37..b736dc2b16 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts @@ -14,7 +14,6 @@ export const SushiV2DayDatasQuery = graphql(` date dailyVolumeUSD dailyVolumeUntracked - dailyVolumeETH totalLiquidityUSD txCount } @@ -38,7 +37,15 @@ export async function getSushiV2DayDatas( options, }) - return result.uniswapDayDatas + return result.uniswapDayDatas.map((dayData) => ({ + id: dayData.id, + date: dayData.date, + volumeUSD: Number(dayData.dailyVolumeUSD), + volumeUSDUntracked: Number(dayData.dailyVolumeUntracked), + liquidityUSD: Number(dayData.totalLiquidityUSD), + txCount: Number(dayData.txCount), + feesUSD: Number(dayData.totalLiquidityUSD) * 0.003, + })) } export type SushiV2DayDatas = Awaited> diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts index e1e8c8e7e5..8a77a18b63 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts @@ -2,10 +2,10 @@ import type { VariablesOf } from 'gql.tada' import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' -import type { RequestOptions } from 'src/lib/request' export const SushiV3DayDatasQuery = graphql(` query DayDatas($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: UniswapDayData_orderBy, $orderDirection: OrderDirection, $where: UniswapDayData_filter) { @@ -14,7 +14,6 @@ export const SushiV3DayDatasQuery = graphql(` date volumeUSD volumeUSDUntracked - volumeETH tvlUSD feesUSD txCount @@ -39,7 +38,15 @@ export async function getSushiV3DayDatas( options, }) - return result.uniswapDayDatas + return result.uniswapDayDatas.map((dayData) => ({ + id: dayData.id, + date: dayData.date, + volumeUSD: Number(dayData.volumeUSD), + volumeUSDUntracked: Number(dayData.volumeUSDUntracked), + liquidityUSD: Number(dayData.tvlUSD), + feesUSD: Number(dayData.feesUSD), + txCount: Number(dayData.txCount), + })) } export type SushiV3DayDatas = Awaited> From 4e701d1a948daeb1c23959d79b03f78b23258fb7 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 19:45:36 +0000 Subject: [PATCH 093/119] fix: lint --- apps/evm/src/app/home/header.tsx | 2 +- apps/evm/src/lib/stake/use-bar-chart-data.ts | 2 +- .../web3-input/Currency/CurrencyInput.tsx | 2 +- .../src/lib/wagmi/hooks/balances/useBalanceWeb3.ts | 2 +- .../bonds-positions-table.tsx | 2 +- apps/evm/src/ui/bonds/bonds-widget.tsx | 10 +++++----- apps/evm/src/ui/pool/PoolChartV2.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 12 ++++++------ apps/evm/src/ui/pool/PoolTransactionsV3.tsx | 14 +++++++------- .../cross-chain/cross-chain-swap-token1-input.tsx | 2 +- .../cross-chain/cross-chain-swap-trade-button.tsx | 2 +- .../ui/swap/simple/simple-swap-token0-input.tsx | 2 +- .../ui/swap/simple/simple-swap-token1-input.tsx | 2 +- .../ui/swap/simple/simple-swap-trade-button.tsx | 2 +- biome.json | 4 +++- jobs/pool/src/lib/common/pairs.ts | 4 ++-- .../subgraphs/mini-chef/queries/user-positions.ts | 2 +- .../src/subgraphs/steer/queries/vaults.ts | 2 +- .../src/subgraphs/sushi-v3/queries/mints.ts | 2 +- .../src/subgraphs/sushi-v3/queries/pools.ts | 2 +- packages/steer-sdk/src/fetchers/getTotalSupply.ts | 2 +- .../src/fetchers/getVaultMaxTickChange.ts | 2 +- .../entities/NonfungiblePositionManager.ts | 2 +- 23 files changed, 41 insertions(+), 39 deletions(-) diff --git a/apps/evm/src/app/home/header.tsx b/apps/evm/src/app/home/header.tsx index 49de5ed335..0956b3c885 100644 --- a/apps/evm/src/app/home/header.tsx +++ b/apps/evm/src/app/home/header.tsx @@ -3,8 +3,8 @@ import { Navigation } from '@sushiswap/ui/components/navigation' import React, { FC } from 'react' -import { SUPPORTED_CHAIN_IDS } from '../../config' import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' +import { SUPPORTED_CHAIN_IDS } from '../../config' export const Header: FC = () => { return ( diff --git a/apps/evm/src/lib/stake/use-bar-chart-data.ts b/apps/evm/src/lib/stake/use-bar-chart-data.ts index 8c531b9433..f3fa0a9923 100644 --- a/apps/evm/src/lib/stake/use-bar-chart-data.ts +++ b/apps/evm/src/lib/stake/use-bar-chart-data.ts @@ -1,7 +1,7 @@ 'use client' -import { useQuery } from '@tanstack/react-query' import { getSushiBarHistory } from '@sushiswap/graph-client-new/sushi-bar' +import { useQuery } from '@tanstack/react-query' export const useBarChartData = (enabled = true) => { return useQuery({ diff --git a/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx b/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx index fa6d2b22fa..e3b62ef2e6 100644 --- a/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx +++ b/apps/evm/src/lib/wagmi/components/web3-input/Currency/CurrencyInput.tsx @@ -17,10 +17,10 @@ import { Token, Type, tryParseAmount } from 'sushi/currency' import { useAccount } from 'wagmi' import { useIsMounted } from '@sushiswap/hooks' +import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' import { TokenSelector } from '../../token-selector/TokenSelector' import { BalancePanel } from './BalancePanel' import { PricePanel } from './PricePanel' -import { useBalanceWeb3 } from 'src/lib/wagmi/hooks/balances/useBalanceWeb3' interface CurrencyInputProps { id?: string diff --git a/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts b/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts index 39f211ded2..a8f0637c70 100644 --- a/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts +++ b/apps/evm/src/lib/wagmi/hooks/balances/useBalanceWeb3.ts @@ -4,8 +4,8 @@ import { Type } from 'sushi/currency' import { Address, zeroAddress } from 'viem' import { serialize, useBalance, useConfig } from 'wagmi' -import { queryFnUseBalances } from './useBalancesWeb3' import { useWatchByInterval } from '../watch/useWatchByInterval' +import { queryFnUseBalances } from './useBalancesWeb3' interface UseBalanceParams { chainId: ChainId | undefined diff --git a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx index ddf434ccdf..25deef0247 100644 --- a/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx +++ b/apps/evm/src/ui/bonds/bonds-positions-table/bonds-positions-table.tsx @@ -12,13 +12,13 @@ import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' import { useQuery } from '@tanstack/react-query' import { ColumnDef, PaginationState, SortingState } from '@tanstack/react-table' import React, { FC, useMemo, useState } from 'react' +import { useAccount } from 'wagmi' import { CLAIM_COLUMN, MATURITY_COLUMN, PAYOUT_AMOUNT_COLUMN, PAYOUT_ASSET_COLUMN, } from './bonds-positions-table-columns' -import { useAccount } from 'wagmi' const COLUMNS = [ PAYOUT_ASSET_COLUMN, diff --git a/apps/evm/src/ui/bonds/bonds-widget.tsx b/apps/evm/src/ui/bonds/bonds-widget.tsx index 4b695988a4..ff321ac226 100644 --- a/apps/evm/src/ui/bonds/bonds-widget.tsx +++ b/apps/evm/src/ui/bonds/bonds-widget.tsx @@ -23,14 +23,14 @@ import format from 'date-fns/format' import formatDistance from 'date-fns/formatDistance' import React, { useCallback, useEffect, useMemo, useState } from 'react' import { APPROVE_TAG_BONDS } from 'src/lib/constants' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { useBondMarketDetails } from 'src/lib/wagmi/hooks/bonds/use-bond-market-details' +import { Checker } from 'src/lib/wagmi/systems/Checker' +import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' import { Amount, Token, tryParseAmount } from 'sushi/currency' import { formatPercent } from 'sushi/format' -import { BondsBuyReviewModal } from './bonds-buy-review-modal' -import { useBondMarketDetails } from 'src/lib/wagmi/hooks/bonds/use-bond-market-details' import { useChainId } from 'wagmi' -import { CheckerProvider } from 'src/lib/wagmi/systems/Checker/Provider' -import { Checker } from 'src/lib/wagmi/systems/Checker' -import { Web3Input } from 'src/lib/wagmi/components/web3-input' +import { BondsBuyReviewModal } from './bonds-buy-review-modal' const GetTokens = ({ bond }: { bond: Bond }) => { if (!bond.quoteToken.pool && !bond.quoteToken.vault) return null diff --git a/apps/evm/src/ui/pool/PoolChartV2.tsx b/apps/evm/src/ui/pool/PoolChartV2.tsx index 7f88076d17..8f97bdc68e 100644 --- a/apps/evm/src/ui/pool/PoolChartV2.tsx +++ b/apps/evm/src/ui/pool/PoolChartV2.tsx @@ -3,10 +3,10 @@ import { Card } from '@sushiswap/ui' import React, { FC, useState } from 'react' +import { SushiSwapV2ChainId } from 'sushi/config' import { PoolChartGraph } from './PoolChartGraph' import { PoolChartPeriod, PoolChartPeriods } from './PoolChartPeriods' import { PoolChartType, PoolChartTypes } from './PoolChartTypes' -import { SushiSwapV2ChainId } from 'sushi/config' const charts = [ PoolChartType.Volume, diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index e4fa2d0984..066f70b16c 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -15,6 +15,12 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV2ChainId, isSushiSwapV2ChainId } from 'sushi/config' +import { + getSushiV2Burns, + getSushiV2Mints, + getSushiV2Swaps, + getSushiV2Transactions, +} from '@sushiswap/graph-client-new/sushi-v2' import { TX_AMOUNT_IN_V2_COLUMN, TX_AMOUNT_OUT_V2_COLUMN, @@ -22,12 +28,6 @@ import { TX_CREATED_TIME_V2_COLUMN, TX_SENDER_V2_COLUMN, } from './columns' -import { - getSushiV2Burns, - getSushiV2Mints, - getSushiV2Swaps, - getSushiV2Transactions, -} from '@sushiswap/graph-client-new/sushi-v2' export enum TransactionType { Mint = 'Mint', diff --git a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx index 59ba2c257f..63d761dd0c 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx @@ -15,13 +15,6 @@ import React, { FC, useMemo, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' import { SushiSwapV3ChainId, isSushiSwapV3ChainId } from 'sushi/config' -import { - TX_AMOUNT_IN_V3_COLUMN, - TX_AMOUNT_OUT_V3_COLUMN, - TX_AMOUNT_USD_V3_COLUMN, - TX_ORIGIN_V3_COLUMN, - TX_TIME_V3_COLUMN, -} from './columns' import { getSushiV3Burns, getSushiV3Collects, @@ -29,6 +22,13 @@ import { getSushiV3Swaps, getSushiV3Transactions, } from '@sushiswap/graph-client-new/sushi-v3' +import { + TX_AMOUNT_IN_V3_COLUMN, + TX_AMOUNT_OUT_V3_COLUMN, + TX_AMOUNT_USD_V3_COLUMN, + TX_ORIGIN_V3_COLUMN, + TX_TIME_V3_COLUMN, +} from './columns' export enum TransactionTypeV3 { Mint = 'Mint', diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx index a8f84c8ace..17c4b3d5ee 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token1-input.tsx @@ -10,6 +10,7 @@ import { } from '@sushiswap/ui' import { Chain } from 'sushi/chain' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { SUSHIXSWAP_2_SUPPORTED_CHAIN_IDS, isWNativeSupported, @@ -18,7 +19,6 @@ import { useCrossChainSwapTrade, useDerivedStateCrossChainSwap, } from './derivedstate-cross-chain-swap-provider' -import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const CrossChainSwapToken1Input = () => { const { diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx index bfd6b901dd..1f3f012586 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-trade-button.tsx @@ -4,6 +4,7 @@ import { DialogTrigger } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components/button' import React, { FC, useEffect, useState } from 'react' import { APPROVE_TAG_XSWAP } from 'src/lib/constants' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { SUSHIXSWAP_2_ADDRESS, SushiXSwap2ChainId } from 'sushi/config' import { ZERO } from 'sushi/math' import { warningSeverity } from '../../../lib/swap/warningSeverity' @@ -13,7 +14,6 @@ import { useDerivedStateCrossChainSwap, } from './derivedstate-cross-chain-swap-provider' import { useIsCrossChainSwapMaintenance } from './use-is-cross-chain-swap-maintenance' -import { Checker } from 'src/lib/wagmi/systems/Checker' export const CrossChainSwapTradeButton: FC = () => { const { data: maintenance } = useIsCrossChainSwapMaintenance() diff --git a/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx b/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx index d85e9199b9..420124d7e8 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-token0-input.tsx @@ -1,8 +1,8 @@ 'use client' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { isWNativeSupported } from 'sushi/config' import { useDerivedStateSimpleSwap } from './derivedstate-simple-swap-provider' -import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const SimpleSwapToken0Input = () => { const { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx b/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx index 4a3876fa1a..85812c7dc5 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-token1-input.tsx @@ -1,11 +1,11 @@ 'use client' +import { Web3Input } from 'src/lib/wagmi/components/web3-input' import { isWNativeSupported } from 'sushi/config' import { useDerivedStateSimpleSwap, useSimpleSwapTrade, } from './derivedstate-simple-swap-provider' -import { Web3Input } from 'src/lib/wagmi/components/web3-input' export const SimpleSwapToken1Input = () => { const { diff --git a/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx b/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx index 67c6327f1d..df4db93c97 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-trade-button.tsx @@ -3,6 +3,7 @@ import { DialogTrigger } from '@sushiswap/ui' import { Button } from '@sushiswap/ui/components' import React, { FC, useEffect, useState } from 'react' +import { Checker } from 'src/lib/wagmi/systems/Checker' import { ROUTE_PROCESSOR_4_ADDRESS, isRouteProcessor4ChainId, @@ -18,7 +19,6 @@ import { } from './derivedstate-simple-swap-provider' import { SimpleSwapTradeReviewDialog } from './simple-swap-trade-review-dialog' import { useIsSwapMaintenance } from './use-is-swap-maintenance' -import { Checker } from 'src/lib/wagmi/systems/Checker' export const SimpleSwapTradeButton: FC = () => { return ( diff --git a/biome.json b/biome.json index 689dc2ac46..b58fc04060 100644 --- a/biome.json +++ b/biome.json @@ -25,7 +25,9 @@ "tsconfig.json", "tsconfig.*.json", "packages/graph-client", - "packages/wagmi/src/hooks/exploits/data/rp2-approvals.json" + "apps/evm/src/lib/wagmi/hooks/exploits/data/rp2-approvals.json", + "**/*-env.d.ts", + "**/*-cache.d.ts" ] }, "formatter": { diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index aa5a8bef9b..415b5edd29 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -1,8 +1,8 @@ +import { getSushiV2Pools } from '@sushiswap/graph-client-new/sushi-v2' import { SushiSwapV2ChainId } from 'sushi/config' +import { Address } from 'viem' import type { Farm } from '../types.js' import { divBigIntToNumber } from './utils.js' -import { getSushiV2Pools } from '@sushiswap/graph-client-new/sushi-v2' -import { Address } from 'viem' interface Pair { id: string diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts index 389b644d17..d41f568b75 100644 --- a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts +++ b/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts @@ -1,9 +1,9 @@ import type { VariablesOf } from 'gql.tada' -import type { RequestOptions } from 'src/lib/request' import { addChainId } from 'src/lib/modifiers/add-chain-id' import { convertIdToMultichainId } from 'src/lib/modifiers/convert-id-to-multichain-id' import { copyIdToAddress } from 'src/lib/modifiers/copy-id-to-address' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import type { MiniChefChainId } from 'sushi/config' diff --git a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts index ab4f067f9d..59ada9bb07 100644 --- a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts +++ b/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts @@ -7,8 +7,8 @@ import type { ChainIdVariable } from 'src/lib/types/chainId' import { type Address, SushiSwapProtocol, - getIdFromChainIdAddress, TickMath, + getIdFromChainIdAddress, } from 'sushi' import type { SushiSwapV3ChainId } from 'sushi/config' import { graphql } from '../graphql' diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts index b8b680e015..8ed800fda2 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts @@ -4,10 +4,10 @@ import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' import { addChainId } from 'src/lib/modifiers/add-chain-id' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { graphql } from '../graphql' -import type { RequestOptions } from 'src/lib/request' export const SushiV3MintsQuery = graphql(` query Mints($first: Int = 1000, $skip: Int = 0, $block: Block_height, $orderBy: Mint_orderBy, $orderDirection: OrderDirection, $where: Mint_filter) { diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts index 48eeed0276..79b82bacb9 100644 --- a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts +++ b/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts @@ -3,12 +3,12 @@ import type { SushiSwapV3ChainId } from 'sushi/config' import { SUSHISWAP_V3_SUBGRAPH_URL } from 'sushi/config/subgraph' import { FetchError } from 'src/lib/fetch-error' +import type { RequestOptions } from 'src/lib/request' import { requestPaged } from 'src/lib/request-paged' import type { ChainIdVariable } from 'src/lib/types/chainId' import { transformPoolV3ToBase } from 'src/subgraphs/sushi-v3/transforms/pool-v3-to-base' import { PoolFieldsFragment } from '../fragments/pool-fields' import { graphql } from '../graphql' -import type { RequestOptions } from 'src/lib/request' export const SushiV3PoolsQuery = graphql( ` diff --git a/packages/steer-sdk/src/fetchers/getTotalSupply.ts b/packages/steer-sdk/src/fetchers/getTotalSupply.ts index 71149dc3a0..f2a113e6c5 100644 --- a/packages/steer-sdk/src/fetchers/getTotalSupply.ts +++ b/packages/steer-sdk/src/fetchers/getTotalSupply.ts @@ -1,6 +1,6 @@ import { erc20Abi } from 'sushi/abi' import { getChainIdAddressFromId } from 'sushi/format' -import { zeroAddress, type PublicClient } from 'viem' +import { type PublicClient, zeroAddress } from 'viem' interface GetTotalSuppliesContracts { vaultIds: string[] diff --git a/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts b/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts index f364e6fb14..007a3fde22 100644 --- a/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts +++ b/packages/steer-sdk/src/fetchers/getVaultMaxTickChange.ts @@ -1,5 +1,5 @@ import { getChainIdAddressFromId } from 'sushi/format' -import { zeroAddress, type PublicClient } from 'viem' +import { type PublicClient, zeroAddress } from 'viem' import { steerMultiPositionManager } from '../abi/steerMultiPositionManager.js' diff --git a/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts b/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts index 088537d2fa..1f611d93f1 100644 --- a/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts +++ b/packages/sushi/src/pool/sushiswap-v3/entities/NonfungiblePositionManager.ts @@ -1,6 +1,7 @@ import { Interface } from '@ethersproject/abi' import invariant from 'tiny-invariant' import { zeroAddress } from 'viem' +import { nonfungiblePositionManagerAbi } from '../../../abi/nonfungiblePositionManagerAbi.js' import { toHex } from '../../../convert/index.js' import { Amount as CurrencyAmount, @@ -16,7 +17,6 @@ import { Payments } from './Payments.js' import { Position } from './Position.js' import { PermitOptions, SelfPermit } from './SelfPermit.js' import { SushiSwapV3Pool } from './SushiSwapV3Pool.js' -import { nonfungiblePositionManagerAbi } from '../../../abi/nonfungiblePositionManagerAbi.js' const MaxUint128 = toHex(2n ** 128n - 1n) From 4a38a3b4f527326bcfd61b8bde235286365a0cd5 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 21:59:59 +0000 Subject: [PATCH 094/119] fix(pkgs/ui): nav scroll --- packages/ui/src/components/navigation-menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/navigation-menu.tsx b/packages/ui/src/components/navigation-menu.tsx index afbc38abe0..665704e29c 100644 --- a/packages/ui/src/components/navigation-menu.tsx +++ b/packages/ui/src/components/navigation-menu.tsx @@ -74,7 +74,7 @@ const NavigationMenuContent = React.forwardRef< Date: Mon, 10 Jun 2024 22:31:19 +0000 Subject: [PATCH 095/119] feat(apps/evm): chain filter pool table --- apps/evm/src/ui/pool/TableFiltersNetwork.tsx | 13 ++++++++++--- .../swap/simple/simple-swap-additional-button.tsx | 2 ++ .../ui/swap/simple/simple-swap-bridge-banner.tsx | 2 ++ apps/evm/src/ui/swap/simple/simple-swap-widget.tsx | 2 -- packages/ui/src/components/network-selector.tsx | 3 --- 5 files changed, 14 insertions(+), 8 deletions(-) diff --git a/apps/evm/src/ui/pool/TableFiltersNetwork.tsx b/apps/evm/src/ui/pool/TableFiltersNetwork.tsx index 8d4b6a60b6..83ccbdd757 100644 --- a/apps/evm/src/ui/pool/TableFiltersNetwork.tsx +++ b/apps/evm/src/ui/pool/TableFiltersNetwork.tsx @@ -11,7 +11,9 @@ import { import { Button } from '@sushiswap/ui/components/button' import { Command, + CommandEmpty, CommandGroup, + CommandInput, CommandItem, } from '@sushiswap/ui/components/command' import { CheckIcon, NetworkIcon } from '@sushiswap/ui/components/icons' @@ -97,13 +99,18 @@ export const TableFiltersNetwork: FC = () => { className="!p-0 !overflow-x-hidden !overflow-y-scroll scroll" > + + No network found. {SUPPORTED_CHAIN_IDS.map((chainId) => ( - onClick(+currentValue as (typeof chainIds)[number]) + value={`${Chain.from(chainId)?.name}__${chainId}`} + onSelect={(value) => + onClick(+value.split('__')[1] as (typeof chainIds)[number]) } className="py-2 pl-8 pr-2" > diff --git a/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx b/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx index 1003d9e73c..771748256b 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-additional-button.tsx @@ -1,3 +1,5 @@ +'use client' + import { ArrowUpRightIcon } from '@heroicons/react/24/outline' import { Button } from '@sushiswap/ui' import { FC } from 'react' diff --git a/apps/evm/src/ui/swap/simple/simple-swap-bridge-banner.tsx b/apps/evm/src/ui/swap/simple/simple-swap-bridge-banner.tsx index 905db2791b..cdd793c2d9 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-bridge-banner.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-bridge-banner.tsx @@ -1,3 +1,5 @@ +'use client' + import { XIcon } from '@heroicons/react-v1/solid' import { ArrowUpRightIcon } from '@heroicons/react/20/solid' import { useLocalStorage } from '@sushiswap/hooks' diff --git a/apps/evm/src/ui/swap/simple/simple-swap-widget.tsx b/apps/evm/src/ui/swap/simple/simple-swap-widget.tsx index d22167ea6c..6391674f3c 100644 --- a/apps/evm/src/ui/swap/simple/simple-swap-widget.tsx +++ b/apps/evm/src/ui/swap/simple/simple-swap-widget.tsx @@ -1,5 +1,3 @@ -'use client' - import { CrossChainBanner } from '../cross-chain-banner' import { SwapModeButtons } from '../swap-mode-buttons' import { SimpleSwapAdditionalButton } from './simple-swap-additional-button' diff --git a/packages/ui/src/components/network-selector.tsx b/packages/ui/src/components/network-selector.tsx index 11436b0208..48c24dec9c 100644 --- a/packages/ui/src/components/network-selector.tsx +++ b/packages/ui/src/components/network-selector.tsx @@ -91,9 +91,6 @@ const NetworkSelector = ({
Aptos -
- NEW -
From c9102b0bf34bab59edd559c5f293afceed0f1371 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Mon, 10 Jun 2024 23:55:52 +0000 Subject: [PATCH 096/119] chore: move serialization to the sushi pkgs --- .../bonds/api/v1/bonds/[marketId]/route.ts | 9 +- apps/evm/src/app/bonds/api/v1/bonds/route.ts | 8 +- .../src/app/bonds/api/v1/positions/route.ts | 9 +- apps/evm/src/app/layout.tsx | 2 +- apps/evm/src/app/pool/[id]/(landing)/page.tsx | 6 +- .../src/app/pool/api/graphPool/[id]/route.ts | 9 +- .../api/pools/[chainId]/[address]/route.ts | 9 +- .../evm/src/app/pool/api/pools/count/route.ts | 9 +- apps/evm/src/app/pool/api/pools/route.ts | 9 +- .../steer-vault/[chainId]/[address]/route.ts | 9 +- .../app/pool/api/steer-vault/count/route.ts | 9 +- .../evm/src/app/pool/api/steer-vault/route.ts | 9 +- .../src/app/pool/api/user-with-pools/route.ts | 13 +- apps/evm/src/app/pool/api/user/route.ts | 8 +- apps/evm/src/app/providers.tsx | 2 +- apps/evm/src/lib/hooks/api/useGraphPool.ts | 28 ++-- .../evm/src/lib/hooks/api/usePoolGraphData.ts | 3 +- apps/evm/src/lib/serialization.ts | 35 ----- packages/client/src/functions.ts | 6 +- packages/sushi/src/bigint-serializer/index.ts | 138 +++--------------- 20 files changed, 91 insertions(+), 239 deletions(-) delete mode 100644 apps/evm/src/lib/serialization.ts diff --git a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts index 4ecaf9ba7f..4ecb4a1b6b 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/[marketId]/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { BondApiSchema, getBondFromSubgraph } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' export const revalidate = 3 @@ -24,10 +25,8 @@ export async function GET( return NextResponse.json({ error: 'Bond not found' }, { status: 404 }) } - const stringified = serialize(bond) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(bond, { + headers: CORS, }) } catch (e) { return NextResponse.json(e, { headers: CORS }) diff --git a/apps/evm/src/app/bonds/api/v1/bonds/route.ts b/apps/evm/src/app/bonds/api/v1/bonds/route.ts index 908929c349..c7d399101e 100644 --- a/apps/evm/src/app/bonds/api/v1/bonds/route.ts +++ b/apps/evm/src/app/bonds/api/v1/bonds/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { BondsApiSchema, getBondsFromSubgraph } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 3 @@ -15,11 +16,10 @@ export async function GET(request: Request) { try { const bonds = await getBondsFromSubgraph(result.data) - const stringified = serialize(bonds) - return new NextResponse(stringified, { + return NextResponse.json(bonds, { status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + headers: CORS, }) } catch (e) { return NextResponse.json(e, { headers: CORS }) diff --git a/apps/evm/src/app/bonds/api/v1/positions/route.ts b/apps/evm/src/app/bonds/api/v1/positions/route.ts index 62f15dfb29..96f46bfcbb 100644 --- a/apps/evm/src/app/bonds/api/v1/positions/route.ts +++ b/apps/evm/src/app/bonds/api/v1/positions/route.ts @@ -1,9 +1,10 @@ +import 'sushi/bigint-serializer' + import { BondsPositionsApiSchema, getBondPositionsFromSubgraph, } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 3 @@ -21,10 +22,8 @@ export async function GET(request: Request) { try { const positions = await getBondPositionsFromSubgraph(result.data) - const stringified = serialize(positions) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(positions, { + headers: CORS, }) } catch (e) { return NextResponse.json(e, { headers: CORS }) diff --git a/apps/evm/src/app/layout.tsx b/apps/evm/src/app/layout.tsx index 71cda0565d..2b3fe7e6a6 100644 --- a/apps/evm/src/app/layout.tsx +++ b/apps/evm/src/app/layout.tsx @@ -1,6 +1,6 @@ import '@sushiswap/ui/index.css' -import '../lib/serialization' +import 'sushi/bigint-serializer' import type { Metadata } from 'next' import { Inter, Roboto_Mono } from 'next/font/google' diff --git a/apps/evm/src/app/pool/[id]/(landing)/page.tsx b/apps/evm/src/app/pool/[id]/(landing)/page.tsx index 03a7a51d60..2631c14726 100644 --- a/apps/evm/src/app/pool/[id]/(landing)/page.tsx +++ b/apps/evm/src/app/pool/[id]/(landing)/page.tsx @@ -4,7 +4,7 @@ import { notFound } from 'next/navigation' import { PoolPageV2 } from 'src/ui/pool/PoolPageV2' import { PoolPageV3 } from 'src/ui/pool/PoolPageV3' -import { deserialize, serialize, unsanitize } from 'sushi' +import { unsanitize } from 'sushi' export default async function PoolPage({ params, @@ -13,12 +13,12 @@ export default async function PoolPage({ }) { const poolId = unsanitize(params.id) const pool = await unstable_cache( - async () => serialize(await getPool(poolId)), + async () => await getPool(poolId), ['pool', poolId], { revalidate: 60 * 15, }, - )().then(deserialize>>) + )() if (!pool) { notFound() diff --git a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts index bf73b1dbbf..ff245fdc6a 100644 --- a/apps/evm/src/app/pool/api/graphPool/[id]/route.ts +++ b/apps/evm/src/app/pool/api/graphPool/[id]/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { NextResponse } from 'next/server' import { getV2GraphPool } from 'src/lib/graph' -import { serialize } from 'sushi/bigint-serializer' import { z } from 'zod' export const revalidate = 15 @@ -20,9 +21,5 @@ export async function GET( } const pool = await getV2GraphPool(result.data.id) - const stringified = serialize(pool) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json' }, - }) + return NextResponse.json(pool) } diff --git a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts index d0d1a0324d..101c9b31c2 100644 --- a/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/pools/[chainId]/[address]/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { PoolApiSchema, getPoolFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' export const revalidate = 15 @@ -27,9 +28,7 @@ export async function GET( return NextResponse.json({ error: 'Failed to fetch pool' }, { status: 500 }) } - const stringified = serialize(pool) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(pool, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/pools/count/route.ts b/apps/evm/src/app/pool/api/pools/count/route.ts index 0bb01319c3..072245b225 100644 --- a/apps/evm/src/app/pool/api/pools/count/route.ts +++ b/apps/evm/src/app/pool/api/pools/count/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { PoolCountApiSchema, getPoolCountFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 15 @@ -14,9 +15,7 @@ export async function GET(request: Request) { } const count = await getPoolCountFromDB(result.data) - const stringified = serialize(count) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(count, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/pools/route.ts b/apps/evm/src/app/pool/api/pools/route.ts index e562bf36da..6443a12a5e 100644 --- a/apps/evm/src/app/pool/api/pools/route.ts +++ b/apps/evm/src/app/pool/api/pools/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { PoolsApiSchema, getPoolsFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../cors' export const revalidate = 15 @@ -15,9 +16,7 @@ export async function GET(request: Request) { const pools = await getPoolsFromDB(result.data) - const stringified = serialize(pools) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(pools, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts index 4eda485100..7e09de2f2d 100644 --- a/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/[chainId]/[address]/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { SteerVaultApiSchema, getSteerVaultFromDB } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../../cors' export const revalidate = 15 @@ -19,9 +20,7 @@ export async function GET( } const vault = await getSteerVaultFromDB(result.data) - const stringified = serialize(vault) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(vault, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/count/route.ts b/apps/evm/src/app/pool/api/steer-vault/count/route.ts index 47cd8a45c0..158150b100 100644 --- a/apps/evm/src/app/pool/api/steer-vault/count/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/count/route.ts @@ -1,9 +1,10 @@ +import 'sushi/bigint-serializer' + import { SteerVaultCountApiSchema, getSteerVaultCountFromDB, } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../../cors' export const revalidate = 15 @@ -19,9 +20,7 @@ export async function GET(request: Request) { } const count = await getSteerVaultCountFromDB(result.data) - const stringified = serialize(count) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(count, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/steer-vault/route.ts b/apps/evm/src/app/pool/api/steer-vault/route.ts index 47ac0f819c..cce9b56134 100644 --- a/apps/evm/src/app/pool/api/steer-vault/route.ts +++ b/apps/evm/src/app/pool/api/steer-vault/route.ts @@ -1,9 +1,10 @@ +import 'sushi/bigint-serializer' + import { SteerVaultsApiSchema, getSteerVaultsFromDB, } from '@sushiswap/client/api' import { NextResponse } from 'next/server.js' -import { serialize } from 'sushi/bigint-serializer' import { CORS } from '../cors' export const revalidate = 15 @@ -19,9 +20,7 @@ export async function GET(request: Request) { } const vaults = await getSteerVaultsFromDB(result.data) - const stringified = serialize(vaults) - return new NextResponse(stringified, { - status: 200, - headers: { 'content-type': 'application/json', ...CORS }, + return NextResponse.json(vaults, { + headers: CORS, }) } diff --git a/apps/evm/src/app/pool/api/user-with-pools/route.ts b/apps/evm/src/app/pool/api/user-with-pools/route.ts index 2f72bb2adf..97f88516cc 100644 --- a/apps/evm/src/app/pool/api/user-with-pools/route.ts +++ b/apps/evm/src/app/pool/api/user-with-pools/route.ts @@ -1,12 +1,12 @@ +import 'sushi/bigint-serializer' + import { getPools } from '@sushiswap/client' import type { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { NextResponse } from 'next/server' import { getUser, getV2GraphPools } from 'src/lib/graph' import { ChainId } from 'sushi/chain' -import { serialize } from 'sushi/bigint-serializer' import { isSushiSwapV2ChainId } from 'sushi/config' - import type { PoolBase, PoolIfIncentivized, @@ -53,11 +53,10 @@ export async function GET(request: Request) { const poolIds = data.map((position) => position.pool.id) if (poolIds.length === 0) { - return new NextResponse(serialize([]), { + return NextResponse.json([], { status: 200, headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', - 'content-type': 'application/json', ...CORS, }, }) @@ -108,12 +107,10 @@ export async function GET(request: Request) { } }) .filter((pool): pool is NonNullable => pool !== undefined) - const stringified = serialize(userPositions) - return new NextResponse(stringified, { - status: 200, + + return NextResponse.json(userPositions, { headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', - 'content-type': 'application/json', ...CORS, }, }) diff --git a/apps/evm/src/app/pool/api/user/route.ts b/apps/evm/src/app/pool/api/user/route.ts index cfa406900d..296dc97508 100644 --- a/apps/evm/src/app/pool/api/user/route.ts +++ b/apps/evm/src/app/pool/api/user/route.ts @@ -1,6 +1,7 @@ +import 'sushi/bigint-serializer' + import { NextResponse } from 'next/server' import { getUser } from 'src/lib/graph' -import { serialize } from 'sushi/bigint-serializer' import { ChainId } from 'sushi/chain' import { isSushiSwapV2ChainId } from 'sushi/config' import { Address } from 'viem' @@ -41,12 +42,9 @@ export async function GET(request: Request) { const args = result.data const data = await getUser(args) - const stringified = serialize(data) - return new NextResponse(stringified, { - status: 200, + return NextResponse.json(data, { headers: { 'Cache-Control': 'public, max-age=15, stale-while-revalidate=600', - 'content-type': 'application/json', ...CORS, }, }) diff --git a/apps/evm/src/app/providers.tsx b/apps/evm/src/app/providers.tsx index c4d4b1beec..43be3be656 100644 --- a/apps/evm/src/app/providers.tsx +++ b/apps/evm/src/app/providers.tsx @@ -1,6 +1,6 @@ 'use client' -import '../lib/serialization' +import 'sushi/bigint-serializer' import { State } from 'wagmi' diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index 25cc5178ef..cb79f1828b 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -1,12 +1,13 @@ 'use client' +import 'sushi/bigint-serializer' + import { SushiV2Pool } from '@sushiswap/graph-client-new/sushi-v2' import { useMemo } from 'react' import { Amount } from 'sushi/currency' -import useSWR from 'swr' +import { useQuery } from '@tanstack/react-query' import type { PoolId } from 'sushi' -import { deserialize } from 'sushi/bigint-serializer' import { getTokensFromPool } from '../useTokensFromPool' export function getGraphPoolUrl(poolId: string) { @@ -17,11 +18,15 @@ export const useGraphPool = (pool: PoolId) => { const { data: graphPool, isLoading, - isValidating, error, - } = useSWR(getGraphPoolUrl(pool.id), async (url) => - fetch(url).then(async (data) => deserialize(await data.text())), - ) + } = useQuery({ + queryKey: [getGraphPoolUrl(pool.id)], + queryFn: async () => { + const res = await fetch(getGraphPoolUrl(pool.id)) + + return JSON.parse(await res.text()) + }, + }) const { token0, token1, liquidityToken } = useMemo(() => { if (!graphPool) @@ -37,7 +42,6 @@ export const useGraphPool = (pool: PoolId) => { return useMemo(() => { return { isLoading, - isValidating, error, data: { token0, @@ -74,13 +78,5 @@ export const useGraphPool = (pool: PoolId) => { : null, }, } - }, [ - error, - graphPool, - isLoading, - isValidating, - liquidityToken, - token0, - token1, - ]) + }, [error, graphPool, isLoading, liquidityToken, token0, token1]) } diff --git a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts index 4254097f00..6461dd67f1 100644 --- a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts +++ b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts @@ -47,9 +47,8 @@ export const usePoolGraphData = ({ swapFee: Number(pair.swapFee), reserve0: Amount.fromRawAmount(token0, pair.reserve0), reserve1: Amount.fromRawAmount(token1, pair.reserve1), - liquidityNative: 0, liquidityUSD: Number(pair.liquidityUSD), - liquidity1dChange: 0, + liquidity1dChange: Number(pair.liquidityUSD1dChange), fees1d: Number(pair.feesUSD1d), fees1dChange: Number(pair.feesUSD1dChange), volume1d: Number(pair.volumeUSD1d), diff --git a/apps/evm/src/lib/serialization.ts b/apps/evm/src/lib/serialization.ts deleted file mode 100644 index b945587acc..0000000000 --- a/apps/evm/src/lib/serialization.ts +++ /dev/null @@ -1,35 +0,0 @@ -declare global { - interface BigInt { - toJSON: () => { __type: 'bigint'; value: string } - } -} - -if (!BigInt.prototype.toJSON) { - Object.defineProperty(BigInt.prototype, 'toJSON', { - get() { - return () => ({ - __type: 'bigint', - value: this.toString(), - }) - }, - }) -} - -const parse = JSON.parse -JSON.parse = (text: string, reviver?: (key: any, value: any) => any) => { - return parse.bind(this)(text, (key, value_) => { - let value = value_ - - if (value?.__type === 'bigint') { - value = BigInt(value.value) - } - - if (reviver) { - return reviver(key, value) - } - - return value - }) -} - -export {} diff --git a/packages/client/src/functions.ts b/packages/client/src/functions.ts index f4a055c443..16ea296504 100644 --- a/packages/client/src/functions.ts +++ b/packages/client/src/functions.ts @@ -1,4 +1,4 @@ -import { deserialize } from 'sushi/bigint-serializer' +import 'sushi/bigint-serializer' export function parseArgs(args?: Partial) { if (!args) return '' @@ -23,7 +23,5 @@ export async function get(url: string): Promise { throw new Error(`Failed to fetch ${url}: ${res.status} ${res.statusText}`) } - const text = await res.text() - - return deserialize(text) + return res.json() as T } diff --git a/packages/sushi/src/bigint-serializer/index.ts b/packages/sushi/src/bigint-serializer/index.ts index 2b1adef1c2..76a41164a6 100644 --- a/packages/sushi/src/bigint-serializer/index.ts +++ b/packages/sushi/src/bigint-serializer/index.ts @@ -1,122 +1,32 @@ -// Stolen from https://github.com/wevm/wagmi/blob/main/packages/core/src/utils/ - -/** - * Get the reference key for the circular value - * - * @param keys the keys to build the reference key from - * @param cutoff the maximum number of keys to include - * @returns the reference key - */ -function getReferenceKey(keys: string[], cutoff: number) { - return keys.slice(0, cutoff).join('.') || '.' -} - -/** - * Faster `Array.prototype.indexOf` implementation build for slicing / splicing - * - * @param array the array to match the value in - * @param value the value to match - * @returns the matching index, or -1 - */ -function getCutoff(array: any[], value: any) { - const { length } = array - - for (let index = 0; index < length; ++index) { - if (array[index] === value) { - return index + 1 - } +declare global { + interface BigInt { + toJSON: () => { __type: 'bigint'; value: string } } - - return 0 } -type StandardReplacer = (key: string, value: any) => any - -/** - * Create a replacer method that handles circular values - * - * @param [replacer] a custom replacer to use for non-circular values - * @param [circularReplacer] a custom replacer to use for circular methods - * @returns the value to stringify - */ -function createReplacer( - replacer?: StandardReplacer | null | undefined, -): StandardReplacer { - const hasReplacer = typeof replacer === 'function' - - const cache: any[] = [] - const keys: string[] = [] - - return function replace(this: any, key: string, value: any) { - if (typeof value === 'object') { - if (cache.length) { - const thisCutoff = getCutoff(cache, this) - - if (thisCutoff === 0) { - cache[cache.length] = this - } else { - cache.splice(thisCutoff) - keys.splice(thisCutoff) - } - - keys[keys.length] = key - - const valueCutoff = getCutoff(cache, value) - - if (valueCutoff !== 0) { - return `[ref=${getReferenceKey(keys, valueCutoff)}]` - } - } else { - cache[0] = value - keys[0] = key - } - } - - return hasReplacer ? replacer.call(this, key, value) : value - } -} - -/** - * Stringifier that handles circular values - * - * Forked from https://github.com/planttheidea/fast-stringify - * - * @param value to stringify - * @param [replacer] a custom replacer function for handling standard values - * @param [indent] the number of spaces to indent the output by - * @param [circularReplacer] a custom replacer function for handling circular values - * @returns the stringified output - */ -export function serialize( - value: any, - replacer?: StandardReplacer | (string | number)[] | null | undefined, - indent?: number | string | null | undefined, -) { - if (Array.isArray(replacer)) { - throw new Error('Array replacer is not supported') - } - - return JSON.stringify( - value, - createReplacer((key, value_) => { - let value = value_ - if (typeof value === 'bigint') - value = { __type: 'bigint', value: value_.toString() } - if (value instanceof Map) - value = { __type: 'Map', value: Array.from(value_.entries()) } - return replacer?.(key, value) ?? value - }), - indent ?? undefined, - ) +if (!BigInt.prototype.toJSON) { + Object.defineProperty(BigInt.prototype, 'toJSON', { + get() { + return () => ({ + __type: 'bigint', + value: this.toString(), + }) + }, + }) } -type Reviver = (key: string, value: any) => any - -export function deserialize(value: string, reviver?: Reviver): type { - return JSON.parse(value, (key, value_) => { +const parse = JSON.parse +JSON.parse = (text: string, reviver?: (key: any, value: any) => any) => { + return parse.bind(this)(text, (key, value_) => { let value = value_ - if (value?.__type === 'bigint') value = BigInt(value.value) - if (value?.__type === 'Map') value = new Map(value.value) - return reviver?.(key, value) ?? value + if (value?.__type === 'bigint') { + value = BigInt(value.value) + } + if (reviver) { + return reviver(key, value) + } + return value }) } + +export {} From 49044845fd58bb294584124fcaf1703d4699cae0 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 11 Jun 2024 12:21:41 +0200 Subject: [PATCH 097/119] fix: use-rewarder dep array, retry on v2 pools --- apps/evm/src/lib/graph.ts | 2 + .../wagmi/hooks/master-chef/use-rewarder.ts | 63 ++++++++++--------- 2 files changed, 34 insertions(+), 31 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index ac86061023..4a15b0f683 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -42,6 +42,8 @@ export const getV2GraphPool = async (id: string) => { const pool = await getSushiV2Pool({ chainId: split.chainId, id: split.address, + }, { + retries: 3 }) return pool diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts index a3188afc74..18fdb8319e 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts @@ -135,7 +135,7 @@ export const useRewarder = ({ const queryClient = useQueryClient() - const { data, queryKey, ...rest } = useReadContracts({ + const { isError, isLoading, data, queryKey } = useReadContracts({ contracts, allowFailure: true, query: { @@ -153,37 +153,38 @@ export const useRewarder = ({ } }, [blockNumber, queryClient, queryKey]) - return { - data: useMemo(() => { - if (!data) { - return rewardTokens.map(() => undefined) + return useMemo(() => { + if (!data) + return { + data: rewardTokens.map(() => undefined), + isLoading, + isError, } - // ! POSSIBLY BROKE IT, TEST - return data.reduce<(Amount | undefined)[]>( - (acc, result, index) => { - if (typeof result === 'bigint') { - acc.push( - result - ? Amount.fromRawAmount(rewardTokens[index], result) - : undefined, - ) - } else if (typeof result !== 'undefined') { - acc.push( - ...result[1].map((rewardAmount, index2: number) => { - return Amount.fromRawAmount( - rewardTokens[index + index2], - rewardAmount, - ) - }), - ) - } + // ! POSSIBLY BROKE IT, TEST + return { + data: data.reduce<(Amount | undefined)[]>((acc, result, index) => { + if (typeof result === 'bigint') { + acc.push( + result + ? Amount.fromRawAmount(rewardTokens[index], result) + : undefined, + ) + } else if (typeof result !== 'undefined') { + acc.push( + ...result[1].map((rewardAmount, index2: number) => { + return Amount.fromRawAmount( + rewardTokens[index + index2], + rewardAmount, + ) + }), + ) + } - return acc - }, - [], - ) - }, [data, rewardTokens]), - ...rest, - } + return acc + }, []), + isLoading, + isError, + } + }, [data, isError, isLoading, rewardTokens]) } From 0a84abc689283db0dcf4caab0e5cce1aafbe3e5c Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 11 Jun 2024 10:23:00 +0000 Subject: [PATCH 098/119] chore: format --- apps/evm/src/lib/graph.ts | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 4a15b0f683..5b16d41c91 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -39,12 +39,15 @@ export const getV2GraphPool = async (id: string) => { if (!isSushiSwapV2ChainId(split.chainId)) throw Error('Invalid chain id') - const pool = await getSushiV2Pool({ - chainId: split.chainId, - id: split.address, - }, { - retries: 3 - }) + const pool = await getSushiV2Pool( + { + chainId: split.chainId, + id: split.address, + }, + { + retries: 3, + }, + ) return pool } From 5a14b3e8fe3cf328389f491164bcf430fdfa7c5e Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Tue, 11 Jun 2024 11:15:56 +0000 Subject: [PATCH 099/119] fix(apps/evm): missing retval --- apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts index 18fdb8319e..75d53d93c8 100644 --- a/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts +++ b/apps/evm/src/lib/wagmi/hooks/master-chef/use-rewarder.ts @@ -135,7 +135,7 @@ export const useRewarder = ({ const queryClient = useQueryClient() - const { isError, isLoading, data, queryKey } = useReadContracts({ + const { isError, isInitialLoading, data, queryKey } = useReadContracts({ contracts, allowFailure: true, query: { @@ -157,7 +157,7 @@ export const useRewarder = ({ if (!data) return { data: rewardTokens.map(() => undefined), - isLoading, + isInitialLoading, isError, } @@ -183,8 +183,8 @@ export const useRewarder = ({ return acc }, []), - isLoading, + isInitialLoading, isError, } - }, [data, isError, isLoading, rewardTokens]) + }, [data, isError, isInitialLoading, rewardTokens]) } From 39a9163aea055f062b186f9ac9048f912ddda23e Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 11 Jun 2024 13:23:00 +0200 Subject: [PATCH 100/119] fix: types --- apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx index 0557938dc3..8841d94017 100644 --- a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx @@ -93,7 +93,7 @@ export const _PoolPositionRewardsProvider: FC< const { data: pendingRewards, - isInitialLoading: isLoading, + isLoading, isError, } = useRewarder({ chainId: pool.chainId as ChainId, From 5c50411ed0df30f044ff2846a9ddc43bf03716ac Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Tue, 11 Jun 2024 13:26:48 +0000 Subject: [PATCH 101/119] fix: types --- apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx index 8841d94017..0557938dc3 100644 --- a/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx +++ b/apps/evm/src/ui/pool/PoolPositionRewardsProvider.tsx @@ -93,7 +93,7 @@ export const _PoolPositionRewardsProvider: FC< const { data: pendingRewards, - isLoading, + isInitialLoading: isLoading, isError, } = useRewarder({ chainId: pool.chainId as ChainId, From a1dbe894eb3fd6edfa75318a0f5acdcdb2e08f13 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Tue, 11 Jun 2024 13:29:21 +0000 Subject: [PATCH 102/119] chore: rename graph-client-new to graph-client --- apps/evm/package.json | 2 +- apps/evm/src/app/(landing)/api/stats/route.ts | 6 ++--- .../analytics/vault/use-bentobox-tokens.ts | 2 +- .../src/app/api/campaign/taskon/core/route.ts | 2 +- apps/evm/src/app/internal/tokens/lib/index.ts | 4 ++-- apps/evm/src/lib/analytics/use-furo-tokens.ts | 2 +- apps/evm/src/lib/graph.ts | 22 +++++++++---------- apps/evm/src/lib/hooks/api/useGraphPool.ts | 2 +- .../evm/src/lib/hooks/api/usePoolGraphData.ts | 2 +- .../lib/hooks/api/useSushiV2UserPositions.ts | 2 +- apps/evm/src/lib/stake/use-bar-chart-data.ts | 2 +- apps/evm/src/lib/stake/use-bar-data.ts | 2 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV3.tsx | 2 +- apps/evm/src/ui/pool/columns.tsx | 2 +- jobs/pool/package.json | 2 +- .../src/lib/chefs/masterChefV2/fetchers.ts | 2 +- jobs/pool/src/lib/chefs/minichef/fetchers.ts | 2 +- jobs/pool/src/lib/common/pairs.ts | 2 +- jobs/pool/src/lib/common/tokens.ts | 2 +- jobs/pool/src/pools.ts | 14 ++++-------- jobs/pool/src/steer.ts | 2 +- packages/client/package.json | 2 +- packages/client/src/api/bonds/bonds/index.ts | 2 +- .../client/src/api/bonds/positions/index.ts | 2 +- .../package.json | 4 ++-- .../scripts/t.ts | 0 .../scripts/tsconfig.json | 0 .../scripts/update-schemas.ts | 0 .../src/composite/chef-user-positions.ts | 0 .../src/composite/sushi-day-datas.ts | 0 .../src/composite/sushi-historic-pool.ts | 0 .../sushi-v2-staked-unstaked-positions.ts | 0 .../src/lib/fetch-error.ts | 0 .../src/lib/modifiers/add-chain-id.ts | 0 .../modifiers/convert-id-to-multichain-id.ts | 0 .../src/lib/modifiers/copy-id-to-address.ts | 0 .../src/lib/request-paged.ts | 0 .../src/lib/request.ts | 0 .../src/lib/types/chainId.ts | 0 .../src/lib/types/hex.ts | 0 .../src/lib/types/scalars.ts | 0 .../src/multichain/fetch-multichain.ts | 0 .../src/multichain/index.ts | 0 .../src/subgraphs/.gitignore | 0 .../src/subgraphs/bentobox/graphql.ts | 0 .../src/subgraphs/bentobox/index.ts | 0 .../src/subgraphs/bentobox/queries/rebases.ts | 0 .../src/subgraphs/bentobox/schema.graphql | 0 .../src/subgraphs/blocks/graphql.ts | 0 .../src/subgraphs/blocks/index.ts | 0 .../blocks/queries/block-historic.ts | 0 .../src/subgraphs/blocks/queries/blocks.ts | 0 .../src/subgraphs/blocks/schema.graphql | 0 .../src/subgraphs/bonds/graphql.ts | 0 .../src/subgraphs/bonds/index.ts | 0 .../src/subgraphs/bonds/queries/markets.ts | 0 .../src/subgraphs/bonds/queries/positions.ts | 0 .../src/subgraphs/bonds/schema.graphql | 0 .../src/subgraphs/furo/graphql.ts | 0 .../src/subgraphs/furo/index.ts | 0 .../src/subgraphs/furo/queries/tokens.ts | 0 .../src/subgraphs/furo/schema.graphql | 0 .../src/subgraphs/master-chef-v1/graphql.ts | 0 .../src/subgraphs/master-chef-v1/index.ts | 0 .../master-chef-v1/queries/user-positions.ts | 0 .../subgraphs/master-chef-v1/schema.graphql | 0 .../src/subgraphs/master-chef-v2/graphql.ts | 0 .../src/subgraphs/master-chef-v2/index.ts | 0 .../master-chef-v2/queries/rewarders.ts | 0 .../master-chef-v2/queries/user-positions.ts | 0 .../subgraphs/master-chef-v2/schema.graphql | 0 .../src/subgraphs/mini-chef/graphql.ts | 0 .../src/subgraphs/mini-chef/index.ts | 0 .../subgraphs/mini-chef/queries/rewarders.ts | 0 .../mini-chef/queries/user-positions.ts | 0 .../src/subgraphs/mini-chef/schema.graphql | 0 .../src/subgraphs/steer/graphql.ts | 0 .../src/subgraphs/steer/index.ts | 0 .../src/subgraphs/steer/queries/vaults.ts | 0 .../src/subgraphs/steer/schema.graphql | 0 .../src/subgraphs/sushi-bar/graphql.ts | 0 .../src/subgraphs/sushi-bar/index.ts | 0 .../sushi-bar/queries/bar-history.ts | 0 .../src/subgraphs/sushi-bar/queries/bar.ts | 0 .../src/subgraphs/sushi-bar/schema.graphql | 0 .../sushi-v2/fragments/pool-fields.ts | 0 .../src/subgraphs/sushi-v2/graphql.ts | 0 .../src/subgraphs/sushi-v2/index.ts | 0 .../src/subgraphs/sushi-v2/queries/burns.ts | 0 .../subgraphs/sushi-v2/queries/day-datas.ts | 0 .../src/subgraphs/sushi-v2/queries/factory.ts | 0 .../sushi-v2/queries/liquidity-positions.ts | 0 .../src/subgraphs/sushi-v2/queries/mints.ts | 0 .../sushi-v2/queries/pool-with-buckets.ts | 0 .../src/subgraphs/sushi-v2/queries/pool.ts | 0 .../src/subgraphs/sushi-v2/queries/pools.ts | 0 .../src/subgraphs/sushi-v2/queries/swaps.ts | 0 .../src/subgraphs/sushi-v2/queries/tokens.ts | 0 .../sushi-v2/queries/transactions.ts | 0 .../src/subgraphs/sushi-v2/schema.graphql | 0 .../sushi-v2/transforms/bucket-v2-to-std.ts | 0 .../sushi-v2/transforms/pool-v2-to-base.ts | 0 .../sushi-v3/fragments/pool-fields.ts | 0 .../src/subgraphs/sushi-v3/graphql.ts | 0 .../src/subgraphs/sushi-v3/index.ts | 0 .../src/subgraphs/sushi-v3/queries/burns.ts | 0 .../subgraphs/sushi-v3/queries/collects.ts | 0 .../subgraphs/sushi-v3/queries/day-datas.ts | 0 .../src/subgraphs/sushi-v3/queries/factory.ts | 0 .../src/subgraphs/sushi-v3/queries/mints.ts | 0 .../sushi-v3/queries/pool-with-buckets.ts | 0 .../src/subgraphs/sushi-v3/queries/pool.ts | 0 .../sushi-v3/queries/pools-by-token-pair.ts | 0 .../src/subgraphs/sushi-v3/queries/pools.ts | 0 .../src/subgraphs/sushi-v3/queries/swaps.ts | 0 .../sushi-v3/queries/transactions.ts | 0 .../src/subgraphs/sushi-v3/schema.graphql | 0 .../sushi-v3/transforms/bucket-v3-to-std.ts | 0 .../sushi-v3/transforms/pool-v3-to-base.ts | 0 .../tsconfig.json | 0 pnpm-lock.yaml | 14 ++++++------ 122 files changed, 50 insertions(+), 56 deletions(-) rename packages/{graph-client-new => graph-client}/package.json (96%) rename packages/{graph-client-new => graph-client}/scripts/t.ts (100%) rename packages/{graph-client-new => graph-client}/scripts/tsconfig.json (100%) rename packages/{graph-client-new => graph-client}/scripts/update-schemas.ts (100%) rename packages/{graph-client-new => graph-client}/src/composite/chef-user-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/composite/sushi-day-datas.ts (100%) rename packages/{graph-client-new => graph-client}/src/composite/sushi-historic-pool.ts (100%) rename packages/{graph-client-new => graph-client}/src/composite/sushi-v2-staked-unstaked-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/fetch-error.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/modifiers/add-chain-id.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/modifiers/convert-id-to-multichain-id.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/modifiers/copy-id-to-address.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/request-paged.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/request.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/types/chainId.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/types/hex.ts (100%) rename packages/{graph-client-new => graph-client}/src/lib/types/scalars.ts (100%) rename packages/{graph-client-new => graph-client}/src/multichain/fetch-multichain.ts (100%) rename packages/{graph-client-new => graph-client}/src/multichain/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/.gitignore (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bentobox/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bentobox/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bentobox/queries/rebases.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bentobox/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/blocks/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/blocks/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/blocks/queries/block-historic.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/blocks/queries/blocks.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/blocks/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bonds/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bonds/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bonds/queries/markets.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bonds/queries/positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/bonds/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/furo/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/furo/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/furo/queries/tokens.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/furo/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v1/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v1/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v1/queries/user-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v1/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v2/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v2/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v2/queries/rewarders.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v2/queries/user-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/master-chef-v2/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/mini-chef/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/mini-chef/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/mini-chef/queries/rewarders.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/mini-chef/queries/user-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/mini-chef/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/steer/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/steer/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/steer/queries/vaults.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/steer/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-bar/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-bar/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-bar/queries/bar-history.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-bar/queries/bar.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-bar/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/fragments/pool-fields.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/burns.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/day-datas.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/factory.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/liquidity-positions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/mints.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/pool.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/pools.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/swaps.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/tokens.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/queries/transactions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/fragments/pool-fields.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/graphql.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/index.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/burns.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/collects.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/day-datas.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/factory.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/mints.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/pool.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/pools.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/swaps.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/queries/transactions.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/schema.graphql (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts (100%) rename packages/{graph-client-new => graph-client}/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts (100%) rename packages/{graph-client-new => graph-client}/tsconfig.json (100%) diff --git a/apps/evm/package.json b/apps/evm/package.json index 05bac160d6..7897cb11cf 100644 --- a/apps/evm/package.json +++ b/apps/evm/package.json @@ -29,7 +29,7 @@ "@sushiswap/client": "workspace:*", "@sushiswap/database": "workspace:*", "@sushiswap/dexie": "workspace:*", - "@sushiswap/graph-client-new": "workspace:*", + "@sushiswap/graph-client": "workspace:*", "@sushiswap/hooks": "workspace:*", "@sushiswap/nextjs-config": "workspace:*", "@sushiswap/react-query": "workspace:*", diff --git a/apps/evm/src/app/(landing)/api/stats/route.ts b/apps/evm/src/app/(landing)/api/stats/route.ts index 3ba516ab57..c09da8dfc7 100644 --- a/apps/evm/src/app/(landing)/api/stats/route.ts +++ b/apps/evm/src/app/(landing)/api/stats/route.ts @@ -1,6 +1,3 @@ -import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' -import { getSushiV2Factory } from '@sushiswap/graph-client-new/sushi-v2' -import { getSushiV3Factory } from '@sushiswap/graph-client-new/sushi-v3' import { NextResponse } from 'next/server' import { DISABLED_ANALYTICS_CHAIN_IDS } from 'src/config' import { ChainId } from 'sushi/chain' @@ -10,6 +7,9 @@ import { } from 'sushi/config' import { SUSHI_ADDRESS } from 'sushi/currency' import { formatNumber, formatUSD } from 'sushi/format' +import { fetchMultichain } from '../../../../../../../packages/graph-client/dist/multichain' +import { getSushiV2Factory } from '../../../../../../../packages/graph-client/dist/subgraphs/sushi-v2' +import { getSushiV3Factory } from '../../../../../../../packages/graph-client/dist/subgraphs/sushi-v3' const getSushiPriceUSD = async () => { const url = `https://api.sushi.com/price/v1/1/${ diff --git a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts index eb4824c7d5..992f4b9081 100644 --- a/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts +++ b/apps/evm/src/app/analytics/vault/use-bentobox-tokens.ts @@ -1,10 +1,10 @@ 'use client' import { GetApiInputFromOutput, parseArgs } from '@sushiswap/client' -import type { BentoBoxRebases } from '@sushiswap/graph-client-new/bentobox' import { useAllPrices } from '@sushiswap/react-query' import { useMemo } from 'react' import { Amount, Token } from 'sushi/currency' +import type { BentoBoxRebases } from '../../../../../../packages/graph-client/dist/subgraphs/bentobox' import { useQuery } from '@tanstack/react-query' import { bentoBoxTokensSchema } from '../../../lib/schema' diff --git a/apps/evm/src/app/api/campaign/taskon/core/route.ts b/apps/evm/src/app/api/campaign/taskon/core/route.ts index caed28293b..2285a53c55 100644 --- a/apps/evm/src/app/api/campaign/taskon/core/route.ts +++ b/apps/evm/src/app/api/campaign/taskon/core/route.ts @@ -1,8 +1,8 @@ -import { getSushiV3Mints } from '@sushiswap/graph-client-new/sushi-v3' import { NextRequest, NextResponse } from 'next/server' import { ChainId } from 'sushi/chain' import { getAddress } from 'viem' import { z } from 'zod' +import { getSushiV3Mints } from '../../../../../../../../packages/graph-client/dist/subgraphs/sushi-v3' const schema = z.object({ address: z.coerce.string().transform((address) => getAddress(address)), diff --git a/apps/evm/src/app/internal/tokens/lib/index.ts b/apps/evm/src/app/internal/tokens/lib/index.ts index cfe4b8c41e..d2dced1a1a 100644 --- a/apps/evm/src/app/internal/tokens/lib/index.ts +++ b/apps/evm/src/app/internal/tokens/lib/index.ts @@ -1,8 +1,8 @@ -import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' -import { getSushiV2Tokens } from '@sushiswap/graph-client-new/sushi-v2' import { ChainId } from 'sushi/chain' import { SushiSwapV2ChainId } from 'sushi/config' import { SUSHI_DEFAULT_TOKEN_LIST } from 'sushi/token-list' +import { fetchMultichain } from '../../../../../../../packages/graph-client/dist/multichain' +import { getSushiV2Tokens } from '../../../../../../../packages/graph-client/dist/subgraphs/sushi-v2' export type Token = Awaited>[0] diff --git a/apps/evm/src/lib/analytics/use-furo-tokens.ts b/apps/evm/src/lib/analytics/use-furo-tokens.ts index d0085a9e53..e9ea04a106 100644 --- a/apps/evm/src/lib/analytics/use-furo-tokens.ts +++ b/apps/evm/src/lib/analytics/use-furo-tokens.ts @@ -6,7 +6,7 @@ import { useMemo } from 'react' import { Amount, Token } from 'sushi/currency' import useSWR from 'swr' -import { FuroTokens } from '@sushiswap/graph-client-new/furo' +import { FuroTokens } from '../../../../../packages/graph-client/dist/subgraphs/furo' import { furoTokensSchema } from '../schema' export type GetFuroTokenArgs = GetApiInputFromOutput< diff --git a/apps/evm/src/lib/graph.ts b/apps/evm/src/lib/graph.ts index 5b16d41c91..5932c5fab3 100644 --- a/apps/evm/src/lib/graph.ts +++ b/apps/evm/src/lib/graph.ts @@ -1,14 +1,3 @@ -import { getRebases as _getRebases } from '@sushiswap/graph-client-new/bentobox' -import { getSushiDayDatas } from '@sushiswap/graph-client-new/composite/sushi-day-datas' -import { getSushiV2StakedUnstakedPositions } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' -import { getFuroTokens as _getFuroTokens } from '@sushiswap/graph-client-new/furo' -import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' -import { - SushiV2Pools, - getSushiV2Pool, - getSushiV2Pools, -} from '@sushiswap/graph-client-new/sushi-v2' -import { getSushiV3PoolsByTokenPair } from '@sushiswap/graph-client-new/sushi-v3' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { SUSHISWAP_V2_SUPPORTED_CHAIN_IDS, @@ -18,6 +7,17 @@ import { } from 'sushi/config' import { getChainIdAddressFromId } from 'sushi/format' import { Address } from 'viem' +import { getSushiDayDatas } from '../../../../packages/graph-client/dist/composite/sushi-day-datas' +import { getSushiV2StakedUnstakedPositions } from '../../../../packages/graph-client/dist/composite/sushi-v2-staked-unstaked-positions' +import { fetchMultichain } from '../../../../packages/graph-client/dist/multichain' +import { getRebases as _getRebases } from '../../../../packages/graph-client/dist/subgraphs/bentobox' +import { getFuroTokens as _getFuroTokens } from '../../../../packages/graph-client/dist/subgraphs/furo' +import { + SushiV2Pools, + getSushiV2Pool, + getSushiV2Pools, +} from '../../../../packages/graph-client/dist/subgraphs/sushi-v2' +import { getSushiV3PoolsByTokenPair } from '../../../../packages/graph-client/dist/subgraphs/sushi-v3' import { bentoBoxTokensSchema, furoTokensSchema } from './schema' export async function getUser(args: { diff --git a/apps/evm/src/lib/hooks/api/useGraphPool.ts b/apps/evm/src/lib/hooks/api/useGraphPool.ts index cb79f1828b..cd1907cac1 100644 --- a/apps/evm/src/lib/hooks/api/useGraphPool.ts +++ b/apps/evm/src/lib/hooks/api/useGraphPool.ts @@ -2,9 +2,9 @@ import 'sushi/bigint-serializer' -import { SushiV2Pool } from '@sushiswap/graph-client-new/sushi-v2' import { useMemo } from 'react' import { Amount } from 'sushi/currency' +import { SushiV2Pool } from '../../../../../../packages/graph-client/dist/subgraphs/sushi-v2' import { useQuery } from '@tanstack/react-query' import type { PoolId } from 'sushi' diff --git a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts index 6461dd67f1..c967c0b0c8 100644 --- a/apps/evm/src/lib/hooks/api/usePoolGraphData.ts +++ b/apps/evm/src/lib/hooks/api/usePoolGraphData.ts @@ -1,9 +1,9 @@ 'use client' -import { getSushiHistoricPool } from '@sushiswap/graph-client-new/composite/sushi-historic-pool' import { useQuery } from '@tanstack/react-query' import { SushiSwapV2ChainId } from 'sushi/config' import { Amount, Token } from 'sushi/currency' +import { getSushiHistoricPool } from '../../../../../../packages/graph-client/dist/composite/sushi-historic-pool' interface UsePoolGraphDataParams { poolAddress: string diff --git a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts index ed3c654089..a7b810cfb4 100644 --- a/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts +++ b/apps/evm/src/lib/hooks/api/useSushiV2UserPositions.ts @@ -1,10 +1,10 @@ 'use client' import { parseArgs } from '@sushiswap/client' -import type { GetSushiV2StakedUnstakedPositions } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import { useQuery } from '@tanstack/react-query' import { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { ChainId } from 'sushi/chain' +import type { GetSushiV2StakedUnstakedPositions } from '../../../../../../packages/graph-client/dist/composite/sushi-v2-staked-unstaked-positions' export interface GetUserArgs { id?: string diff --git a/apps/evm/src/lib/stake/use-bar-chart-data.ts b/apps/evm/src/lib/stake/use-bar-chart-data.ts index f3fa0a9923..1c7f8e901a 100644 --- a/apps/evm/src/lib/stake/use-bar-chart-data.ts +++ b/apps/evm/src/lib/stake/use-bar-chart-data.ts @@ -1,7 +1,7 @@ 'use client' -import { getSushiBarHistory } from '@sushiswap/graph-client-new/sushi-bar' import { useQuery } from '@tanstack/react-query' +import { getSushiBarHistory } from '../../../../../packages/graph-client/dist/subgraphs/sushi-bar' export const useBarChartData = (enabled = true) => { return useQuery({ diff --git a/apps/evm/src/lib/stake/use-bar-data.ts b/apps/evm/src/lib/stake/use-bar-data.ts index f4ac06b432..227e176871 100644 --- a/apps/evm/src/lib/stake/use-bar-data.ts +++ b/apps/evm/src/lib/stake/use-bar-data.ts @@ -1,7 +1,7 @@ 'use client' -import { getSushiBar } from '@sushiswap/graph-client-new/sushi-bar' import { useQuery } from '@tanstack/react-query' +import { getSushiBar } from '../../../../../packages/graph-client/dist/subgraphs/sushi-bar' export const useBarData = (enabled = true) => { return useQuery({ diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 066f70b16c..1d658084ff 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -20,7 +20,7 @@ import { getSushiV2Mints, getSushiV2Swaps, getSushiV2Transactions, -} from '@sushiswap/graph-client-new/sushi-v2' +} from '../../../../../packages/graph-client/dist/subgraphs/sushi-v2' import { TX_AMOUNT_IN_V2_COLUMN, TX_AMOUNT_OUT_V2_COLUMN, diff --git a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx index 63d761dd0c..620ba22053 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx @@ -21,7 +21,7 @@ import { getSushiV3Mints, getSushiV3Swaps, getSushiV3Transactions, -} from '@sushiswap/graph-client-new/sushi-v3' +} from '../../../../../packages/graph-client/dist/subgraphs/sushi-v3' import { TX_AMOUNT_IN_V3_COLUMN, TX_AMOUNT_OUT_V3_COLUMN, diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index df9aa5348c..602de09669 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -19,7 +19,6 @@ import { shortenAddress, } from 'sushi/format' -import { SushiV2StakedUnstakedPosition } from '@sushiswap/graph-client-new/composite/sushi-v2-staked-unstaked-positions' import { PoolHasSteerVaults } from '@sushiswap/steer-sdk' import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' import type { @@ -35,6 +34,7 @@ import type { SushiPositionWithPool, } from 'sushi' import { unnestPool } from 'sushi/types' +import { SushiV2StakedUnstakedPosition } from '../../../../../packages/graph-client/dist/composite/sushi-v2-staked-unstaked-positions' import { APRHoverCard } from './APRHoverCard' import { ConcentratedLiquidityPositionAPRCell } from './ConcentratedLiquidityPositionAPRCell' import { PoolNameCell } from './PoolNameCell' diff --git a/jobs/pool/package.json b/jobs/pool/package.json index c165a90e8a..a0150ed8e1 100644 --- a/jobs/pool/package.json +++ b/jobs/pool/package.json @@ -41,7 +41,7 @@ "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/client": "workspace:*", "@sushiswap/database": "workspace:*", - "@sushiswap/graph-client-new": "workspace:*", + "@sushiswap/graph-client": "workspace:*", "@sushiswap/steer-sdk": "workspace:*", "@sushiswap/wagmi-config": "workspace:*", "@wagmi/core": "2.10.2", diff --git a/jobs/pool/src/lib/chefs/masterChefV2/fetchers.ts b/jobs/pool/src/lib/chefs/masterChefV2/fetchers.ts index 6c9a6533b6..d1c97142c3 100644 --- a/jobs/pool/src/lib/chefs/masterChefV2/fetchers.ts +++ b/jobs/pool/src/lib/chefs/masterChefV2/fetchers.ts @@ -2,7 +2,7 @@ import { readContract, readContracts } from '@wagmi/core' import { masterChefV2Abi } from 'sushi/abi' import { ChainId } from 'sushi/chain' -import { getMasterChefV2Rewarders } from '@sushiswap/graph-client-new/master-chef-v2' +import { getMasterChefV2Rewarders } from '@sushiswap/graph-client/master-chef-v2' import { config } from 'src/lib/wagmi.js' import { MASTERCHEF_V2_ADDRESS } from '../../../config.js' diff --git a/jobs/pool/src/lib/chefs/minichef/fetchers.ts b/jobs/pool/src/lib/chefs/minichef/fetchers.ts index b6e57e575e..9a21e260eb 100644 --- a/jobs/pool/src/lib/chefs/minichef/fetchers.ts +++ b/jobs/pool/src/lib/chefs/minichef/fetchers.ts @@ -3,7 +3,7 @@ import zip from 'lodash.zip' import { complexRewarderTimeAbi, miniChefAbi } from 'sushi/abi' import { ChainId } from 'sushi/chain' -import { getMiniChefRewarders } from '@sushiswap/graph-client-new/mini-chef' +import { getMiniChefRewarders } from '@sushiswap/graph-client/mini-chef' import { config } from 'src/lib/wagmi.js' import { MiniChefChainId } from 'sushi/config' import { Address } from 'viem' diff --git a/jobs/pool/src/lib/common/pairs.ts b/jobs/pool/src/lib/common/pairs.ts index 415b5edd29..8cd8f543e8 100644 --- a/jobs/pool/src/lib/common/pairs.ts +++ b/jobs/pool/src/lib/common/pairs.ts @@ -1,4 +1,4 @@ -import { getSushiV2Pools } from '@sushiswap/graph-client-new/sushi-v2' +import { getSushiV2Pools } from '@sushiswap/graph-client/sushi-v2' import { SushiSwapV2ChainId } from 'sushi/config' import { Address } from 'viem' import type { Farm } from '../types.js' diff --git a/jobs/pool/src/lib/common/tokens.ts b/jobs/pool/src/lib/common/tokens.ts index 21e60d9ed8..08bda9077f 100644 --- a/jobs/pool/src/lib/common/tokens.ts +++ b/jobs/pool/src/lib/common/tokens.ts @@ -1,7 +1,7 @@ import { readContracts } from '@wagmi/core' import { Chain, ChainId } from 'sushi/chain' -import { getSushiV2Tokens } from '@sushiswap/graph-client-new/sushi-v2' +import { getSushiV2Tokens } from '@sushiswap/graph-client/sushi-v2' import { SushiSwapV2ChainId } from 'sushi/config' import { Address, erc20Abi } from 'viem' import { getTokenPrices } from '../price.js' diff --git a/jobs/pool/src/pools.ts b/jobs/pool/src/pools.ts index 03abd230e5..9a0ad955db 100644 --- a/jobs/pool/src/pools.ts +++ b/jobs/pool/src/pools.ts @@ -9,16 +9,10 @@ import { SushiSwapV3ChainId, } from 'sushi/config' -import { getBlockHistoric } from '@sushiswap/graph-client-new/blocks' -import { fetchMultichain } from '@sushiswap/graph-client-new/multichain' -import { - SushiV2Pools, - getSushiV2Pools, -} from '@sushiswap/graph-client-new/sushi-v2' -import { - SushiV3Pools, - getSushiV3Pools, -} from '@sushiswap/graph-client-new/sushi-v3' +import { getBlockHistoric } from '@sushiswap/graph-client/blocks' +import { fetchMultichain } from '@sushiswap/graph-client/multichain' +import { SushiV2Pools, getSushiV2Pools } from '@sushiswap/graph-client/sushi-v2' +import { SushiV3Pools, getSushiV3Pools } from '@sushiswap/graph-client/sushi-v3' import { upsertPools } from './etl/pool/index.js' import { createTokens } from './etl/token/load.js' diff --git a/jobs/pool/src/steer.ts b/jobs/pool/src/steer.ts index 22bd7a914e..90042cbc0e 100644 --- a/jobs/pool/src/steer.ts +++ b/jobs/pool/src/steer.ts @@ -1,5 +1,5 @@ import { Prisma, SteerStrategy } from '@sushiswap/database' -import { getSteerVaults } from '@sushiswap/graph-client-new/steer' +import { getSteerVaults } from '@sushiswap/graph-client/steer' import { STEER_SUPPORTED_CHAIN_IDS, SteerChainId, diff --git a/packages/client/package.json b/packages/client/package.json index 441e723d9e..81dedb9186 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -67,7 +67,7 @@ "dependencies": { "@sushiswap/bonds-sdk": "workspace:*", "@sushiswap/database": "workspace:*", - "@sushiswap/graph-client-new": "workspace:*", + "@sushiswap/graph-client": "workspace:*", "@sushiswap/steer-sdk": "workspace:*", "@whatwg-node/fetch": "0.8.4", "deepmerge-ts": "^4.3.0", diff --git a/packages/client/src/api/bonds/bonds/index.ts b/packages/client/src/api/bonds/bonds/index.ts index 816f1c2967..27f4f8180c 100644 --- a/packages/client/src/api/bonds/bonds/index.ts +++ b/packages/client/src/api/bonds/bonds/index.ts @@ -8,7 +8,7 @@ import { createClient } from '@sushiswap/database' import { type GetBondMarkets, getBondMarkets, -} from '@sushiswap/graph-client-new/bonds' +} from '@sushiswap/graph-client/bonds' import { getTotalSupply, getVaultReserves } from '@sushiswap/steer-sdk' import { getChainIdAddressFromId, diff --git a/packages/client/src/api/bonds/positions/index.ts b/packages/client/src/api/bonds/positions/index.ts index 80a9d1f5ea..c6d3b229cc 100644 --- a/packages/client/src/api/bonds/positions/index.ts +++ b/packages/client/src/api/bonds/positions/index.ts @@ -2,7 +2,7 @@ import { type BondChainId, isBondChainId } from '@sushiswap/bonds-sdk' import { type GetBondUserPositions, getBondUserPositions, -} from '@sushiswap/graph-client-new/bonds' +} from '@sushiswap/graph-client/bonds' import { getChainIdAddressFromId, isPromiseFulfilled } from 'sushi' import { getAddress } from 'viem' import { type BondsPositionsApiSchema } from '../../../pure/bonds/positions/schema' diff --git a/packages/graph-client-new/package.json b/packages/graph-client/package.json similarity index 96% rename from packages/graph-client-new/package.json rename to packages/graph-client/package.json index 14a893f768..ec6acc8b8d 100644 --- a/packages/graph-client-new/package.json +++ b/packages/graph-client/package.json @@ -1,5 +1,5 @@ { - "name": "@sushiswap/graph-client-new", + "name": "@sushiswap/graph-client", "version": "0.0.0", "description": "Graph Client", "keywords": [ @@ -10,7 +10,7 @@ "repository": { "type": "git", "url": "https://github.com/sushiswap/sushiswap.git", - "directory": "packages/graph-client-new" + "directory": "packages/graph-client" }, "license": "MIT", "author": "LufyCZ ", diff --git a/packages/graph-client-new/scripts/t.ts b/packages/graph-client/scripts/t.ts similarity index 100% rename from packages/graph-client-new/scripts/t.ts rename to packages/graph-client/scripts/t.ts diff --git a/packages/graph-client-new/scripts/tsconfig.json b/packages/graph-client/scripts/tsconfig.json similarity index 100% rename from packages/graph-client-new/scripts/tsconfig.json rename to packages/graph-client/scripts/tsconfig.json diff --git a/packages/graph-client-new/scripts/update-schemas.ts b/packages/graph-client/scripts/update-schemas.ts similarity index 100% rename from packages/graph-client-new/scripts/update-schemas.ts rename to packages/graph-client/scripts/update-schemas.ts diff --git a/packages/graph-client-new/src/composite/chef-user-positions.ts b/packages/graph-client/src/composite/chef-user-positions.ts similarity index 100% rename from packages/graph-client-new/src/composite/chef-user-positions.ts rename to packages/graph-client/src/composite/chef-user-positions.ts diff --git a/packages/graph-client-new/src/composite/sushi-day-datas.ts b/packages/graph-client/src/composite/sushi-day-datas.ts similarity index 100% rename from packages/graph-client-new/src/composite/sushi-day-datas.ts rename to packages/graph-client/src/composite/sushi-day-datas.ts diff --git a/packages/graph-client-new/src/composite/sushi-historic-pool.ts b/packages/graph-client/src/composite/sushi-historic-pool.ts similarity index 100% rename from packages/graph-client-new/src/composite/sushi-historic-pool.ts rename to packages/graph-client/src/composite/sushi-historic-pool.ts diff --git a/packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts b/packages/graph-client/src/composite/sushi-v2-staked-unstaked-positions.ts similarity index 100% rename from packages/graph-client-new/src/composite/sushi-v2-staked-unstaked-positions.ts rename to packages/graph-client/src/composite/sushi-v2-staked-unstaked-positions.ts diff --git a/packages/graph-client-new/src/lib/fetch-error.ts b/packages/graph-client/src/lib/fetch-error.ts similarity index 100% rename from packages/graph-client-new/src/lib/fetch-error.ts rename to packages/graph-client/src/lib/fetch-error.ts diff --git a/packages/graph-client-new/src/lib/modifiers/add-chain-id.ts b/packages/graph-client/src/lib/modifiers/add-chain-id.ts similarity index 100% rename from packages/graph-client-new/src/lib/modifiers/add-chain-id.ts rename to packages/graph-client/src/lib/modifiers/add-chain-id.ts diff --git a/packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts b/packages/graph-client/src/lib/modifiers/convert-id-to-multichain-id.ts similarity index 100% rename from packages/graph-client-new/src/lib/modifiers/convert-id-to-multichain-id.ts rename to packages/graph-client/src/lib/modifiers/convert-id-to-multichain-id.ts diff --git a/packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts b/packages/graph-client/src/lib/modifiers/copy-id-to-address.ts similarity index 100% rename from packages/graph-client-new/src/lib/modifiers/copy-id-to-address.ts rename to packages/graph-client/src/lib/modifiers/copy-id-to-address.ts diff --git a/packages/graph-client-new/src/lib/request-paged.ts b/packages/graph-client/src/lib/request-paged.ts similarity index 100% rename from packages/graph-client-new/src/lib/request-paged.ts rename to packages/graph-client/src/lib/request-paged.ts diff --git a/packages/graph-client-new/src/lib/request.ts b/packages/graph-client/src/lib/request.ts similarity index 100% rename from packages/graph-client-new/src/lib/request.ts rename to packages/graph-client/src/lib/request.ts diff --git a/packages/graph-client-new/src/lib/types/chainId.ts b/packages/graph-client/src/lib/types/chainId.ts similarity index 100% rename from packages/graph-client-new/src/lib/types/chainId.ts rename to packages/graph-client/src/lib/types/chainId.ts diff --git a/packages/graph-client-new/src/lib/types/hex.ts b/packages/graph-client/src/lib/types/hex.ts similarity index 100% rename from packages/graph-client-new/src/lib/types/hex.ts rename to packages/graph-client/src/lib/types/hex.ts diff --git a/packages/graph-client-new/src/lib/types/scalars.ts b/packages/graph-client/src/lib/types/scalars.ts similarity index 100% rename from packages/graph-client-new/src/lib/types/scalars.ts rename to packages/graph-client/src/lib/types/scalars.ts diff --git a/packages/graph-client-new/src/multichain/fetch-multichain.ts b/packages/graph-client/src/multichain/fetch-multichain.ts similarity index 100% rename from packages/graph-client-new/src/multichain/fetch-multichain.ts rename to packages/graph-client/src/multichain/fetch-multichain.ts diff --git a/packages/graph-client-new/src/multichain/index.ts b/packages/graph-client/src/multichain/index.ts similarity index 100% rename from packages/graph-client-new/src/multichain/index.ts rename to packages/graph-client/src/multichain/index.ts diff --git a/packages/graph-client-new/src/subgraphs/.gitignore b/packages/graph-client/src/subgraphs/.gitignore similarity index 100% rename from packages/graph-client-new/src/subgraphs/.gitignore rename to packages/graph-client/src/subgraphs/.gitignore diff --git a/packages/graph-client-new/src/subgraphs/bentobox/graphql.ts b/packages/graph-client/src/subgraphs/bentobox/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bentobox/graphql.ts rename to packages/graph-client/src/subgraphs/bentobox/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/bentobox/index.ts b/packages/graph-client/src/subgraphs/bentobox/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bentobox/index.ts rename to packages/graph-client/src/subgraphs/bentobox/index.ts diff --git a/packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts b/packages/graph-client/src/subgraphs/bentobox/queries/rebases.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bentobox/queries/rebases.ts rename to packages/graph-client/src/subgraphs/bentobox/queries/rebases.ts diff --git a/packages/graph-client-new/src/subgraphs/bentobox/schema.graphql b/packages/graph-client/src/subgraphs/bentobox/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/bentobox/schema.graphql rename to packages/graph-client/src/subgraphs/bentobox/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/blocks/graphql.ts b/packages/graph-client/src/subgraphs/blocks/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/blocks/graphql.ts rename to packages/graph-client/src/subgraphs/blocks/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/blocks/index.ts b/packages/graph-client/src/subgraphs/blocks/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/blocks/index.ts rename to packages/graph-client/src/subgraphs/blocks/index.ts diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts b/packages/graph-client/src/subgraphs/blocks/queries/block-historic.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/blocks/queries/block-historic.ts rename to packages/graph-client/src/subgraphs/blocks/queries/block-historic.ts diff --git a/packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts b/packages/graph-client/src/subgraphs/blocks/queries/blocks.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/blocks/queries/blocks.ts rename to packages/graph-client/src/subgraphs/blocks/queries/blocks.ts diff --git a/packages/graph-client-new/src/subgraphs/blocks/schema.graphql b/packages/graph-client/src/subgraphs/blocks/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/blocks/schema.graphql rename to packages/graph-client/src/subgraphs/blocks/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/bonds/graphql.ts b/packages/graph-client/src/subgraphs/bonds/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bonds/graphql.ts rename to packages/graph-client/src/subgraphs/bonds/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/bonds/index.ts b/packages/graph-client/src/subgraphs/bonds/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bonds/index.ts rename to packages/graph-client/src/subgraphs/bonds/index.ts diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts b/packages/graph-client/src/subgraphs/bonds/queries/markets.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bonds/queries/markets.ts rename to packages/graph-client/src/subgraphs/bonds/queries/markets.ts diff --git a/packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts b/packages/graph-client/src/subgraphs/bonds/queries/positions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/bonds/queries/positions.ts rename to packages/graph-client/src/subgraphs/bonds/queries/positions.ts diff --git a/packages/graph-client-new/src/subgraphs/bonds/schema.graphql b/packages/graph-client/src/subgraphs/bonds/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/bonds/schema.graphql rename to packages/graph-client/src/subgraphs/bonds/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/furo/graphql.ts b/packages/graph-client/src/subgraphs/furo/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/furo/graphql.ts rename to packages/graph-client/src/subgraphs/furo/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/furo/index.ts b/packages/graph-client/src/subgraphs/furo/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/furo/index.ts rename to packages/graph-client/src/subgraphs/furo/index.ts diff --git a/packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts b/packages/graph-client/src/subgraphs/furo/queries/tokens.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/furo/queries/tokens.ts rename to packages/graph-client/src/subgraphs/furo/queries/tokens.ts diff --git a/packages/graph-client-new/src/subgraphs/furo/schema.graphql b/packages/graph-client/src/subgraphs/furo/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/furo/schema.graphql rename to packages/graph-client/src/subgraphs/furo/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts b/packages/graph-client/src/subgraphs/master-chef-v1/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v1/graphql.ts rename to packages/graph-client/src/subgraphs/master-chef-v1/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts b/packages/graph-client/src/subgraphs/master-chef-v1/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v1/index.ts rename to packages/graph-client/src/subgraphs/master-chef-v1/index.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts b/packages/graph-client/src/subgraphs/master-chef-v1/queries/user-positions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v1/queries/user-positions.ts rename to packages/graph-client/src/subgraphs/master-chef-v1/queries/user-positions.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql b/packages/graph-client/src/subgraphs/master-chef-v1/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v1/schema.graphql rename to packages/graph-client/src/subgraphs/master-chef-v1/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts b/packages/graph-client/src/subgraphs/master-chef-v2/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v2/graphql.ts rename to packages/graph-client/src/subgraphs/master-chef-v2/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts b/packages/graph-client/src/subgraphs/master-chef-v2/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v2/index.ts rename to packages/graph-client/src/subgraphs/master-chef-v2/index.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts b/packages/graph-client/src/subgraphs/master-chef-v2/queries/rewarders.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v2/queries/rewarders.ts rename to packages/graph-client/src/subgraphs/master-chef-v2/queries/rewarders.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts b/packages/graph-client/src/subgraphs/master-chef-v2/queries/user-positions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v2/queries/user-positions.ts rename to packages/graph-client/src/subgraphs/master-chef-v2/queries/user-positions.ts diff --git a/packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql b/packages/graph-client/src/subgraphs/master-chef-v2/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/master-chef-v2/schema.graphql rename to packages/graph-client/src/subgraphs/master-chef-v2/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts b/packages/graph-client/src/subgraphs/mini-chef/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/mini-chef/graphql.ts rename to packages/graph-client/src/subgraphs/mini-chef/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/index.ts b/packages/graph-client/src/subgraphs/mini-chef/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/mini-chef/index.ts rename to packages/graph-client/src/subgraphs/mini-chef/index.ts diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts b/packages/graph-client/src/subgraphs/mini-chef/queries/rewarders.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/mini-chef/queries/rewarders.ts rename to packages/graph-client/src/subgraphs/mini-chef/queries/rewarders.ts diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts b/packages/graph-client/src/subgraphs/mini-chef/queries/user-positions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/mini-chef/queries/user-positions.ts rename to packages/graph-client/src/subgraphs/mini-chef/queries/user-positions.ts diff --git a/packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql b/packages/graph-client/src/subgraphs/mini-chef/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/mini-chef/schema.graphql rename to packages/graph-client/src/subgraphs/mini-chef/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/steer/graphql.ts b/packages/graph-client/src/subgraphs/steer/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/steer/graphql.ts rename to packages/graph-client/src/subgraphs/steer/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/steer/index.ts b/packages/graph-client/src/subgraphs/steer/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/steer/index.ts rename to packages/graph-client/src/subgraphs/steer/index.ts diff --git a/packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts b/packages/graph-client/src/subgraphs/steer/queries/vaults.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/steer/queries/vaults.ts rename to packages/graph-client/src/subgraphs/steer/queries/vaults.ts diff --git a/packages/graph-client-new/src/subgraphs/steer/schema.graphql b/packages/graph-client/src/subgraphs/steer/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/steer/schema.graphql rename to packages/graph-client/src/subgraphs/steer/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts b/packages/graph-client/src/subgraphs/sushi-bar/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-bar/graphql.ts rename to packages/graph-client/src/subgraphs/sushi-bar/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/index.ts b/packages/graph-client/src/subgraphs/sushi-bar/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-bar/index.ts rename to packages/graph-client/src/subgraphs/sushi-bar/index.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts b/packages/graph-client/src/subgraphs/sushi-bar/queries/bar-history.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar-history.ts rename to packages/graph-client/src/subgraphs/sushi-bar/queries/bar-history.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts b/packages/graph-client/src/subgraphs/sushi-bar/queries/bar.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-bar/queries/bar.ts rename to packages/graph-client/src/subgraphs/sushi-bar/queries/bar.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql b/packages/graph-client/src/subgraphs/sushi-bar/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-bar/schema.graphql rename to packages/graph-client/src/subgraphs/sushi-bar/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts b/packages/graph-client/src/subgraphs/sushi-v2/fragments/pool-fields.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/fragments/pool-fields.ts rename to packages/graph-client/src/subgraphs/sushi-v2/fragments/pool-fields.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts b/packages/graph-client/src/subgraphs/sushi-v2/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/graphql.ts rename to packages/graph-client/src/subgraphs/sushi-v2/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/index.ts b/packages/graph-client/src/subgraphs/sushi-v2/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/index.ts rename to packages/graph-client/src/subgraphs/sushi-v2/index.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/burns.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/burns.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/burns.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/day-datas.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/day-datas.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/day-datas.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/factory.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/factory.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/factory.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/liquidity-positions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/liquidity-positions.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/liquidity-positions.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/mints.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/mints.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/mints.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/pool-with-buckets.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/pool.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/pool.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/pool.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/pools.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/pools.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/pools.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/swaps.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/swaps.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/swaps.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/tokens.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/tokens.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/tokens.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts b/packages/graph-client/src/subgraphs/sushi-v2/queries/transactions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/queries/transactions.ts rename to packages/graph-client/src/subgraphs/sushi-v2/queries/transactions.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql b/packages/graph-client/src/subgraphs/sushi-v2/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/schema.graphql rename to packages/graph-client/src/subgraphs/sushi-v2/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts b/packages/graph-client/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts rename to packages/graph-client/src/subgraphs/sushi-v2/transforms/bucket-v2-to-std.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts b/packages/graph-client/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts rename to packages/graph-client/src/subgraphs/sushi-v2/transforms/pool-v2-to-base.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts b/packages/graph-client/src/subgraphs/sushi-v3/fragments/pool-fields.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/fragments/pool-fields.ts rename to packages/graph-client/src/subgraphs/sushi-v3/fragments/pool-fields.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts b/packages/graph-client/src/subgraphs/sushi-v3/graphql.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/graphql.ts rename to packages/graph-client/src/subgraphs/sushi-v3/graphql.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/index.ts b/packages/graph-client/src/subgraphs/sushi-v3/index.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/index.ts rename to packages/graph-client/src/subgraphs/sushi-v3/index.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/burns.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/burns.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/burns.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/collects.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/collects.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/collects.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/day-datas.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/day-datas.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/day-datas.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/factory.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/factory.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/factory.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/mints.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/mints.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/mints.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/pool-with-buckets.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/pool.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/pool.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/pool.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/pools-by-token-pair.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/pools.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/pools.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/pools.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/swaps.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/swaps.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/swaps.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts b/packages/graph-client/src/subgraphs/sushi-v3/queries/transactions.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/queries/transactions.ts rename to packages/graph-client/src/subgraphs/sushi-v3/queries/transactions.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql b/packages/graph-client/src/subgraphs/sushi-v3/schema.graphql similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/schema.graphql rename to packages/graph-client/src/subgraphs/sushi-v3/schema.graphql diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts b/packages/graph-client/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts rename to packages/graph-client/src/subgraphs/sushi-v3/transforms/bucket-v3-to-std.ts diff --git a/packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts b/packages/graph-client/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts similarity index 100% rename from packages/graph-client-new/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts rename to packages/graph-client/src/subgraphs/sushi-v3/transforms/pool-v3-to-base.ts diff --git a/packages/graph-client-new/tsconfig.json b/packages/graph-client/tsconfig.json similarity index 100% rename from packages/graph-client-new/tsconfig.json rename to packages/graph-client/tsconfig.json diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 84b7a85a9f..7e4e124c00 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -714,9 +714,9 @@ importers: '@sushiswap/dexie': specifier: workspace:* version: link:../../packages/dexie - '@sushiswap/graph-client-new': + '@sushiswap/graph-client': specifier: workspace:* - version: link:../../packages/graph-client-new + version: link:../../packages/graph-client '@sushiswap/hooks': specifier: workspace:* version: link:../../packages/hooks @@ -1305,9 +1305,9 @@ importers: '@sushiswap/database': specifier: workspace:* version: link:../../packages/database - '@sushiswap/graph-client-new': + '@sushiswap/graph-client': specifier: workspace:* - version: link:../../packages/graph-client-new + version: link:../../packages/graph-client '@sushiswap/steer-sdk': specifier: workspace:* version: link:../../packages/steer-sdk @@ -1437,9 +1437,9 @@ importers: '@sushiswap/database': specifier: workspace:* version: link:../database - '@sushiswap/graph-client-new': + '@sushiswap/graph-client': specifier: workspace:* - version: link:../graph-client-new + version: link:../graph-client '@sushiswap/steer-sdk': specifier: workspace:* version: link:../steer-sdk @@ -1631,7 +1631,7 @@ importers: specifier: 5.2.2 version: 5.2.2 - packages/graph-client-new: + packages/graph-client: dependencies: '@sushiswap/bonds-sdk': specifier: workspace:* From 41ba7d3778a43b3a290ab5d19fe506bfb334541a Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Tue, 11 Jun 2024 16:38:35 +0000 Subject: [PATCH 103/119] feat(apps/pool): add single-sided liquidity --- apps/evm/src/ui/pool/SelectPricesWidget.tsx | 73 +++++++++++++++++++-- 1 file changed, 69 insertions(+), 4 deletions(-) diff --git a/apps/evm/src/ui/pool/SelectPricesWidget.tsx b/apps/evm/src/ui/pool/SelectPricesWidget.tsx index 9e39cb0de4..f0e6930803 100644 --- a/apps/evm/src/ui/pool/SelectPricesWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPricesWidget.tsx @@ -39,9 +39,17 @@ import React, { } from 'react' import { Bound, Field } from 'src/lib/constants' import { useTokenAmountDollarValues } from 'src/lib/hooks' -import { SushiSwapV3ChainId, SushiSwapV3FeeAmount } from 'sushi/config' +import { + SushiSwapV3ChainId, + SushiSwapV3FeeAmount, + TICK_SPACINGS, +} from 'sushi/config' import { Type, tryParseAmount } from 'sushi/currency' -import { getCapitalEfficiency, getTokenRatio } from 'sushi/pool/sushiswap-v3' +import { + getCapitalEfficiency, + getTokenRatio, + tickToPrice, +} from 'sushi/pool/sushiswap-v3' import { RadioGroup } from '@headlessui/react' import { LockClosedIcon, LockOpenIcon } from '@heroicons/react/24/solid' @@ -64,6 +72,8 @@ enum PriceRange { BPS_20000 = 1, BPS_12000 = 2, BPS_10100 = 3, + LEFT_SIDE = 4, + RIGHT_SIDE = 5, } enum YieldRatePeriod { @@ -212,6 +222,46 @@ export const SelectPricesWidget: FC = ({ ], ) + const setSingleSided = useCallback( + (side: 'left' | 'right') => { + if (!token0 || !token1 || !price || !feeAmount || !pool) return + + getSetFullRange() + + switch (side) { + case 'left': { + const newRightPrice = tickToPrice( + token0.wrapped, + token1.wrapped, + pool.tickCurrent + (invertPrice ? 1 : 0) * TICK_SPACINGS[feeAmount], + ) + onRightRangeInput(newRightPrice.toFixed(6)) + break + } + case 'right': { + const newLeftPrice = tickToPrice( + token0.wrapped, + token1.wrapped, + pool.tickCurrent + (invertPrice ? 0 : 1) * TICK_SPACINGS[feeAmount], + ) + onLeftRangeInput(newLeftPrice.toFixed(6)) + break + } + } + }, + [ + token0, + token1, + price, + feeAmount, + pool, + getSetFullRange, + invertPrice, + onRightRangeInput, + onLeftRangeInput, + ], + ) + const formattedAmounts: { [_formattedAmountsField in Field]: string } = useMemo( @@ -279,8 +329,23 @@ export const SelectPricesWidget: FC = ({ value: PriceRange.BPS_10100, onClick: () => setPriceRange(new Fraction(10100, 10000)), }, + { + label: 'Single Sided (Left)', + value: PriceRange.LEFT_SIDE, + onClick: () => setSingleSided('left'), + }, + { + label: 'Single Sided (Right)', + value: PriceRange.RIGHT_SIDE, + onClick: () => setSingleSided('right'), + }, + ], + [ + getSetFullRange, + setPriceRange, + setWeightLockedCurrencyBase, + setSingleSided, ], - [getSetFullRange, setPriceRange, setWeightLockedCurrencyBase], ) const isSorted = @@ -497,7 +562,7 @@ export const SelectPricesWidget: FC = ({ )}
- + {PRICE_RANGE_OPTIONS.map(({ value, label, onClick }) => ( Date: Tue, 11 Jun 2024 22:11:26 +0200 Subject: [PATCH 104/119] test(apps/evm): temp add delay to e2e --- apps/evm/test/helpers/base.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/evm/test/helpers/base.ts b/apps/evm/test/helpers/base.ts index f498e2fa0c..9075cb2445 100644 --- a/apps/evm/test/helpers/base.ts +++ b/apps/evm/test/helpers/base.ts @@ -14,6 +14,7 @@ export class BaseActions { .first() await expect(connectSelector).toBeVisible() await expect(connectSelector).toBeEnabled() + await new Promise(f => setTimeout(f, 1000)); // delay 1s await connectSelector.click() const mockConnectSelector = this.page.getByText('Mock Connector') await expect(mockConnectSelector).toBeVisible() From a74115e6153dafe0492715ca7ec55c592b9d320c Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Tue, 11 Jun 2024 20:12:50 +0000 Subject: [PATCH 105/119] chore: lint --- apps/evm/test/helpers/base.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/evm/test/helpers/base.ts b/apps/evm/test/helpers/base.ts index 9075cb2445..299af568e8 100644 --- a/apps/evm/test/helpers/base.ts +++ b/apps/evm/test/helpers/base.ts @@ -14,7 +14,7 @@ export class BaseActions { .first() await expect(connectSelector).toBeVisible() await expect(connectSelector).toBeEnabled() - await new Promise(f => setTimeout(f, 1000)); // delay 1s + await new Promise((f) => setTimeout(f, 1000)) // delay 1s await connectSelector.click() const mockConnectSelector = this.page.getByText('Mock Connector') await expect(mockConnectSelector).toBeVisible() From 0a3f87e0352c63cd3207e39977df8e6d1bde9fa9 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 12 Jun 2024 00:10:24 +0000 Subject: [PATCH 106/119] fix(apps/evm): ui package imports --- .../common/components/AdditionalArticles.tsx | 2 +- .../common/components/ArticlesPageHeader.tsx | 6 +++--- apps/academy/common/components/Breadcrumb.tsx | 4 +--- apps/academy/common/components/Difficulties.tsx | 2 +- .../academy/common/components/DifficultyCard.tsx | 3 +-- .../common/components/DifficultyLabel.tsx | 3 +-- apps/academy/common/components/FilterButton.tsx | 2 +- apps/academy/common/productsData.tsx | 2 +- .../src/app/(landing)/components/BuildFuture.tsx | 2 +- .../src/app/(landing)/components/BuildWealth.tsx | 2 +- .../src/app/(landing)/components/Ecosystem.tsx | 4 ++-- .../app/(landing)/components/ExpandableCard.tsx | 2 +- apps/evm/src/app/(landing)/components/Hero.tsx | 4 ++-- .../src/app/(landing)/components/NeedHelp.tsx | 6 +++--- .../src/app/(landing)/components/Partners.tsx | 2 +- apps/evm/src/app/(landing)/components/Search.tsx | 6 +++--- apps/evm/src/app/(landing)/components/Stats.tsx | 4 ++-- .../components/Story/Section1/Custody.tsx | 4 ++-- .../(landing)/components/Story/Section2/Move.tsx | 4 ++-- .../components/Story/Section3/Guard.tsx | 4 ++-- apps/evm/src/app/(landing)/layout.tsx | 2 +- apps/evm/src/app/analytics/layout.tsx | 2 +- apps/evm/src/app/bonds/hero.tsx | 4 ++-- apps/evm/src/app/bonds/layout.tsx | 2 +- apps/evm/src/app/claims/components/ClaimItem.tsx | 10 +++++----- .../evm/src/app/claims/components/RevokeItem.tsx | 10 +++++----- apps/evm/src/app/claims/rp2/page.tsx | 4 ++-- apps/evm/src/app/home/header.tsx | 2 +- .../internal/tokens/components/TokenAdder.tsx | 11 +++-------- .../internal/tokens/components/TokenTable.tsx | 2 +- apps/evm/src/app/internal/tokens/page.tsx | 4 ++-- apps/evm/src/app/partner/collab-hub-image.tsx | 2 +- apps/evm/src/app/partner/farmer-image.tsx | 2 +- apps/evm/src/app/partner/page.tsx | 10 +++++----- apps/evm/src/app/pool/add/v2/[chainId]/page.tsx | 4 ++-- apps/evm/src/app/pool/hero.tsx | 10 +++++----- apps/evm/src/app/pool/layout.tsx | 2 +- apps/evm/src/app/stake/header.tsx | 2 +- apps/evm/src/app/stake/layout.tsx | 2 +- apps/evm/src/app/swap/header.tsx | 2 +- apps/evm/src/app/swap/layout.tsx | 2 +- apps/evm/src/app/tokenlist-request/page.tsx | 2 +- apps/evm/src/app/trackers.tsx | 2 +- .../src/lib/wagmi/components/connect-button.tsx | 6 +++--- .../wagmi/components/header-network-selector.tsx | 11 ++++------- .../src/lib/wagmi/components/network-check.tsx | 2 +- .../components/sanctioned-address-dialog.tsx | 6 +++--- .../components/token-selector/TokenSelector.tsx | 8 ++++---- .../token-selector/TokenSelectorCurrencyList.tsx | 2 +- .../token-selector/TokenSelectorImportRow.tsx | 13 +++++++++---- .../token-selector/TokenSelectorRow.tsx | 8 ++++---- .../components/user-profile/ConnectView.tsx | 4 ++-- .../components/user-profile/DefaultView.tsx | 4 ++-- .../components/user-profile/Notification.tsx | 10 +++++----- .../components/user-profile/SettingsView.tsx | 6 +++--- .../components/user-profile/TransactionsView.tsx | 6 +++--- .../lib/wagmi/components/user-profile/index.tsx | 10 +++------- .../web3-input/Currency/BalancePanel.tsx | 4 ++-- .../web3-input/Currency/CurrencyInput.tsx | 4 ++-- .../web3-input/Currency/PricePanel.tsx | 2 +- .../hooks/approvals/hooks/useTokenApproval.ts | 2 +- .../approvals/hooks/useTokenRevokeApproval.ts | 2 +- .../evm/src/lib/wagmi/hooks/bar/useBarDeposit.ts | 2 +- .../evm/src/lib/wagmi/hooks/bar/useBarWithdaw.ts | 2 +- .../hooks/bentobox/hooks/useBentoBoxApproval.ts | 6 +----- .../hooks/exploits/hooks/useRP2ExploitClaim.ts | 2 +- .../hooks/master-chef/use-master-chef-deposit.ts | 2 +- .../master-chef/use-master-chef-withdraw.ts | 2 +- .../wagmi/hooks/master-chef/use-master-chef.ts | 2 +- .../wagmi/hooks/migrate/hooks/useV3Migrate.tsx | 2 +- .../rewards/hooks/useAcceptAngleConditions.ts | 2 +- .../rewards/hooks/useHarvestAngleRewards.ts | 2 +- .../hooks/useIncentivizePoolWithRewards.ts | 2 +- .../src/lib/wagmi/systems/Checker/Amounts.tsx | 2 +- .../wagmi/systems/Checker/ApproveBentobox.tsx | 2 +- .../lib/wagmi/systems/Checker/ApproveERC20.tsx | 4 ++-- .../systems/Checker/ApproveERC20Multiple.tsx | 2 +- .../systems/Checker/ApproveERC20WithPermit.tsx | 4 ++-- .../src/lib/wagmi/systems/Checker/Connect.tsx | 2 +- .../evm/src/lib/wagmi/systems/Checker/Custom.tsx | 2 +- apps/evm/src/lib/wagmi/systems/Checker/Guard.tsx | 2 +- .../src/lib/wagmi/systems/Checker/Network.tsx | 2 +- apps/evm/src/lib/wagmi/systems/Checker/index.ts | 2 +- apps/evm/src/ui/analytics/token-page-header.tsx | 6 +++--- .../src/ui/analytics/token-page-information.tsx | 4 ++-- apps/evm/src/ui/analytics/token-page-pairs.tsx | 4 ++-- .../table-positions-filters-networks.tsx | 10 +++------- .../table-filters-auction-type.tsx | 10 +++------- .../table-filters-networks.tsx | 10 +++------- apps/evm/src/ui/pool/AddSectionMyPosition.tsx | 2 +- .../src/ui/pool/AddSectionMyPositionStaked.tsx | 2 +- .../src/ui/pool/AddSectionMyPositionUnstaked.tsx | 2 +- apps/evm/src/ui/pool/AddSectionReviewModal.tsx | 2 +- .../pool/AddSectionReviewModalConcentrated.tsx | 2 +- .../src/ui/pool/AddSectionReviewModalLegacy.tsx | 6 +++--- apps/evm/src/ui/pool/AddSectionStake.tsx | 4 ++-- apps/evm/src/ui/pool/AddSectionStakeWidget.tsx | 4 ++-- apps/evm/src/ui/pool/AddSectionWidget.tsx | 9 +++------ .../pool/ConcentratedLiquidityCollectButton.tsx | 2 +- .../pool/ConcentratedLiquidityRemoveWidget.tsx | 4 ++-- .../src/ui/pool/ConcentratedLiquidityWidget.tsx | 2 +- .../ConcentratedPositionsTable.tsx | 2 +- .../src/ui/pool/FarmRewardsAvailableTooltip.tsx | 2 +- .../ui/pool/LiquidityChartRangeInput/Zoom.tsx | 2 +- .../ui/pool/LiquidityChartRangeInput/index.tsx | 2 +- apps/evm/src/ui/pool/LiquidityDepthWidget.tsx | 2 +- apps/evm/src/ui/pool/MigrateTab.tsx | 2 +- apps/evm/src/ui/pool/PoolButtons.tsx | 2 +- apps/evm/src/ui/pool/PoolChartGraph.tsx | 4 ++-- apps/evm/src/ui/pool/PoolChartPeriods.tsx | 2 +- apps/evm/src/ui/pool/PoolChartTypes.tsx | 2 +- apps/evm/src/ui/pool/PoolComposition.tsx | 2 +- apps/evm/src/ui/pool/PoolHeader.tsx | 2 +- apps/evm/src/ui/pool/PoolMyRewards.tsx | 4 ++-- apps/evm/src/ui/pool/PoolNameCell.tsx | 8 ++++---- apps/evm/src/ui/pool/PoolNameCellV3.tsx | 6 +++--- apps/evm/src/ui/pool/PoolPageV3.tsx | 4 ++-- apps/evm/src/ui/pool/PoolPosition.tsx | 2 +- apps/evm/src/ui/pool/PoolPositionDesktop.tsx | 6 +----- .../src/ui/pool/PoolPositionStakedDesktop.tsx | 6 +----- apps/evm/src/ui/pool/PoolQuickHoverTooltip.tsx | 6 +++--- apps/evm/src/ui/pool/PoolRewards.tsx | 2 +- apps/evm/src/ui/pool/PoolRewardsCell.tsx | 2 +- apps/evm/src/ui/pool/PoolStats.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV2.tsx | 2 +- apps/evm/src/ui/pool/PoolTransactionsV3.tsx | 2 +- apps/evm/src/ui/pool/PositionCard.tsx | 8 ++++---- .../src/ui/pool/PositionQuickHoverTooltip.tsx | 8 ++++---- apps/evm/src/ui/pool/PositionView.tsx | 6 +++--- apps/evm/src/ui/pool/PositionsTable.tsx | 2 +- apps/evm/src/ui/pool/PriceRangeCell.tsx | 2 +- apps/evm/src/ui/pool/RemoveSectionLegacy.tsx | 4 ++-- apps/evm/src/ui/pool/RemoveSectionUnstake.tsx | 4 ++-- apps/evm/src/ui/pool/RemoveSectionWidget.tsx | 15 ++++----------- apps/evm/src/ui/pool/RewardSlide.tsx | 6 +++--- apps/evm/src/ui/pool/RewardsSection.tsx | 2 +- apps/evm/src/ui/pool/RewardsV3NameCell.tsx | 6 +++--- .../src/ui/pool/SelectFeeConcentratedWidget.tsx | 2 +- apps/evm/src/ui/pool/SelectNetworkWidget.tsx | 6 +++--- apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx | 2 +- apps/evm/src/ui/pool/SelectPricesWidget.tsx | 4 ++-- apps/evm/src/ui/pool/SelectTokensWidget.tsx | 6 +++--- .../Add/SteerPositionAddReviewModal.tsx | 6 +++--- .../Steer/SteerStrategies/SteerBaseStrategy.tsx | 2 +- apps/evm/src/ui/pool/TableFiltersNetwork.tsx | 6 +++--- apps/evm/src/ui/pool/TableFiltersPoolType.tsx | 10 +++------- apps/evm/src/ui/pool/columns.tsx | 2 +- apps/evm/src/ui/stake/BarChartGraph.tsx | 4 ++-- apps/evm/src/ui/stake/BarChartPeriods.tsx | 2 +- apps/evm/src/ui/stake/BarChartTypes.tsx | 2 +- apps/evm/src/ui/stake/BarHeader.tsx | 2 +- .../cross-chain-swap-confirmation-dialog.tsx | 10 +++++----- .../swap/cross-chain/cross-chain-swap-header.tsx | 2 +- .../cross-chain-swap-token-not-found-dialog.tsx | 10 +++++----- .../cross-chain-swap-trade-button.tsx | 2 +- .../cross-chain-swap-trade-review-dialog.tsx | 16 ++++++---------- .../cross-chain/cross-chain-swap-trade-stats.tsx | 6 +++--- .../ui/swap/simple/simple-swap-trade-button.tsx | 2 +- packages/ui/src/components/dialog.tsx | 2 +- .../{CheckmarkIcon.tsx => CheckMarkIcon.tsx} | 0 packages/ui/src/components/icons/index.ts | 3 ++- packages/ui/src/components/index.ts | 2 ++ packages/ui/src/index.ts | 4 +++- 163 files changed, 308 insertions(+), 356 deletions(-) rename packages/ui/src/components/icons/{CheckmarkIcon.tsx => CheckMarkIcon.tsx} (100%) diff --git a/apps/academy/common/components/AdditionalArticles.tsx b/apps/academy/common/components/AdditionalArticles.tsx index 2ecadd5854..21ba223783 100644 --- a/apps/academy/common/components/AdditionalArticles.tsx +++ b/apps/academy/common/components/AdditionalArticles.tsx @@ -1,6 +1,6 @@ import { PlusCircleIcon } from '@heroicons/react/24/solid' import { LinkInternal, classNames } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { FC, ReactNode } from 'react' import { DEFAULT_SIDE_PADDING } from '../helpers' diff --git a/apps/academy/common/components/ArticlesPageHeader.tsx b/apps/academy/common/components/ArticlesPageHeader.tsx index 194753288b..1fbf95c35f 100644 --- a/apps/academy/common/components/ArticlesPageHeader.tsx +++ b/apps/academy/common/components/ArticlesPageHeader.tsx @@ -1,12 +1,12 @@ import { useBreakpoint } from '@sushiswap/hooks' -import { classNames } from '@sushiswap/ui' -import { Container } from '@sushiswap/ui/components/container' import { + Container, Select, SelectContent, SelectItem, SelectTrigger, -} from '@sushiswap/ui/components/select' + classNames, +} from '@sushiswap/ui' import { LooperBg } from 'common/assets/LooperBg' import { FC, useEffect, useLayoutEffect, useState } from 'react' diff --git a/apps/academy/common/components/Breadcrumb.tsx b/apps/academy/common/components/Breadcrumb.tsx index 1baa798275..e9d85b08e7 100644 --- a/apps/academy/common/components/Breadcrumb.tsx +++ b/apps/academy/common/components/Breadcrumb.tsx @@ -1,7 +1,5 @@ import { ArrowLeftIcon, ShareIcon } from '@heroicons/react/24/solid' -import { LinkInternal } from '@sushiswap/ui' -import { Container } from '@sushiswap/ui/components/container' -import { IconButton } from '@sushiswap/ui/components/iconbutton' +import { Container, IconButton, LinkInternal } from '@sushiswap/ui' import { getShareText } from 'common/helpers' import { GhostArticle } from 'lib/ghost' import { FC } from 'react' diff --git a/apps/academy/common/components/Difficulties.tsx b/apps/academy/common/components/Difficulties.tsx index 3f7410a6ea..b30b82b561 100644 --- a/apps/academy/common/components/Difficulties.tsx +++ b/apps/academy/common/components/Difficulties.tsx @@ -1,7 +1,7 @@ import { DIFFICULTY_ELEMENTS } from 'common/helpers' import { FC } from 'react' -import { CircleIcon } from '@sushiswap/ui/components/icons' +import { CircleIcon } from '@sushiswap/ui' import { DifficultyEntity } from '../../.mesh' interface Difficulties { diff --git a/apps/academy/common/components/DifficultyCard.tsx b/apps/academy/common/components/DifficultyCard.tsx index a6f965d9a7..1a99d2d8b2 100644 --- a/apps/academy/common/components/DifficultyCard.tsx +++ b/apps/academy/common/components/DifficultyCard.tsx @@ -4,8 +4,7 @@ import { DIFFICULTY_ELEMENTS, DOCS_URL } from 'common/helpers' import { AcademyIcon } from 'common/icons' import { FC, Fragment, useState } from 'react' -import { Chip } from '@sushiswap/ui/components/chip' -import { CircleIcon } from '@sushiswap/ui/components/icons' +import { Chip, CircleIcon } from '@sushiswap/ui' import { DifficultyEntity } from '.mesh' interface DifficultyCard { diff --git a/apps/academy/common/components/DifficultyLabel.tsx b/apps/academy/common/components/DifficultyLabel.tsx index 0deb42281a..c89bb73f91 100644 --- a/apps/academy/common/components/DifficultyLabel.tsx +++ b/apps/academy/common/components/DifficultyLabel.tsx @@ -1,5 +1,4 @@ -import { classNames } from '@sushiswap/ui' -import { CircleIcon } from '@sushiswap/ui/components/icons' +import { CircleIcon, classNames } from '@sushiswap/ui' import { DIFFICULTY_ELEMENTS } from 'common/helpers' import { FC } from 'react' import { Article } from 'types' diff --git a/apps/academy/common/components/FilterButton.tsx b/apps/academy/common/components/FilterButton.tsx index 7e44fb0de2..2825f1ae40 100644 --- a/apps/academy/common/components/FilterButton.tsx +++ b/apps/academy/common/components/FilterButton.tsx @@ -1,6 +1,6 @@ import { FC } from 'react' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { Maybe } from '../../.mesh' interface FilterButton { diff --git a/apps/academy/common/productsData.tsx b/apps/academy/common/productsData.tsx index 0fbc0976b5..59023d98d4 100644 --- a/apps/academy/common/productsData.tsx +++ b/apps/academy/common/productsData.tsx @@ -6,7 +6,7 @@ import { FantomCircle, OptimismCircle, PolygonCircle, -} from '@sushiswap/ui/components/icons' +} from '@sushiswap/ui' import { AcademyIcon, diff --git a/apps/evm/src/app/(landing)/components/BuildFuture.tsx b/apps/evm/src/app/(landing)/components/BuildFuture.tsx index cb94e3c62f..b9c5938267 100644 --- a/apps/evm/src/app/(landing)/components/BuildFuture.tsx +++ b/apps/evm/src/app/(landing)/components/BuildFuture.tsx @@ -1,5 +1,5 @@ import { Button } from '@sushiswap/ui' -import { Container } from '@sushiswap/ui/components/container' +import { Container } from '@sushiswap/ui' import { motion } from 'framer-motion' import React, { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/components/BuildWealth.tsx b/apps/evm/src/app/(landing)/components/BuildWealth.tsx index 2602af5520..ef6ba30059 100644 --- a/apps/evm/src/app/(landing)/components/BuildWealth.tsx +++ b/apps/evm/src/app/(landing)/components/BuildWealth.tsx @@ -1,4 +1,4 @@ -import { Container } from '@sushiswap/ui/components/container' +import { Container } from '@sushiswap/ui' import Image from 'next/legacy/image' import React, { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/components/Ecosystem.tsx b/apps/evm/src/app/(landing)/components/Ecosystem.tsx index 4a86e99fae..6743af0415 100644 --- a/apps/evm/src/app/(landing)/components/Ecosystem.tsx +++ b/apps/evm/src/app/(landing)/components/Ecosystem.tsx @@ -1,5 +1,5 @@ -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { motion } from 'framer-motion' import React, { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/components/ExpandableCard.tsx b/apps/evm/src/app/(landing)/components/ExpandableCard.tsx index 91b0e09ccc..e2abdadc1e 100644 --- a/apps/evm/src/app/(landing)/components/ExpandableCard.tsx +++ b/apps/evm/src/app/(landing)/components/ExpandableCard.tsx @@ -1,5 +1,5 @@ import { LinkExternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { AnimatePresence, AnimateSharedLayout, motion } from 'framer-motion' import { nanoid } from 'nanoid' import React, { FC, ReactNode, useCallback, useState } from 'react' diff --git a/apps/evm/src/app/(landing)/components/Hero.tsx b/apps/evm/src/app/(landing)/components/Hero.tsx index 187daa5223..8c33f63da7 100644 --- a/apps/evm/src/app/(landing)/components/Hero.tsx +++ b/apps/evm/src/app/(landing)/components/Hero.tsx @@ -1,8 +1,8 @@ import { ArrowDownIcon } from '@heroicons/react/24/outline' import { useInterval } from '@sushiswap/hooks' import { LinkInternal, typographyVariants } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { motion } from 'framer-motion' import React, { FC, useEffect, useState } from 'react' import { CurrencyInput } from 'src/lib/wagmi/components/web3-input/Currency' diff --git a/apps/evm/src/app/(landing)/components/NeedHelp.tsx b/apps/evm/src/app/(landing)/components/NeedHelp.tsx index 2442cd39b5..112f928fea 100644 --- a/apps/evm/src/app/(landing)/components/NeedHelp.tsx +++ b/apps/evm/src/app/(landing)/components/NeedHelp.tsx @@ -1,12 +1,12 @@ import { LinkExternal, LinkInternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { DiscordIcon, GithubIcon, TwitterIcon, YoutubeIcon, -} from '@sushiswap/ui/components/icons' +} from '@sushiswap/ui' import React, { FC } from 'react' const SUPPORT_CHANNELS = [ diff --git a/apps/evm/src/app/(landing)/components/Partners.tsx b/apps/evm/src/app/(landing)/components/Partners.tsx index 0667709539..4fc72792dc 100644 --- a/apps/evm/src/app/(landing)/components/Partners.tsx +++ b/apps/evm/src/app/(landing)/components/Partners.tsx @@ -1,4 +1,4 @@ -import { Container } from '@sushiswap/ui/components/container' +import { Container } from '@sushiswap/ui' import { FC } from 'react' import { diff --git a/apps/evm/src/app/(landing)/components/Search.tsx b/apps/evm/src/app/(landing)/components/Search.tsx index b9a260fb18..6b1624ebd9 100644 --- a/apps/evm/src/app/(landing)/components/Search.tsx +++ b/apps/evm/src/app/(landing)/components/Search.tsx @@ -5,9 +5,9 @@ import { } from '@heroicons/react-v1/solid' import { useDebounce, useOnClickOutside } from '@sushiswap/hooks' import { LinkInternal, classNames } from '@sushiswap/ui' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' +import { SkeletonCircle, SkeletonText } from '@sushiswap/ui' import { FC, useEffect, useMemo, useRef, useState } from 'react' import chains, { ChainId, chainShortName } from 'sushi/chain' import { Native, Token, Type } from 'sushi/currency' diff --git a/apps/evm/src/app/(landing)/components/Stats.tsx b/apps/evm/src/app/(landing)/components/Stats.tsx index 3910606859..d053907019 100644 --- a/apps/evm/src/app/(landing)/components/Stats.tsx +++ b/apps/evm/src/app/(landing)/components/Stats.tsx @@ -1,6 +1,6 @@ import { useIsMounted } from '@sushiswap/hooks' -import { Container } from '@sushiswap/ui/components/container' -import { SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Container } from '@sushiswap/ui' +import { SkeletonText } from '@sushiswap/ui' import { useQuery } from '@tanstack/react-query' import React, { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/components/Story/Section1/Custody.tsx b/apps/evm/src/app/(landing)/components/Story/Section1/Custody.tsx index 3f15d5621d..d083f8dc97 100644 --- a/apps/evm/src/app/(landing)/components/Story/Section1/Custody.tsx +++ b/apps/evm/src/app/(landing)/components/Story/Section1/Custody.tsx @@ -1,5 +1,5 @@ -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { motion } from 'framer-motion' import { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/components/Story/Section2/Move.tsx b/apps/evm/src/app/(landing)/components/Story/Section2/Move.tsx index 51f4430c39..cfcce951ef 100644 --- a/apps/evm/src/app/(landing)/components/Story/Section2/Move.tsx +++ b/apps/evm/src/app/(landing)/components/Story/Section2/Move.tsx @@ -1,6 +1,6 @@ import { LinkInternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { FC } from 'react' import { MoveImage } from './MoveImage' diff --git a/apps/evm/src/app/(landing)/components/Story/Section3/Guard.tsx b/apps/evm/src/app/(landing)/components/Story/Section3/Guard.tsx index f489e38413..26759729cc 100644 --- a/apps/evm/src/app/(landing)/components/Story/Section3/Guard.tsx +++ b/apps/evm/src/app/(landing)/components/Story/Section3/Guard.tsx @@ -1,5 +1,5 @@ -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' import { motion } from 'framer-motion' import { FC } from 'react' diff --git a/apps/evm/src/app/(landing)/layout.tsx b/apps/evm/src/app/(landing)/layout.tsx index 4e504f40c0..be0daf6f12 100644 --- a/apps/evm/src/app/(landing)/layout.tsx +++ b/apps/evm/src/app/(landing)/layout.tsx @@ -1,5 +1,5 @@ import { classNames } from '@sushiswap/ui' -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import React from 'react' import { Header } from './header' diff --git a/apps/evm/src/app/analytics/layout.tsx b/apps/evm/src/app/analytics/layout.tsx index 173305398e..b81621cc42 100644 --- a/apps/evm/src/app/analytics/layout.tsx +++ b/apps/evm/src/app/analytics/layout.tsx @@ -1,5 +1,5 @@ import { Container, LinkInternal, typographyVariants } from '@sushiswap/ui' -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import { Header } from './header' import { Providers } from './providers' diff --git a/apps/evm/src/app/bonds/hero.tsx b/apps/evm/src/app/bonds/hero.tsx index 6a2e59b331..be94275820 100644 --- a/apps/evm/src/app/bonds/hero.tsx +++ b/apps/evm/src/app/bonds/hero.tsx @@ -2,8 +2,8 @@ import { ArrowTopRightOnSquareIcon } from '@heroicons/react/24/outline' import { LinkExternal, LinkInternal, typographyVariants } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { DiscordIcon } from '@sushiswap/ui/components/icons' +import { Button } from '@sushiswap/ui' +import { DiscordIcon } from '@sushiswap/ui' import { FC } from 'react' export const Hero: FC = () => { diff --git a/apps/evm/src/app/bonds/layout.tsx b/apps/evm/src/app/bonds/layout.tsx index fbb572a742..a62982ac1e 100644 --- a/apps/evm/src/app/bonds/layout.tsx +++ b/apps/evm/src/app/bonds/layout.tsx @@ -1,4 +1,4 @@ -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import { Header } from './header' import { Providers } from './providers' diff --git a/apps/evm/src/app/claims/components/ClaimItem.tsx b/apps/evm/src/app/claims/components/ClaimItem.tsx index a3479e92a7..0476b76af6 100644 --- a/apps/evm/src/app/claims/components/ClaimItem.tsx +++ b/apps/evm/src/app/claims/components/ClaimItem.tsx @@ -2,11 +2,11 @@ import { CheckIcon } from '@heroicons/react-v1/solid' import { classNames } from '@sushiswap/ui' -import { Badge } from '@sushiswap/ui/components/badge' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Badge } from '@sushiswap/ui' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' +import { SkeletonCircle, SkeletonText } from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { useTokenAllowance } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance' import { useTokenRevokeApproval } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval' diff --git a/apps/evm/src/app/claims/components/RevokeItem.tsx b/apps/evm/src/app/claims/components/RevokeItem.tsx index b148006ded..47662aa53e 100644 --- a/apps/evm/src/app/claims/components/RevokeItem.tsx +++ b/apps/evm/src/app/claims/components/RevokeItem.tsx @@ -1,9 +1,9 @@ import { CheckIcon } from '@heroicons/react-v1/solid' -import { Badge } from '@sushiswap/ui/components/badge' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { List } from '@sushiswap/ui/components/list/List' +import { Badge } from '@sushiswap/ui' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { FC } from 'react' import { useTokenAllowance } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenAllowance' import { useTokenRevokeApproval } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenRevokeApproval' diff --git a/apps/evm/src/app/claims/rp2/page.tsx b/apps/evm/src/app/claims/rp2/page.tsx index 09f9b17282..16f8f677a1 100644 --- a/apps/evm/src/app/claims/rp2/page.tsx +++ b/apps/evm/src/app/claims/rp2/page.tsx @@ -3,8 +3,8 @@ import { Disclosure } from '@headlessui/react' import { ChevronRightIcon } from '@heroicons/react-v1/solid' import { LinkExternal, LinkInternal } from '@sushiswap/ui' -import { Container } from '@sushiswap/ui/components/container' -import { List } from '@sushiswap/ui/components/list/List' +import { Container } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { Fragment } from 'react' import { ConnectButton } from 'src/lib/wagmi/components/connect-button' diff --git a/apps/evm/src/app/home/header.tsx b/apps/evm/src/app/home/header.tsx index 0956b3c885..039871c09d 100644 --- a/apps/evm/src/app/home/header.tsx +++ b/apps/evm/src/app/home/header.tsx @@ -1,6 +1,6 @@ 'use client' -import { Navigation } from '@sushiswap/ui/components/navigation' +import { Navigation } from '@sushiswap/ui' import React, { FC } from 'react' import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' diff --git a/apps/evm/src/app/internal/tokens/components/TokenAdder.tsx b/apps/evm/src/app/internal/tokens/components/TokenAdder.tsx index a173dac1a1..f5a2c2c56a 100644 --- a/apps/evm/src/app/internal/tokens/components/TokenAdder.tsx +++ b/apps/evm/src/app/internal/tokens/components/TokenAdder.tsx @@ -1,12 +1,7 @@ import { CheckIcon, XMarkIcon } from '@heroicons/react/24/outline' -import { Currency } from '@sushiswap/ui/components/currency' -import { Loader } from '@sushiswap/ui/components/loader' -import { - Select, - SelectContent, - SelectItem, - SelectTrigger, -} from '@sushiswap/ui/components/select' +import { Currency } from '@sushiswap/ui' +import { Loader } from '@sushiswap/ui' +import { Select, SelectContent, SelectItem, SelectTrigger } from '@sushiswap/ui' import stringify from 'fast-json-stable-stringify' import Image from 'next/legacy/image' import React, { FC, useCallback, useMemo, useState } from 'react' diff --git a/apps/evm/src/app/internal/tokens/components/TokenTable.tsx b/apps/evm/src/app/internal/tokens/components/TokenTable.tsx index 22894282ff..1642484701 100644 --- a/apps/evm/src/app/internal/tokens/components/TokenTable.tsx +++ b/apps/evm/src/app/internal/tokens/components/TokenTable.tsx @@ -2,7 +2,7 @@ import { XIcon } from '@heroicons/react-v1/outline' import { DataTable } from '@sushiswap/ui' -import { CheckIcon, NetworkIcon } from '@sushiswap/ui/components/icons' +import { CheckIcon, NetworkIcon } from '@sushiswap/ui' import { createColumnHelper } from '@tanstack/react-table' import { FC } from 'react' import { ChainId, chainName } from 'sushi/chain' diff --git a/apps/evm/src/app/internal/tokens/page.tsx b/apps/evm/src/app/internal/tokens/page.tsx index 0e5b86b339..1039736a2f 100644 --- a/apps/evm/src/app/internal/tokens/page.tsx +++ b/apps/evm/src/app/internal/tokens/page.tsx @@ -5,8 +5,8 @@ import { ChevronDownIcon } from '@heroicons/react/24/outline' import { useDebounce } from '@sushiswap/hooks' import { classNames } from '@sushiswap/ui' import { NetworkSelector } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { NetworkIcon } from '@sushiswap/ui/components/icons' +import { Button } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' import stringify from 'fast-json-stable-stringify' import React, { FC, useState } from 'react' import { Chain, ChainId } from 'sushi/chain' diff --git a/apps/evm/src/app/partner/collab-hub-image.tsx b/apps/evm/src/app/partner/collab-hub-image.tsx index c7b3b4a9d4..800f808e10 100644 --- a/apps/evm/src/app/partner/collab-hub-image.tsx +++ b/apps/evm/src/app/partner/collab-hub-image.tsx @@ -1,6 +1,6 @@ 'use client' -import { cloudinaryImageLoader } from '@sushiswap/ui/cloudinary' +import { cloudinaryImageLoader } from '@sushiswap/ui' import Image from 'next/image' export const CollabHubImage = () => { diff --git a/apps/evm/src/app/partner/farmer-image.tsx b/apps/evm/src/app/partner/farmer-image.tsx index 877748faaf..03a977fa88 100644 --- a/apps/evm/src/app/partner/farmer-image.tsx +++ b/apps/evm/src/app/partner/farmer-image.tsx @@ -1,6 +1,6 @@ 'use client' -import { cloudinaryImageLoader } from '@sushiswap/ui/cloudinary' +import { cloudinaryImageLoader } from '@sushiswap/ui' import Image from 'next/image' export const FarmerImage = () => { diff --git a/apps/evm/src/app/partner/page.tsx b/apps/evm/src/app/partner/page.tsx index ccb194d7cd..027f777a2a 100644 --- a/apps/evm/src/app/partner/page.tsx +++ b/apps/evm/src/app/partner/page.tsx @@ -1,8 +1,8 @@ -import { Button } from '@sushiswap/ui/components/button' -import { Container } from '@sushiswap/ui/components/container' -import { LinkExternal, LinkInternal } from '@sushiswap/ui/components/link' -import { Separator } from '@sushiswap/ui/components/separator' -import { typographyVariants } from '@sushiswap/ui/components/typography' +import { Button } from '@sushiswap/ui' +import { Container } from '@sushiswap/ui' +import { LinkExternal, LinkInternal } from '@sushiswap/ui' +import { Separator } from '@sushiswap/ui' +import { typographyVariants } from '@sushiswap/ui' import { Metadata } from 'next' import React from 'react' import { CollabHubImage } from './collab-hub-image' diff --git a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx index 9a62385c74..20032a4cb3 100644 --- a/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx +++ b/apps/evm/src/app/pool/add/v2/[chainId]/page.tsx @@ -2,8 +2,8 @@ import { PlusIcon } from '@heroicons/react-v1/solid' import { FormSection } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Loader } from '@sushiswap/ui/components/loader' +import { Button } from '@sushiswap/ui' +import { Loader } from '@sushiswap/ui' import { useRouter } from 'next/navigation' import React, { Dispatch, diff --git a/apps/evm/src/app/pool/hero.tsx b/apps/evm/src/app/pool/hero.tsx index c796e911b0..1e30b88a0b 100644 --- a/apps/evm/src/app/pool/hero.tsx +++ b/apps/evm/src/app/pool/hero.tsx @@ -2,17 +2,17 @@ import { GiftIcon } from '@heroicons/react-v1/outline' import { LinkExternal, LinkInternal, typographyVariants } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Chip } from '@sushiswap/ui/components/chip' +import { Button } from '@sushiswap/ui' +import { Chip } from '@sushiswap/ui' import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuTrigger, -} from '@sushiswap/ui/components/dropdown-menu' -import { DiscordIcon } from '@sushiswap/ui/components/icons' -import { SelectIcon } from '@sushiswap/ui/components/select' +} from '@sushiswap/ui' +import { DiscordIcon } from '@sushiswap/ui' +import { SelectIcon } from '@sushiswap/ui' import { FC } from 'react' import { ChainId } from 'sushi/chain' import { diff --git a/apps/evm/src/app/pool/layout.tsx b/apps/evm/src/app/pool/layout.tsx index 088c8cabf7..bd46e1474f 100644 --- a/apps/evm/src/app/pool/layout.tsx +++ b/apps/evm/src/app/pool/layout.tsx @@ -1,4 +1,4 @@ -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import { Header } from './header' import { Providers } from './providers' diff --git a/apps/evm/src/app/stake/header.tsx b/apps/evm/src/app/stake/header.tsx index 4a23605f8d..d9062fdaeb 100644 --- a/apps/evm/src/app/stake/header.tsx +++ b/apps/evm/src/app/stake/header.tsx @@ -1,6 +1,6 @@ 'use client' -import { Navigation } from '@sushiswap/ui/components/navigation' +import { Navigation } from '@sushiswap/ui' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' diff --git a/apps/evm/src/app/stake/layout.tsx b/apps/evm/src/app/stake/layout.tsx index 12bf42709a..e49a382204 100644 --- a/apps/evm/src/app/stake/layout.tsx +++ b/apps/evm/src/app/stake/layout.tsx @@ -1,5 +1,5 @@ import { Container } from '@sushiswap/ui' -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import { BarHeader } from 'src/ui/stake' import { Header } from './header' import { Providers } from './providers' diff --git a/apps/evm/src/app/swap/header.tsx b/apps/evm/src/app/swap/header.tsx index 4a23605f8d..d9062fdaeb 100644 --- a/apps/evm/src/app/swap/header.tsx +++ b/apps/evm/src/app/swap/header.tsx @@ -1,6 +1,6 @@ 'use client' -import { Navigation } from '@sushiswap/ui/components/navigation' +import { Navigation } from '@sushiswap/ui' import React, { FC } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { WagmiHeaderComponents } from 'src/lib/wagmi/components/wagmi-header-components' diff --git a/apps/evm/src/app/swap/layout.tsx b/apps/evm/src/app/swap/layout.tsx index b112a92567..ecdc662922 100644 --- a/apps/evm/src/app/swap/layout.tsx +++ b/apps/evm/src/app/swap/layout.tsx @@ -1,4 +1,4 @@ -import { HotJar } from '@sushiswap/ui/components/scripts' +import { HotJar } from '@sushiswap/ui' import { Header } from './header' import { Providers } from './providers' diff --git a/apps/evm/src/app/tokenlist-request/page.tsx b/apps/evm/src/app/tokenlist-request/page.tsx index 1a19f6cfaa..5b0f7bb1a5 100644 --- a/apps/evm/src/app/tokenlist-request/page.tsx +++ b/apps/evm/src/app/tokenlist-request/page.tsx @@ -20,7 +20,7 @@ import { TextField, typographyVariants, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import React, { useCallback, useEffect } from 'react' import { DropzoneOptions, useDropzone } from 'react-dropzone' import { useForm } from 'react-hook-form' diff --git a/apps/evm/src/app/trackers.tsx b/apps/evm/src/app/trackers.tsx index 4b3a87e785..a1300bf30b 100644 --- a/apps/evm/src/app/trackers.tsx +++ b/apps/evm/src/app/trackers.tsx @@ -1,6 +1,6 @@ 'use client' -import { GoogleAnalytics } from '@sushiswap/ui/components/scripts' +import { GoogleAnalytics } from '@sushiswap/ui' import { Analytics as VercelAnalytics } from '@vercel/analytics/react' export function Trackers() { diff --git a/apps/evm/src/lib/wagmi/components/connect-button.tsx b/apps/evm/src/lib/wagmi/components/connect-button.tsx index 44584f4137..87cb381f15 100644 --- a/apps/evm/src/lib/wagmi/components/connect-button.tsx +++ b/apps/evm/src/lib/wagmi/components/connect-button.tsx @@ -1,12 +1,12 @@ import { ChevronDoubleDownIcon } from '@heroicons/react/24/outline' -import { Button, ButtonProps } from '@sushiswap/ui/components/button' +import { Button, ButtonProps } from '@sushiswap/ui' import { DropdownMenu, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuTrigger, -} from '@sushiswap/ui/components/dropdown-menu' +} from '@sushiswap/ui' import { CoinbaseWalletIcon, FrameIcon, @@ -17,7 +17,7 @@ import { TrustWalletIcon, WalletConnectIcon, XDEFIWalletIcon, -} from '@sushiswap/ui/components/icons' +} from '@sushiswap/ui' import React, { FC, useCallback, useMemo } from 'react' import Link from 'next/link' diff --git a/apps/evm/src/lib/wagmi/components/header-network-selector.tsx b/apps/evm/src/lib/wagmi/components/header-network-selector.tsx index d4bc5d5881..08a51511b4 100644 --- a/apps/evm/src/lib/wagmi/components/header-network-selector.tsx +++ b/apps/evm/src/lib/wagmi/components/header-network-selector.tsx @@ -1,11 +1,8 @@ import { useIsMounted } from '@sushiswap/hooks' -import { Button } from '@sushiswap/ui/components/button' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { - NetworkSelector, - NetworkSelectorOnSelectCallback, -} from '@sushiswap/ui/components/network-selector' -import { createErrorToast } from '@sushiswap/ui/components/toast' +import { Button } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' +import { NetworkSelector, NetworkSelectorOnSelectCallback } from '@sushiswap/ui' +import { createErrorToast } from '@sushiswap/ui' import React, { FC, Suspense, useCallback } from 'react' import { Chain, ChainId } from 'sushi/chain' import { ProviderRpcError, UserRejectedRequestError } from 'viem' diff --git a/apps/evm/src/lib/wagmi/components/network-check.tsx b/apps/evm/src/lib/wagmi/components/network-check.tsx index 08fb237fdd..e34e4d8f4d 100644 --- a/apps/evm/src/lib/wagmi/components/network-check.tsx +++ b/apps/evm/src/lib/wagmi/components/network-check.tsx @@ -1,7 +1,7 @@ 'use client' import { useIsMounted } from '@sushiswap/hooks' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { FC, useEffect, useState } from 'react' import ReactDOM from 'react-dom' import { Chain, ChainId, chainName } from 'sushi/chain' diff --git a/apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx b/apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx index d72985f437..9b4a87f244 100644 --- a/apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx +++ b/apps/evm/src/lib/wagmi/components/sanctioned-address-dialog.tsx @@ -1,7 +1,7 @@ 'use client' import { useLocalStorage } from '@sushiswap/hooks' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { Dialog, DialogContent, @@ -9,8 +9,8 @@ import { DialogFooter, DialogHeader, DialogTitle, -} from '@sushiswap/ui/components/dialog' -import { LinkExternal } from '@sushiswap/ui/components/link' +} from '@sushiswap/ui' +import { LinkExternal } from '@sushiswap/ui' export const SanctionedAddressDialog = () => { const [open, setOpen] = useLocalStorage('sanctionedAddress', false) diff --git a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx index 956782526c..d904e274cf 100644 --- a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx +++ b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelector.tsx @@ -26,10 +26,10 @@ import { classNames, gtagEvent, } from '@sushiswap/ui' -import { Button, buttonIconVariants } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { List } from '@sushiswap/ui/components/list' -import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Button, buttonIconVariants } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' +import { SkeletonCircle, SkeletonText } from '@sushiswap/ui' import React, { FC, ReactNode, diff --git a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx index 16e240fac1..6e47a3a162 100644 --- a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx +++ b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorCurrencyList.tsx @@ -1,5 +1,5 @@ import { NativeAddress } from '@sushiswap/react-query' -import { Currency } from '@sushiswap/ui/components/currency' +import { Currency } from '@sushiswap/ui' import React, { FC, memo, useMemo } from 'react' import { ChainId } from 'sushi/chain' import { Amount, Native, Type } from 'sushi/currency' diff --git a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx index 3eee3b2f53..a3dfdaee6c 100644 --- a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx +++ b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorImportRow.tsx @@ -9,9 +9,9 @@ import { DialogTrigger, Message, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Icon } from '@sushiswap/ui/components/currency/Icon' -import { List } from '@sushiswap/ui/components/list/List' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import { FC, useCallback, useState } from 'react' import { Chain } from 'sushi/chain' import { Token } from 'sushi/currency' @@ -57,7 +57,12 @@ export const TokenSelectorImportRow: FC = ({
- +
diff --git a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx index 9ba5fa9be8..bb64b1c78f 100644 --- a/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx +++ b/apps/evm/src/lib/wagmi/components/token-selector/TokenSelectorRow.tsx @@ -12,8 +12,8 @@ import { TooltipTrigger, classNames, } from '@sushiswap/ui' -import { Badge } from '@sushiswap/ui/components/badge' -import { Icon } from '@sushiswap/ui/components/currency/Icon' +import { Badge } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' import React, { CSSProperties, FC, memo, useCallback } from 'react' import { Chain } from 'sushi/chain' import { Amount, Type } from 'sushi/currency' @@ -96,7 +96,7 @@ export const TokenSelectorRow: FC = memo( } >
- = memo( ) : (
- { diff --git a/apps/evm/src/ui/pool/LiquidityChartRangeInput/Zoom.tsx b/apps/evm/src/ui/pool/LiquidityChartRangeInput/Zoom.tsx index 72cf60e143..c51d9a3d68 100644 --- a/apps/evm/src/ui/pool/LiquidityChartRangeInput/Zoom.tsx +++ b/apps/evm/src/ui/pool/LiquidityChartRangeInput/Zoom.tsx @@ -2,7 +2,7 @@ import { MagnifyingGlassMinusIcon, MagnifyingGlassPlusIcon, } from '@heroicons/react/20/solid' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { ScaleLinear, ZoomBehavior, diff --git a/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx b/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx index 4b68094f6e..e6ee64a76f 100644 --- a/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx +++ b/apps/evm/src/ui/pool/LiquidityChartRangeInput/index.tsx @@ -1,5 +1,5 @@ import { ChartBarIcon, InboxIcon, StopIcon } from '@heroicons/react-v1/solid' -import { SkeletonBox } from '@sushiswap/ui/components/skeleton' +import { SkeletonBox } from '@sushiswap/ui' import { format } from 'd3' import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Bound } from 'src/lib/constants' diff --git a/apps/evm/src/ui/pool/LiquidityDepthWidget.tsx b/apps/evm/src/ui/pool/LiquidityDepthWidget.tsx index b408160619..aa821936ba 100644 --- a/apps/evm/src/ui/pool/LiquidityDepthWidget.tsx +++ b/apps/evm/src/ui/pool/LiquidityDepthWidget.tsx @@ -1,7 +1,7 @@ 'use client' import { useConcentratedLiquidityPoolStats } from '@sushiswap/react-query' -import { SkeletonBox } from '@sushiswap/ui/components/skeleton' +import { SkeletonBox } from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { Bound } from 'src/lib/constants' import { SushiSwapV3ChainId } from 'sushi/config' diff --git a/apps/evm/src/ui/pool/MigrateTab.tsx b/apps/evm/src/ui/pool/MigrateTab.tsx index 29ec16d722..188ebe5b55 100644 --- a/apps/evm/src/ui/pool/MigrateTab.tsx +++ b/apps/evm/src/ui/pool/MigrateTab.tsx @@ -33,7 +33,7 @@ import { SettingsModule, SettingsOverlay, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import React, { FC, useMemo, useState } from 'react' import { APPROVE_TAG_MIGRATE, diff --git a/apps/evm/src/ui/pool/PoolButtons.tsx b/apps/evm/src/ui/pool/PoolButtons.tsx index fb915718dd..38e3cc3bb0 100644 --- a/apps/evm/src/ui/pool/PoolButtons.tsx +++ b/apps/evm/src/ui/pool/PoolButtons.tsx @@ -1,6 +1,6 @@ import { Pool } from '@sushiswap/client' import { LinkInternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import Link from 'next/link' import { FC } from 'react' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/ui/pool/PoolChartGraph.tsx b/apps/evm/src/ui/pool/PoolChartGraph.tsx index 60c44fb823..ccb5738576 100644 --- a/apps/evm/src/ui/pool/PoolChartGraph.tsx +++ b/apps/evm/src/ui/pool/PoolChartGraph.tsx @@ -6,8 +6,8 @@ import { SkeletonText, classNames, } from '@sushiswap/ui' -import { CardDescription, CardTitle } from '@sushiswap/ui/components/card' -import { SkeletonBox } from '@sushiswap/ui/components/skeleton' +import { CardDescription, CardTitle } from '@sushiswap/ui' +import { SkeletonBox } from '@sushiswap/ui' import { format } from 'date-fns' import { FC, useCallback, useMemo } from 'react' import { usePoolGraphData } from 'src/lib/hooks' diff --git a/apps/evm/src/ui/pool/PoolChartPeriods.tsx b/apps/evm/src/ui/pool/PoolChartPeriods.tsx index 29bda4f1c5..e7b5e9c19c 100644 --- a/apps/evm/src/ui/pool/PoolChartPeriods.tsx +++ b/apps/evm/src/ui/pool/PoolChartPeriods.tsx @@ -1,4 +1,4 @@ -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import React, { FC } from 'react' export enum PoolChartPeriod { diff --git a/apps/evm/src/ui/pool/PoolChartTypes.tsx b/apps/evm/src/ui/pool/PoolChartTypes.tsx index 7d957f78bf..ef227c0e22 100644 --- a/apps/evm/src/ui/pool/PoolChartTypes.tsx +++ b/apps/evm/src/ui/pool/PoolChartTypes.tsx @@ -1,4 +1,4 @@ -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import React from 'react' export enum PoolChartType { diff --git a/apps/evm/src/ui/pool/PoolComposition.tsx b/apps/evm/src/ui/pool/PoolComposition.tsx index e58f7d549e..26e340cb73 100644 --- a/apps/evm/src/ui/pool/PoolComposition.tsx +++ b/apps/evm/src/ui/pool/PoolComposition.tsx @@ -11,7 +11,7 @@ import { CardHeader, CardLabel, CardTitle, -} from '@sushiswap/ui/components/card' +} from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { usePoolGraphData, useTokenAmountDollarValues } from 'src/lib/hooks' import { SushiSwapV2ChainId } from 'sushi/config' diff --git a/apps/evm/src/ui/pool/PoolHeader.tsx b/apps/evm/src/ui/pool/PoolHeader.tsx index cceeb6ead5..a1767a32ac 100644 --- a/apps/evm/src/ui/pool/PoolHeader.tsx +++ b/apps/evm/src/ui/pool/PoolHeader.tsx @@ -15,7 +15,7 @@ import { TooltipContent, TooltipProvider, TooltipTrigger, -} from '@sushiswap/ui/components/tooltip' +} from '@sushiswap/ui' import React, { FC, useMemo } from 'react' import { Chain } from 'sushi/chain' import { Token, unwrapToken } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/PoolMyRewards.tsx b/apps/evm/src/ui/pool/PoolMyRewards.tsx index 393c589ba0..cbd57cda76 100644 --- a/apps/evm/src/ui/pool/PoolMyRewards.tsx +++ b/apps/evm/src/ui/pool/PoolMyRewards.tsx @@ -1,7 +1,7 @@ 'use client' import { Pool } from '@sushiswap/client' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { Card, CardContent, @@ -12,7 +12,7 @@ import { CardHeader, CardLabel, CardTitle, -} from '@sushiswap/ui/components/card' +} from '@sushiswap/ui' import { FC } from 'react' import { formatUSD } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolNameCell.tsx b/apps/evm/src/ui/pool/PoolNameCell.tsx index e221050e12..2c1ec33cb0 100644 --- a/apps/evm/src/ui/pool/PoolNameCell.tsx +++ b/apps/evm/src/ui/pool/PoolNameCell.tsx @@ -1,15 +1,15 @@ 'use client' import { classNames } from '@sushiswap/ui' -import { Badge } from '@sushiswap/ui/components/badge' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' +import { Badge } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, -} from '@sushiswap/ui/components/tooltip' +} from '@sushiswap/ui' import { FC } from 'react' import { useTokensFromPool } from 'src/lib/hooks' import { formatNumber } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolNameCellV3.tsx b/apps/evm/src/ui/pool/PoolNameCellV3.tsx index 78b8cf701d..ec4a899cfa 100644 --- a/apps/evm/src/ui/pool/PoolNameCellV3.tsx +++ b/apps/evm/src/ui/pool/PoolNameCellV3.tsx @@ -1,7 +1,7 @@ import { classNames } from '@sushiswap/ui' -import { Badge } from '@sushiswap/ui/components/badge' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' +import { Badge } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' import { Row } from '@tanstack/react-table' import { FC, useMemo } from 'react' import { ConcentratedLiquidityPositionWithV3Pool } from 'src/lib/wagmi/hooks/positions/types' diff --git a/apps/evm/src/ui/pool/PoolPageV3.tsx b/apps/evm/src/ui/pool/PoolPageV3.tsx index 39d65d26e9..7380375f2a 100644 --- a/apps/evm/src/ui/pool/PoolPageV3.tsx +++ b/apps/evm/src/ui/pool/PoolPageV3.tsx @@ -11,8 +11,8 @@ import { CardDescription, CardHeader, CardTitle, -} from '@sushiswap/ui/components/card' -import { Toggle } from '@sushiswap/ui/components/toggle' +} from '@sushiswap/ui' +import { Toggle } from '@sushiswap/ui' import React, { FC, useState } from 'react' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { useConcentratedLiquidityPool } from 'src/lib/wagmi/hooks/pools/hooks/useConcentratedLiquidityPool' diff --git a/apps/evm/src/ui/pool/PoolPosition.tsx b/apps/evm/src/ui/pool/PoolPosition.tsx index 7d40ec4208..49a1fcae22 100644 --- a/apps/evm/src/ui/pool/PoolPosition.tsx +++ b/apps/evm/src/ui/pool/PoolPosition.tsx @@ -7,7 +7,7 @@ import { CardDescription, CardHeader, CardTitle, -} from '@sushiswap/ui/components/card' +} from '@sushiswap/ui' import { FC } from 'react' import { formatUSD } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolPositionDesktop.tsx b/apps/evm/src/ui/pool/PoolPositionDesktop.tsx index 7d8c0cb2d0..858bbf361a 100644 --- a/apps/evm/src/ui/pool/PoolPositionDesktop.tsx +++ b/apps/evm/src/ui/pool/PoolPositionDesktop.tsx @@ -1,9 +1,5 @@ import { Pool } from '@sushiswap/client' -import { - CardCurrencyAmountItem, - CardGroup, - CardLabel, -} from '@sushiswap/ui/components/card' +import { CardCurrencyAmountItem, CardGroup, CardLabel } from '@sushiswap/ui' import { FC } from 'react' import { formatUSD } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolPositionStakedDesktop.tsx b/apps/evm/src/ui/pool/PoolPositionStakedDesktop.tsx index 7d9d37477c..16bc5367ac 100644 --- a/apps/evm/src/ui/pool/PoolPositionStakedDesktop.tsx +++ b/apps/evm/src/ui/pool/PoolPositionStakedDesktop.tsx @@ -1,9 +1,5 @@ import { Pool } from '@sushiswap/client' -import { - CardCurrencyAmountItem, - CardGroup, - CardLabel, -} from '@sushiswap/ui/components/card' +import { CardCurrencyAmountItem, CardGroup, CardLabel } from '@sushiswap/ui' import { FC } from 'react' import { formatUSD } from 'sushi/format' diff --git a/apps/evm/src/ui/pool/PoolQuickHoverTooltip.tsx b/apps/evm/src/ui/pool/PoolQuickHoverTooltip.tsx index 3a7d08aab2..5304660922 100644 --- a/apps/evm/src/ui/pool/PoolQuickHoverTooltip.tsx +++ b/apps/evm/src/ui/pool/PoolQuickHoverTooltip.tsx @@ -1,9 +1,9 @@ import { PlusIcon, UserCircleIcon } from '@heroicons/react-v1/solid' import { Pool, Protocol } from '@sushiswap/client' import { LinkInternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { List } from '@sushiswap/ui/components/list/List' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { FC } from 'react' import { incentiveRewardToToken } from 'src/lib/functions' import { ChainId } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/PoolRewards.tsx b/apps/evm/src/ui/pool/PoolRewards.tsx index 7947410aac..2492305fb0 100644 --- a/apps/evm/src/ui/pool/PoolRewards.tsx +++ b/apps/evm/src/ui/pool/PoolRewards.tsx @@ -9,7 +9,7 @@ import { CardLabel, CardTitle, } from '@sushiswap/ui' -import { Card, CardDescription } from '@sushiswap/ui/components/card' +import { Card, CardDescription } from '@sushiswap/ui' import React, { FC } from 'react' import { incentiveRewardToToken } from 'src/lib/functions' import { ChainId } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/PoolRewardsCell.tsx b/apps/evm/src/ui/pool/PoolRewardsCell.tsx index a064459bdb..e7ac91eaca 100644 --- a/apps/evm/src/ui/pool/PoolRewardsCell.tsx +++ b/apps/evm/src/ui/pool/PoolRewardsCell.tsx @@ -1,4 +1,4 @@ -import { Currency } from '@sushiswap/ui/components/currency' +import { Currency } from '@sushiswap/ui' import { Row } from '@tanstack/react-table' import { FC } from 'react' import { ChainId } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/PoolStats.tsx b/apps/evm/src/ui/pool/PoolStats.tsx index 3d0f6f4572..a937817a39 100644 --- a/apps/evm/src/ui/pool/PoolStats.tsx +++ b/apps/evm/src/ui/pool/PoolStats.tsx @@ -9,7 +9,7 @@ import { CardTitle, classNames, } from '@sushiswap/ui' -import { SkeletonText } from '@sushiswap/ui/components/skeleton' +import { SkeletonText } from '@sushiswap/ui' import { FC } from 'react' import { usePoolGraphData } from 'src/lib/hooks' import { SushiSwapV2ChainId } from 'sushi/config' diff --git a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx index 1d658084ff..4792113416 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV2.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV2.tsx @@ -8,7 +8,7 @@ import { CardTitle, DataTable, } from '@sushiswap/ui' -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import { useQuery } from '@tanstack/react-query' import { PaginationState } from '@tanstack/react-table' import React, { FC, useMemo, useState } from 'react' diff --git a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx index 620ba22053..30514730de 100644 --- a/apps/evm/src/ui/pool/PoolTransactionsV3.tsx +++ b/apps/evm/src/ui/pool/PoolTransactionsV3.tsx @@ -8,7 +8,7 @@ import { CardTitle, DataTable, } from '@sushiswap/ui' -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import { useQuery } from '@tanstack/react-query' import { PaginationState } from '@tanstack/react-table' import React, { FC, useMemo, useState } from 'react' diff --git a/apps/evm/src/ui/pool/PositionCard.tsx b/apps/evm/src/ui/pool/PositionCard.tsx index 24c11ae308..1390afbd77 100644 --- a/apps/evm/src/ui/pool/PositionCard.tsx +++ b/apps/evm/src/ui/pool/PositionCard.tsx @@ -1,13 +1,13 @@ import { LinkInternal } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { SkeletonCircle, SkeletonText } from '@sushiswap/ui' import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, -} from '@sushiswap/ui/components/tooltip' +} from '@sushiswap/ui' import React, { FC } from 'react' import { UserWithPool } from 'src/app/pool/api/user-with-pools/route' import { useTokensFromPool } from 'src/lib/hooks' diff --git a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx index 0534ae5d45..dc258dd58d 100644 --- a/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx +++ b/apps/evm/src/ui/pool/PositionQuickHoverTooltip.tsx @@ -1,8 +1,8 @@ import { ArrowDownIcon, MinusIcon, PlusIcon } from '@heroicons/react-v1/solid' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { LinkInternal } from '@sushiswap/ui/components/link' -import { List } from '@sushiswap/ui/components/list' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { LinkInternal } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { FC, useCallback } from 'react' import { formatPercent, formatUSD } from 'sushi/format' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/ui/pool/PositionView.tsx b/apps/evm/src/ui/pool/PositionView.tsx index a131564551..bd948ff055 100644 --- a/apps/evm/src/ui/pool/PositionView.tsx +++ b/apps/evm/src/ui/pool/PositionView.tsx @@ -30,9 +30,9 @@ import { WidgetAction, classNames, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { FormattedNumber } from '@sushiswap/ui/components/formatted-number' -import { SkeletonText } from '@sushiswap/ui/components/skeleton' +import { Button } from '@sushiswap/ui' +import { FormattedNumber } from '@sushiswap/ui' +import { SkeletonText } from '@sushiswap/ui' import { FC, useMemo, useState } from 'react' import { useConcentratedPositionInfo } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionInfo' import { useConcentratedPositionOwner } from 'src/lib/wagmi/hooks/positions/hooks/useConcentratedPositionOwner' diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index a2b7a934ac..051591bede 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -1,5 +1,5 @@ import { Card, CardHeader, CardTitle, DataTable } from '@sushiswap/ui' -import { Slot } from '@sushiswap/ui/components/slot' +import { Slot } from '@sushiswap/ui' import { DisplayColumnDef, PaginationState, Row } from '@tanstack/react-table' import React, { FC, ReactNode, useCallback, useMemo, useState } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' diff --git a/apps/evm/src/ui/pool/PriceRangeCell.tsx b/apps/evm/src/ui/pool/PriceRangeCell.tsx index 73143f3294..9ce9471f08 100644 --- a/apps/evm/src/ui/pool/PriceRangeCell.tsx +++ b/apps/evm/src/ui/pool/PriceRangeCell.tsx @@ -2,7 +2,7 @@ import { ArrowSmLeftIcon, ArrowSmRightIcon } from '@heroicons/react-v1/solid' import { classNames } from '@sushiswap/ui' -import { FormattedNumber } from '@sushiswap/ui/components/formatted-number' +import { FormattedNumber } from '@sushiswap/ui' import { Row } from '@tanstack/react-table' import { FC, useMemo, useState } from 'react' import { Bound } from 'src/lib/constants' diff --git a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx index d184b1f737..c9ac92e87b 100644 --- a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx @@ -8,8 +8,8 @@ import { useIsMounted, } from '@sushiswap/hooks' import { Dots } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { createToast } from '@sushiswap/ui/components/toast' +import { Button } from '@sushiswap/ui' +import { createToast } from '@sushiswap/ui' import { FC, useCallback, useEffect, useMemo, useState } from 'react' import { APPROVE_TAG_REMOVE_LEGACY } from 'src/lib/constants' import { diff --git a/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx b/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx index 463a45edd8..063a561707 100644 --- a/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionUnstake.tsx @@ -15,8 +15,8 @@ import { WidgetHeader, WidgetTitle, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Dots } from '@sushiswap/ui/components/dots' +import { Button } from '@sushiswap/ui' +import { Dots } from '@sushiswap/ui' import { FC, useMemo, useState } from 'react' import { ChainId } from 'sushi/chain' import { ZERO } from 'sushi/math' diff --git a/apps/evm/src/ui/pool/RemoveSectionWidget.tsx b/apps/evm/src/ui/pool/RemoveSectionWidget.tsx index 1e321ccb67..c3476375dc 100644 --- a/apps/evm/src/ui/pool/RemoveSectionWidget.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionWidget.tsx @@ -11,17 +11,10 @@ import { WidgetDescription, WidgetFooter, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { IconButton } from '@sushiswap/ui/components/iconbutton' -import { - SettingsModule, - SettingsOverlay, -} from '@sushiswap/ui/components/settings' -import { - Widget, - WidgetHeader, - WidgetTitle, -} from '@sushiswap/ui/components/widget' +import { Button } from '@sushiswap/ui' +import { IconButton } from '@sushiswap/ui' +import { SettingsModule, SettingsOverlay } from '@sushiswap/ui' +import { Widget, WidgetHeader, WidgetTitle } from '@sushiswap/ui' import React, { FC, ReactNode } from 'react' import { ChainId } from 'sushi/chain' import { Amount, Type } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/RewardSlide.tsx b/apps/evm/src/ui/pool/RewardSlide.tsx index 110b110e29..7c6026bbb1 100644 --- a/apps/evm/src/ui/pool/RewardSlide.tsx +++ b/apps/evm/src/ui/pool/RewardSlide.tsx @@ -16,9 +16,9 @@ import { SkeletonBox, SkeletonText, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { List } from '@sushiswap/ui/components/list/List' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { FC, ReactNode, useMemo } from 'react' import { Checker } from 'src/lib/wagmi/systems/Checker' import { Chain } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/RewardsSection.tsx b/apps/evm/src/ui/pool/RewardsSection.tsx index 0f421699ce..bda147dd27 100644 --- a/apps/evm/src/ui/pool/RewardsSection.tsx +++ b/apps/evm/src/ui/pool/RewardsSection.tsx @@ -11,7 +11,7 @@ import { Container, DataTable, } from '@sushiswap/ui' -import { Carousel } from '@sushiswap/ui/components/carousel' +import { Carousel } from '@sushiswap/ui' import { ColumnDef, PaginationState } from '@tanstack/react-table' import React, { FC, useCallback, useMemo, useState } from 'react' import { ANGLE_SUPPORTED_CHAIN_IDS } from 'sushi/config' diff --git a/apps/evm/src/ui/pool/RewardsV3NameCell.tsx b/apps/evm/src/ui/pool/RewardsV3NameCell.tsx index 5d6a9de3fe..036c4252b3 100644 --- a/apps/evm/src/ui/pool/RewardsV3NameCell.tsx +++ b/apps/evm/src/ui/pool/RewardsV3NameCell.tsx @@ -9,9 +9,9 @@ import { HoverCardPrimitive, HoverCardTrigger, } from '@sushiswap/ui' -import { Badge } from '@sushiswap/ui/components/badge' -import { Currency } from '@sushiswap/ui/components/currency' -import { NetworkIcon } from '@sushiswap/ui/components/icons' +import { Badge } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' import { Row } from '@tanstack/react-table' import React, { FC } from 'react' import { unwrapToken } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx b/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx index 8bd9fb7de8..ca8a9bf31e 100644 --- a/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx +++ b/apps/evm/src/ui/pool/SelectFeeConcentratedWidget.tsx @@ -15,7 +15,7 @@ import { LinkInternal, Toggle, } from '@sushiswap/ui' -import { Dots } from '@sushiswap/ui/components/dots' +import { Dots } from '@sushiswap/ui' import React, { FC, memo, useMemo } from 'react' import { usePoolsByTokenPair } from 'src/lib/hooks/usePoolsByTokenPair' import { SushiSwapV3FeeAmount } from 'sushi/config' diff --git a/apps/evm/src/ui/pool/SelectNetworkWidget.tsx b/apps/evm/src/ui/pool/SelectNetworkWidget.tsx index cd90d6f4b7..69eb6be5a5 100644 --- a/apps/evm/src/ui/pool/SelectNetworkWidget.tsx +++ b/apps/evm/src/ui/pool/SelectNetworkWidget.tsx @@ -1,7 +1,7 @@ import { FormSection, NetworkSelector } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { NetworkIcon } from '@sushiswap/ui/components/icons' -import { SelectIcon } from '@sushiswap/ui/components/select' +import { Button } from '@sushiswap/ui' +import { NetworkIcon } from '@sushiswap/ui' +import { SelectIcon } from '@sushiswap/ui' import React, { FC, memo } from 'react' import { ChainId, chainName } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx b/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx index 47563701da..7c2015dd6e 100644 --- a/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPoolTypeWidget.tsx @@ -3,7 +3,7 @@ import { RadioGroup } from '@headlessui/react' import { StarIcon } from '@heroicons/react-v1/solid' import { FormSection, classNames } from '@sushiswap/ui' -import { CheckIcon } from '@sushiswap/ui/components/icons' +import { CheckIcon } from '@sushiswap/ui' import React, { FC, memo } from 'react' import { PoolFinderType } from 'src/lib/wagmi/systems/PoolFinder/types' diff --git a/apps/evm/src/ui/pool/SelectPricesWidget.tsx b/apps/evm/src/ui/pool/SelectPricesWidget.tsx index f0e6930803..e2a2fb9530 100644 --- a/apps/evm/src/ui/pool/SelectPricesWidget.tsx +++ b/apps/evm/src/ui/pool/SelectPricesWidget.tsx @@ -27,8 +27,8 @@ import { TooltipTrigger, classNames, } from '@sushiswap/ui' -import { SkeletonText } from '@sushiswap/ui/components/skeleton' -import { Toggle } from '@sushiswap/ui/components/toggle' +import { SkeletonText } from '@sushiswap/ui' +import { Toggle } from '@sushiswap/ui' import React, { FC, ReactNode, diff --git a/apps/evm/src/ui/pool/SelectTokensWidget.tsx b/apps/evm/src/ui/pool/SelectTokensWidget.tsx index dd28c8a6b0..fa3c20be74 100644 --- a/apps/evm/src/ui/pool/SelectTokensWidget.tsx +++ b/apps/evm/src/ui/pool/SelectTokensWidget.tsx @@ -1,7 +1,7 @@ import { FormSection } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Currency } from '@sushiswap/ui/components/currency' -import { SelectIcon } from '@sushiswap/ui/components/select' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { SelectIcon } from '@sushiswap/ui' import React, { FC } from 'react' import { TokenSelector } from 'src/lib/wagmi/components/token-selector/TokenSelector' import { ChainId } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx index 9ce37d95cb..c5933a5994 100644 --- a/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerLiquidityManagement/Add/SteerPositionAddReviewModal.tsx @@ -19,9 +19,9 @@ import { createErrorToast, createToast, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Dots } from '@sushiswap/ui/components/dots' -import { List } from '@sushiswap/ui/components/list/List' +import { Button } from '@sushiswap/ui' +import { Dots } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { FC, ReactNode, useCallback, useMemo } from 'react' import { Chain } from 'sushi/chain' import { Amount } from 'sushi/currency' diff --git a/apps/evm/src/ui/pool/Steer/SteerStrategies/SteerBaseStrategy.tsx b/apps/evm/src/ui/pool/Steer/SteerStrategies/SteerBaseStrategy.tsx index 71a789ef52..0b2d82b2cb 100644 --- a/apps/evm/src/ui/pool/Steer/SteerStrategies/SteerBaseStrategy.tsx +++ b/apps/evm/src/ui/pool/Steer/SteerStrategies/SteerBaseStrategy.tsx @@ -19,7 +19,7 @@ import { } from '@sushiswap/ui' import { formatPercent, formatUSD } from 'sushi/format' -import { FormattedNumber } from '@sushiswap/ui/components/formatted-number' +import { FormattedNumber } from '@sushiswap/ui' import { SteerStrategyComponent } from '.' import { APRHoverCard } from '../../APRHoverCard' import { SteerAPRChart } from '../SteerAPRChart' diff --git a/apps/evm/src/ui/pool/TableFiltersNetwork.tsx b/apps/evm/src/ui/pool/TableFiltersNetwork.tsx index 83ccbdd757..0aea8e36b5 100644 --- a/apps/evm/src/ui/pool/TableFiltersNetwork.tsx +++ b/apps/evm/src/ui/pool/TableFiltersNetwork.tsx @@ -8,15 +8,15 @@ import { PopoverTrigger, Separator, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' +import { Button } from '@sushiswap/ui' import { Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, -} from '@sushiswap/ui/components/command' -import { CheckIcon, NetworkIcon } from '@sushiswap/ui/components/icons' +} from '@sushiswap/ui' +import { CheckIcon, NetworkIcon } from '@sushiswap/ui' import React, { FC, useCallback, useState, useTransition } from 'react' import { SUPPORTED_CHAIN_IDS } from 'src/config' import { Chain } from 'sushi/chain' diff --git a/apps/evm/src/ui/pool/TableFiltersPoolType.tsx b/apps/evm/src/ui/pool/TableFiltersPoolType.tsx index a481b89ed8..b47ee48721 100644 --- a/apps/evm/src/ui/pool/TableFiltersPoolType.tsx +++ b/apps/evm/src/ui/pool/TableFiltersPoolType.tsx @@ -16,13 +16,9 @@ import { PopoverTrigger, Separator, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { - Command, - CommandGroup, - CommandItem, -} from '@sushiswap/ui/components/command' -import { CheckIcon } from '@sushiswap/ui/components/icons' +import { Button } from '@sushiswap/ui' +import { Command, CommandGroup, CommandItem } from '@sushiswap/ui' +import { CheckIcon } from '@sushiswap/ui' import React, { FC, useCallback, useState, useTransition } from 'react' import { PROTOCOL_MAP } from '../../lib/constants' diff --git a/apps/evm/src/ui/pool/columns.tsx b/apps/evm/src/ui/pool/columns.tsx index 602de09669..d228162fa2 100644 --- a/apps/evm/src/ui/pool/columns.tsx +++ b/apps/evm/src/ui/pool/columns.tsx @@ -8,7 +8,7 @@ import { TooltipTrigger, classNames, } from '@sushiswap/ui' -import { SkeletonCircle, SkeletonText } from '@sushiswap/ui/components/skeleton' +import { SkeletonCircle, SkeletonText } from '@sushiswap/ui' import { ColumnDef } from '@tanstack/react-table' import { formatDistance } from 'date-fns' import React from 'react' diff --git a/apps/evm/src/ui/stake/BarChartGraph.tsx b/apps/evm/src/ui/stake/BarChartGraph.tsx index d7f00e0bb0..e94ecca3df 100644 --- a/apps/evm/src/ui/stake/BarChartGraph.tsx +++ b/apps/evm/src/ui/stake/BarChartGraph.tsx @@ -6,8 +6,8 @@ import { SkeletonText, classNames, } from '@sushiswap/ui' -import { CardDescription, CardTitle } from '@sushiswap/ui/components/card' -import { SkeletonBox } from '@sushiswap/ui/components/skeleton' +import { CardDescription, CardTitle } from '@sushiswap/ui' +import { SkeletonBox } from '@sushiswap/ui' import { format } from 'date-fns' import { FC, useCallback, useMemo } from 'react' import { formatNumber, formatPercent } from 'sushi/format' diff --git a/apps/evm/src/ui/stake/BarChartPeriods.tsx b/apps/evm/src/ui/stake/BarChartPeriods.tsx index 8a9918df0a..775cf5ed80 100644 --- a/apps/evm/src/ui/stake/BarChartPeriods.tsx +++ b/apps/evm/src/ui/stake/BarChartPeriods.tsx @@ -1,4 +1,4 @@ -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import React, { FC } from 'react' export enum BarChartPeriod { diff --git a/apps/evm/src/ui/stake/BarChartTypes.tsx b/apps/evm/src/ui/stake/BarChartTypes.tsx index 4d3a16697f..bbcd03b049 100644 --- a/apps/evm/src/ui/stake/BarChartTypes.tsx +++ b/apps/evm/src/ui/stake/BarChartTypes.tsx @@ -1,4 +1,4 @@ -import { Toggle } from '@sushiswap/ui/components/toggle' +import { Toggle } from '@sushiswap/ui' import React from 'react' export enum BarChartType { diff --git a/apps/evm/src/ui/stake/BarHeader.tsx b/apps/evm/src/ui/stake/BarHeader.tsx index e31b1ef293..3fd65a68c6 100644 --- a/apps/evm/src/ui/stake/BarHeader.tsx +++ b/apps/evm/src/ui/stake/BarHeader.tsx @@ -7,7 +7,7 @@ import { TooltipContent, TooltipProvider, TooltipTrigger, -} from '@sushiswap/ui/components/tooltip' +} from '@sushiswap/ui' import React from 'react' import { Chain, ChainId } from 'sushi/chain' import { XSUSHI } from 'sushi/currency' diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-confirmation-dialog.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-confirmation-dialog.tsx index b8a846ce38..c46db159d9 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-confirmation-dialog.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-confirmation-dialog.tsx @@ -1,10 +1,10 @@ import { ArrowTopRightOnSquareIcon } from '@heroicons/react/20/solid' import { Button, SquidIcon, classNames } from '@sushiswap/ui' -import { Currency } from '@sushiswap/ui/components/currency' -import { Dots } from '@sushiswap/ui/components/dots' -import { CheckMarkIcon } from '@sushiswap/ui/components/icons/CheckmarkIcon' -import { FailedMarkIcon } from '@sushiswap/ui/components/icons/FailedMarkIcon' -import { Loader } from '@sushiswap/ui/components/loader' +import { Currency } from '@sushiswap/ui' +import { Dots } from '@sushiswap/ui' +import { CheckMarkIcon } from '@sushiswap/ui' +import { FailedMarkIcon } from '@sushiswap/ui' +import { Loader } from '@sushiswap/ui' import { FC, ReactNode } from 'react' import { SushiXSwap2Adapter, diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-header.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-header.tsx index 861c4e364e..b24191fea5 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-header.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-header.tsx @@ -3,7 +3,7 @@ import { ArrowTrendingUpIcon } from '@heroicons/react/20/solid' import { usePrices } from '@sushiswap/react-query' import { Button, typographyVariants } from '@sushiswap/ui' -import { SkeletonText } from '@sushiswap/ui/components/skeleton' +import { SkeletonText } from '@sushiswap/ui' import React, { useMemo, useState } from 'react' import { useTokenAmountDollarValues } from 'src/lib/hooks' import { Amount, Price, Token, tryParseAmount } from 'sushi/currency' diff --git a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx index 375cfb9dfe..fa1ece3468 100644 --- a/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx +++ b/apps/evm/src/ui/swap/cross-chain/cross-chain-swap-token-not-found-dialog.tsx @@ -12,9 +12,9 @@ import { Message, NetworkIcon, } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui/components/button' -import { Icon } from '@sushiswap/ui/components/currency/Icon' -import { List } from '@sushiswap/ui/components/list' +import { Button } from '@sushiswap/ui' +import { Currency } from '@sushiswap/ui' +import { List } from '@sushiswap/ui' import React, { useCallback, useMemo } from 'react' import { TokenSecurityView } from 'src/lib/wagmi/components/token-security-view' import { useTokenWithCache } from 'src/lib/wagmi/hooks/tokens/useTokenWithCache' @@ -134,7 +134,7 @@ export const CrossChainSwapTokenNotFoundDialog = () => {
{token0 && token0NotInList ? (
- + { ) : null} {token1 && token1NotInList ? (
- + Date: Wed, 12 Jun 2024 00:30:20 +0000 Subject: [PATCH 107/119] fix(pkgs/sushi): import aliasing --- apps/evm/src/lib/constants.ts | 3 ++- packages/sushi/package.json | 3 ++- packages/sushi/tsconfig.json | 7 ++++++- .../src/components/animation/Collapsible/Collapsible.tsx | 2 ++ pnpm-lock.yaml | 3 +++ 5 files changed, 15 insertions(+), 3 deletions(-) diff --git a/apps/evm/src/lib/constants.ts b/apps/evm/src/lib/constants.ts index 67cbc059c0..48d39c7360 100644 --- a/apps/evm/src/lib/constants.ts +++ b/apps/evm/src/lib/constants.ts @@ -1,4 +1,5 @@ -import { GetPoolsArgs, Protocol } from '@sushiswap/client' +import type { GetPoolsArgs } from '@sushiswap/client' +import { Protocol } from '@sushiswap/database' import { SUPPORTED_CHAIN_IDS } from '../config' diff --git a/packages/sushi/package.json b/packages/sushi/package.json index c361e4c618..f9e87d4af5 100644 --- a/packages/sushi/package.json +++ b/packages/sushi/package.json @@ -195,7 +195,7 @@ "dist" ], "scripts": { - "build": "tsc", + "build": "tsc && tsc-alias -p tsconfig.json", "check": "tsc --pretty --noEmit", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "dev": "tsc -w", @@ -227,6 +227,7 @@ "@tsconfig/strictest": "2.0.2", "@types/big.js": "6.2.0", "@types/seedrandom": "3.0.1", + "tsc-alias": "^1.8.10", "typescript": "5.2.2", "viem": "2.10.11", "vitest": "0.34.6", diff --git a/packages/sushi/tsconfig.json b/packages/sushi/tsconfig.json index fb39f028eb..5b3611bd71 100644 --- a/packages/sushi/tsconfig.json +++ b/packages/sushi/tsconfig.json @@ -16,6 +16,11 @@ "declarationMap": true, "sourceMap": true, "skipLibCheck": true, - "resolveJsonModule": true + "resolveJsonModule": true, + "paths": { + "sushi/types": [ + "./src/types" + ] + } } } diff --git a/packages/ui/src/components/animation/Collapsible/Collapsible.tsx b/packages/ui/src/components/animation/Collapsible/Collapsible.tsx index d1dcd67c04..58f12a81bd 100644 --- a/packages/ui/src/components/animation/Collapsible/Collapsible.tsx +++ b/packages/ui/src/components/animation/Collapsible/Collapsible.tsx @@ -1,3 +1,5 @@ +'use client' + import { FC, ReactNode } from 'react' import { animated, useSpring } from 'react-spring' import useResizeObserver from 'use-resize-observer' diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 7e4e124c00..b2d1333e00 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1933,6 +1933,9 @@ importers: '@types/seedrandom': specifier: 3.0.1 version: 3.0.1 + tsc-alias: + specifier: ^1.8.10 + version: 1.8.10 typescript: specifier: 5.2.2 version: 5.2.2 From 039ad6c599ab9026dfcd3adddfb3787a03c119a6 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 12:52:09 +0200 Subject: [PATCH 108/119] fix(apps/evm): remove bundle analyzer import --- apps/evm/next.config.mjs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/apps/evm/next.config.mjs b/apps/evm/next.config.mjs index 83ce0e7f7d..d1454f9f7f 100644 --- a/apps/evm/next.config.mjs +++ b/apps/evm/next.config.mjs @@ -2,8 +2,10 @@ import defaultNextConfig from '@sushiswap/nextjs-config' import { withAxiom } from 'next-axiom' -import withBundleAnalyzer from '@next/bundle-analyzer' -const bundleAnalyzer = withBundleAnalyzer({ enabled: false }) +// import withBundleAnalyzer from '@next/bundle-analyzer' +// const bundleAnalyzer = withBundleAnalyzer({ enabled: false }) +// issue with the above.. +const bundleAnalyzer = (a) => a // withBundleAnalyzer({ enabled: true }) const ACADEMY_URL = process.env.ACADEMY_URL || 'https://academy.sushi.com' const BLOG_URL = process.env.BLOG_URL || 'https://blog.sushi.com' From 9f27c284dc839702f6000cc4663d1c8165086181 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 14:47:56 +0200 Subject: [PATCH 109/119] fix: bigint serializer --- apps/evm/src/ui/pool/PositionsTable.tsx | 1 - packages/sushi/src/bigint-serializer/index.ts | 19 +++++++++---------- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/apps/evm/src/ui/pool/PositionsTable.tsx b/apps/evm/src/ui/pool/PositionsTable.tsx index a2b7a934ac..a73a1b1243 100644 --- a/apps/evm/src/ui/pool/PositionsTable.tsx +++ b/apps/evm/src/ui/pool/PositionsTable.tsx @@ -60,7 +60,6 @@ export const PositionsTable: FC = ({ const chainFiltered = searchFiltered.filter((el) => chainIds.includes(el.pool.chainId as (typeof chainIds)[number]), ) - console.log({ chainFiltered }) return chainFiltered }, [positions, tokenSymbols, chainIds]) diff --git a/packages/sushi/src/bigint-serializer/index.ts b/packages/sushi/src/bigint-serializer/index.ts index 76a41164a6..59a8c6e976 100644 --- a/packages/sushi/src/bigint-serializer/index.ts +++ b/packages/sushi/src/bigint-serializer/index.ts @@ -15,18 +15,17 @@ if (!BigInt.prototype.toJSON) { }) } -const parse = JSON.parse -JSON.parse = (text: string, reviver?: (key: any, value: any) => any) => { - return parse.bind(this)(text, (key, value_) => { - let value = value_ - if (value?.__type === 'bigint') { - value = BigInt(value.value) +const originalParse = JSON.parse; +JSON.parse = (text, reviver) => { + return originalParse(text, function(key, value) { + if (value && typeof value === 'object' && value.__type === 'bigint') { + value = BigInt(value.value); } if (reviver) { - return reviver(key, value) + return reviver.call(this, key, value); } - return value - }) -} + return value; + }); +}; export {} From e76930f1bcada75ff328b7ddb22e0b5534663a94 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 12:49:32 +0000 Subject: [PATCH 110/119] chore: lint --- packages/sushi/src/bigint-serializer/index.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/sushi/src/bigint-serializer/index.ts b/packages/sushi/src/bigint-serializer/index.ts index 59a8c6e976..41e6623080 100644 --- a/packages/sushi/src/bigint-serializer/index.ts +++ b/packages/sushi/src/bigint-serializer/index.ts @@ -15,17 +15,17 @@ if (!BigInt.prototype.toJSON) { }) } -const originalParse = JSON.parse; +const originalParse = JSON.parse JSON.parse = (text, reviver) => { - return originalParse(text, function(key, value) { + return originalParse(text, function (key, value) { if (value && typeof value === 'object' && value.__type === 'bigint') { - value = BigInt(value.value); + value = BigInt(value.value) } if (reviver) { - return reviver.call(this, key, value); + return reviver.call(this, key, value) } - return value; - }); -}; + return value + }) +} export {} From f70cced29ab3de104bdf7cb2155d73b70c6ad0da Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 12 Jun 2024 12:53:39 +0000 Subject: [PATCH 111/119] chore(pkgs/steer-sdk): remove tsup config --- packages/steer-sdk/tsup.config.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 packages/steer-sdk/tsup.config.ts diff --git a/packages/steer-sdk/tsup.config.ts b/packages/steer-sdk/tsup.config.ts deleted file mode 100644 index 27bafc4260..0000000000 --- a/packages/steer-sdk/tsup.config.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { defineConfig } from 'tsup' - -export default defineConfig({ - minify: true, - target: 'es2022', - external: ['react', 'swr'], - sourcemap: true, - dts: true, - format: ['esm'], -}) From 8b02c9ddbaa55dd34f693902c2f5e0ced2ff80f4 Mon Sep 17 00:00:00 2001 From: LufyCZ Date: Wed, 12 Jun 2024 13:36:46 +0000 Subject: [PATCH 112/119] fix(apps/evm): permit --- .../evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts | 4 ++-- .../src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts index b67301250e..5d492090e4 100644 --- a/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts +++ b/apps/evm/src/lib/wagmi/hooks/approvals/hooks/useTokenPermit.ts @@ -116,12 +116,12 @@ export const useTokenPermit = ({ ? { name: permitInfo.name, version: permitInfo.version, - chainId: BigInt(chainId), + chainId: chainId, verifyingContract: amount.currency.wrapped.address, } : ({ name: permitInfo.name, - chainId: BigInt(chainId), + chainId: chainId, verifyingContract: amount.currency.wrapped.address, } as any) const message = allowed diff --git a/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx index b83af13490..72aac1538d 100644 --- a/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx +++ b/apps/evm/src/lib/wagmi/systems/Checker/ApproveERC20WithPermit.tsx @@ -199,7 +199,7 @@ const ApproveERC20WithPermit: FC = ({ value={ApprovalType.Approve} testdata-id={'approval-type-approve-button'} > -
+
Approve one-time only {`You'll give your approval to spend `} From 10ea46f1c95bfedbe1cdaa58c80f0dc7e51484dc Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 16:30:17 +0200 Subject: [PATCH 113/119] fix(apps/evm): disable permit --- apps/evm/src/ui/pool/RemoveSectionLegacy.tsx | 28 ++++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx index c9ac92e87b..9d666302de 100644 --- a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx @@ -24,10 +24,10 @@ import { Amount, Native } from 'sushi/currency' import { Percent } from 'sushi/math' import { SendTransactionReturnType, encodeFunctionData } from 'viem' -import { - PermitInfo, - PermitType, -} from 'src/lib/wagmi/hooks/approvals/hooks/useTokenPermit' +// import { +// PermitInfo, +// PermitType, +// } from 'src/lib/wagmi/hooks/approvals/hooks/useTokenPermit' import { getSushiSwapRouterContractConfig, useSushiSwapRouterContract, @@ -54,11 +54,11 @@ import { import { usePoolPosition } from './PoolPositionProvider' import { RemoveSectionWidget } from './RemoveSectionWidget' -const REMOVE_V2_LIQUIDITY_PERMIT_INFO: PermitInfo = { - version: '1', - name: 'SushiSwap LP Token', - type: PermitType.AMOUNT, -} +// const REMOVE_V2_LIQUIDITY_PERMIT_INFO: PermitInfo = { +// version: '1', +// name: 'SushiSwap LP Token', +// type: PermitType.AMOUNT, +// } interface RemoveSectionLegacyProps { pool: Pool @@ -435,7 +435,7 @@ export const RemoveSectionLegacy: FC = guardWhen={+percentage <= 0} guardText="Enter amount" > - = _pool.chainId as SushiSwapV2ChainId, ).address } - permitInfo={REMOVE_V2_LIQUIDITY_PERMIT_INFO} - tag={APPROVE_TAG_REMOVE_LEGACY} - ttlStorageKey={TTLStorageKey.RemoveLiquidity} + // permitInfo={REMOVE_V2_LIQUIDITY_PERMIT_INFO} + // tag={APPROVE_TAG_REMOVE_LEGACY} + // ttlStorageKey={TTLStorageKey.RemoveLiquidity} > - + From eb27a73f9a2823093c56c90715d5c5e2353d9318 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 16:30:42 +0200 Subject: [PATCH 114/119] fix(apps/evm): disable permit --- apps/evm/src/ui/pool/RemoveSectionLegacy.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx index 9d666302de..3ed707e9b1 100644 --- a/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx +++ b/apps/evm/src/ui/pool/RemoveSectionLegacy.tsx @@ -7,9 +7,7 @@ import { useDebounce, useIsMounted, } from '@sushiswap/hooks' -import { Dots } from '@sushiswap/ui' -import { Button } from '@sushiswap/ui' -import { createToast } from '@sushiswap/ui' +import { Button, Dots, createToast } from '@sushiswap/ui' import { FC, useCallback, useEffect, useMemo, useState } from 'react' import { APPROVE_TAG_REMOVE_LEGACY } from 'src/lib/constants' import { From 8f92689888617bdd2db88e7c4fcacc3027ef14dc Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 16:47:00 +0200 Subject: [PATCH 115/119] test(apps/evm): disable permit selectors --- apps/evm/test/helpers/pool.ts | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/apps/evm/test/helpers/pool.ts b/apps/evm/test/helpers/pool.ts index 814d85b68e..bdd5380393 100644 --- a/apps/evm/test/helpers/pool.ts +++ b/apps/evm/test/helpers/pool.ts @@ -333,19 +333,20 @@ export class PoolPage extends BaseActions { await this.page.locator('[testdata-id=remove-liquidity-max-button]').click() - const selectApprovalTypeId = 'select-approval-type-button' - const selectApprovalTypeLocator = this.page.locator( - `[testdata-id=${selectApprovalTypeId}]`, - ) - await expect(selectApprovalTypeLocator).toBeVisible() - await selectApprovalTypeLocator.click() - - const selectApproveId = 'approval-type-approve-button' - const selectApproveLocator = this.page.locator( - `[testdata-id=${selectApproveId}]`, - ) - await expect(selectApproveLocator).toBeVisible() - await selectApproveLocator.click() + // ENABLE AGAIN WHEN PERMIT IS USED + // const selectApprovalTypeId = 'select-approval-type-button' + // const selectApprovalTypeLocator = this.page.locator( + // `[testdata-id=${selectApprovalTypeId}]`, + // ) + // await expect(selectApprovalTypeLocator).toBeVisible() + // await selectApprovalTypeLocator.click() + + // const selectApproveId = 'approval-type-approve-button' + // const selectApproveLocator = this.page.locator( + // `[testdata-id=${selectApproveId}]`, + // ) + // await expect(selectApproveLocator).toBeVisible() + // await selectApproveLocator.click() const approveSlpId = 'approve-remove-liquidity-slp-button' const approveSlpLocator = this.page.locator(`[testdata-id=${approveSlpId}]`) From 2adfc7e48c336388f572b1412f134beee3cb72d4 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 17:10:41 +0200 Subject: [PATCH 116/119] test(apps/evm): check if remove liquidity max button is visible --- apps/evm/test/helpers/pool.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/evm/test/helpers/pool.ts b/apps/evm/test/helpers/pool.ts index bdd5380393..449317c4f6 100644 --- a/apps/evm/test/helpers/pool.ts +++ b/apps/evm/test/helpers/pool.ts @@ -331,7 +331,9 @@ export class PoolPage extends BaseActions { // await expect(removeLiquidityTabSelector).toBeVisible() // await removeLiquidityTabSelector.click() - await this.page.locator('[testdata-id=remove-liquidity-max-button]').click() + const removeMaxButtonSelector = this.page.locator('[testdata-id=remove-liquidity-max-button]') + await expect(removeMaxButtonSelector).toBeVisible() + await removeMaxButtonSelector.click() // ENABLE AGAIN WHEN PERMIT IS USED // const selectApprovalTypeId = 'select-approval-type-button' From f7691e3086538947b57e796a028e6edfaedb4cd7 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 15:11:46 +0000 Subject: [PATCH 117/119] chore: format --- apps/evm/test/helpers/pool.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/evm/test/helpers/pool.ts b/apps/evm/test/helpers/pool.ts index 449317c4f6..0e03684fee 100644 --- a/apps/evm/test/helpers/pool.ts +++ b/apps/evm/test/helpers/pool.ts @@ -331,7 +331,9 @@ export class PoolPage extends BaseActions { // await expect(removeLiquidityTabSelector).toBeVisible() // await removeLiquidityTabSelector.click() - const removeMaxButtonSelector = this.page.locator('[testdata-id=remove-liquidity-max-button]') + const removeMaxButtonSelector = this.page.locator( + '[testdata-id=remove-liquidity-max-button]', + ) await expect(removeMaxButtonSelector).toBeVisible() await removeMaxButtonSelector.click() From 263a1dfc66a1d48fa26d5702497c3699e76f33d7 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 17:19:53 +0200 Subject: [PATCH 118/119] test(apps/evm): test timeout --- apps/evm/test/helpers/pool.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/evm/test/helpers/pool.ts b/apps/evm/test/helpers/pool.ts index 449317c4f6..24e5b59c99 100644 --- a/apps/evm/test/helpers/pool.ts +++ b/apps/evm/test/helpers/pool.ts @@ -331,6 +331,7 @@ export class PoolPage extends BaseActions { // await expect(removeLiquidityTabSelector).toBeVisible() // await removeLiquidityTabSelector.click() + await new Promise((f) => setTimeout(f, 1000)) // delay 1s const removeMaxButtonSelector = this.page.locator('[testdata-id=remove-liquidity-max-button]') await expect(removeMaxButtonSelector).toBeVisible() await removeMaxButtonSelector.click() From 5909726759c986a1adf017613da7128f56263185 Mon Sep 17 00:00:00 2001 From: OlaStenberg Date: Wed, 12 Jun 2024 15:22:39 +0000 Subject: [PATCH 119/119] chore: lint --- apps/evm/test/helpers/pool.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/evm/test/helpers/pool.ts b/apps/evm/test/helpers/pool.ts index 24e5b59c99..f7f68dfc26 100644 --- a/apps/evm/test/helpers/pool.ts +++ b/apps/evm/test/helpers/pool.ts @@ -332,7 +332,9 @@ export class PoolPage extends BaseActions { // await removeLiquidityTabSelector.click() await new Promise((f) => setTimeout(f, 1000)) // delay 1s - const removeMaxButtonSelector = this.page.locator('[testdata-id=remove-liquidity-max-button]') + const removeMaxButtonSelector = this.page.locator( + '[testdata-id=remove-liquidity-max-button]', + ) await expect(removeMaxButtonSelector).toBeVisible() await removeMaxButtonSelector.click()